在Hibernate的XML配置文件中指定默认值

我正在通过映射配置文件配置Hibernate。

<class name="Person" table="person">

<id name="id" column="id" type="long"/>

<property name="name" column="name" type="string"/>

<property name="age" column="age" type="integer"/>

</class>

如何设置age为可为空,默认为null?

回答:

<property name="age" type="integer">

<column name="age" not-null="false" default="null" />

</property>

以上是 在Hibernate的XML配置文件中指定默认值 的全部内容, 来源链接: utcz.com/qa/422911.html

回到顶部