我正在寻找一个包含JPA columnDefinition的常量或枚举的类。
例如:
public class MyEntity {
@JoinColumn(name = "my_value", columnDefinition = "BIGINT")
private Integer myValue;
// some code...
}
我想替换这个:
"BIGINT" -> ColumnDefinition.BIGINT
我正在使用JPA / Hibernate和PostgreSQL。
答案 0 :(得分:1)
public static final String BIGINT="BIGINT"
的字段定义类。