使用uuid为主键,只需要在主键的get方法上添加以下注解,并且主键的类型需要是string类型
@Id
@GeneratedValue(generator = "uuidGenerator")
@GenericGenerator(name = "uuidGenerator", strategy = "uuid")
使用uuid为主键,只需要在主键的get方法上添加以下注解,并且主键的类型需要是string类型
@Id
@GeneratedValue(generator = "uuidGenerator")
@GenericGenerator(name = "uuidGenerator", strategy = "uuid")
转载于:https://my.oschina.net/u/3886184/blog/1930574