映射文件<property name="txt" column="txt" type="text" not-null="false"/>
PO
private java.lang.String txt;
DAO

public ContentTxt save(ContentTxt bean) {
getSession().save(bean);
return bean;
}
错误信息:
HTTPステータス 500 - Request processing failed; nested exception is org.springframework.jdbc.UncategorizedSQLException: Hibernate flushing: could not insert: [cn.com.neauce.hljs.portal.cms.entity.main.ContentTxt]; uncategorized SQLException for SQL [insert into jc_content_txt (txt, txt1, txt2, txt3, content_id) values (?, ?, ?, ?, ?)]; SQL state [72000]; error code [1460]; ORA-01460: 转换请求无法实现或不合理。添加4000以下的数据是好使的,超过4000就报错。
修改的时候没有任何问题,我Google了一些方法,貌似无法解决问题,请大神们帮解答,谢谢。