Hibernate テーブルの列定義で、not-null または @NotNull を指定しない場合、null 可能性のデフォルトは何になりますか?
例:
<class name="Person" table="person">
<id name="id" column="id" type="long"/>
<property name="name" column="name" type="string"/>
</class>
name
null可能ですか?
Hibernate テーブルの列定義で、not-null または @NotNull を指定しない場合、null 可能性のデフォルトは何になりますか?
例:
<class name="Person" table="person">
<id name="id" column="id" type="long"/>
<property name="name" column="name" type="string"/>
</class>
name
null可能ですか?