spring对数据库特殊字段的支持

1.CLOB

<property name="tomdTemplateContent" type="org.springframework.orm.hibernate3.support.ClobStringType">
  <column name="TOMD_TEMPLATE_CONTENT" not-null="true" />
</property>

2.Boolean(0或1自动转为false或true)

<property name="isshow" type="java.lang.Boolean">
  <column name="ISSHOW" length="10" />
</property>

 

posted on 2016-03-02 14:58  Simle  阅读(164)  评论(0)    收藏  举报