Hibernate中clob字段的处理

PO:
private String description; 
 
PO.hbm.xml:
<property column="c_description" name="description"  type=" org.springframework.orm.hibernate3.support.ClobStringType " length="1048576000"/>
最大可以存储2G。

 

你可能感兴趣的:(java,Hibernate,clob)