org.hibernate.PropertyValueException: not-null property references a
null or transient value
我正在使用 Java、Hibernate 和 MySQL 5.1.52-log 版本。
我对默认值的解释是,如果我不为列提供值,当我尝试保存此对象时,Hibernate 将插入默认值。
HBM 文件,
<property name="isActive" type="java.lang.Short">
<column name="IsActive" not-null="true" default="1"/>
</property>