0
對於Hibernate表的列定義,如果我沒有指定not-null或@NotNull,那麼可爲空性默認爲?Hibernate列nullness默認
例子:
<class name="Person" table="person">
<id name="id" column="id" type="long"/>
<property name="name" column="name" type="string"/>
</class>
是name
可空?