hibernate取得oracle中clob对象的值

     最近用oracle做一个项目,框架为struts2+hibernate3+spring2,在做一个内容显示的时候出现了问题

     该内容在数据库中使用的字段类型为clob,hibernate配置文件如下:

    

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

 

     在使用该配置文件,向数据库插入数据时候,数据录入正常,查看数据库值也正常,但是显示该内容,值却为空,hibernate未从数据库中取出该值。

 

     找到了解决方法,只需要在type配置,把string改为text,就可以了

 

<property name="context" column="context" type="text"/>

 

    这个方法若应用于oracle数据库,有一个问题,在录入数据的时候,若context字段长度超过400左右,就报出错误,基本大意为无法同步更新数据,(google一下很多示例了)。

    所以,使用text,应用与clob字段类型,在小型数据不会出现问题,解决方法为,修改type的text类型为:

 

org.springframework.orm.hibernate3.support.ClobStringType

 

    其他的配置可以参看我的另一篇日志:spring+hibernate保存blob类型(oracle9i)

  

你可能感兴趣的:(spring,oracle,Hibernate,orm,Google)