Specify default value in Hibernate's XML configuration file

北城余情 提交于 2019-12-22 04:33:10

问题


I'm configuring Hibernate via the mapping configuration file.

<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>

How do I set age to be nullable and default to null?


回答1:


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


来源:https://stackoverflow.com/questions/10610211/specify-default-value-in-hibernates-xml-configuration-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!