我正在寻找一个包含JPA columnDefinition常量或枚举的类。
例如:
public class MyEntity {
@JoinColumn(name = "my_value", columnDefinition = "BIGINT")
private Integer myValue;
// some code...
}我想换掉这个:
"BIGINT" -> ColumnDefinition.BIGINT我使用的是JPA/Hibernate和PostgreSQL。
发布于 2013-11-01 23:53:29
public static final String BIGINT="BIGINT" -like字段来定义一个类。https://stackoverflow.com/questions/19730240
复制相似问题