在JPA Springboot中通过@Entity Annotation生成table时,有什么方法可以更改字段的数据类型吗?
Is there any way to change the datatype of a field when generated a table through @Entity Annotation in JPA Springboot?
JPA和SpringBoot使用@Entity注解生成字段时,如何改变字段的数据类型?我有一个 class 作为 Product 的名称,其中包含一个作为 productId 的字段名称,其数据类型为 UUID,JPA 生成了二进制类型的字段。
尝试使用 @Type 注释并将类型字段设置为“uuid-char”,它解决了问题。请在下面找到片段。
@Type(type = "uuid-char)
UUID productId;
JPA和SpringBoot使用@Entity注解生成字段时,如何改变字段的数据类型?我有一个 class 作为 Product 的名称,其中包含一个作为 productId 的字段名称,其数据类型为 UUID,JPA 生成了二进制类型的字段。
尝试使用 @Type 注释并将类型字段设置为“uuid-char”,它解决了问题。请在下面找到片段。
@Type(type = "uuid-char) UUID productId;