可以为JPA中的列设置默认值吗?如果使用注释,如何做到这一点?

最佳答案

实际上,在JPA中是可能的,尽管使用columnDefinition批注的@Column属性有一些小小的改动,例如:

@Column(name="Price", columnDefinition="Decimal(10,2) default '100.00'")

08-17 23:05