在数据库中,一张数据表中的主键,通常会用自增的整型值或者UUID字符串来表示。其中,UUID可以产生全球唯一的标识符,从而确保主键的唯一。
import java.util.UUID;
/**
* 工具类
*/
public class UUIDUtils {
/**
* 产生全球唯一的字符串
* @return
*/
public static String getUUid() {
return UUID.randomUUID().toString().replace("-", "").toUpperCase();
}
}