问题描述:
由于某表需要用到大字符串类型
@Lob
@Basic(fetch = FetchType.LAZY)
@Column(name="content", nullable=true)
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
错误信息为:
报错信息为:
严重: Servlet.service() for servlet simplepageServlet threw exception
java.lang.AbstractMethodError: org.apache.commons.dbcp.DelegatingPreparedStatement.setCharacterStream(ILjava/io/Reader;J)V
at org.hibernate.type.descriptor.sql.ClobTypeDescriptor$4$1.doBind(ClobTypeDescriptor.java:131)
at org.hibernate.type.descriptor.sql.BasicBinder.bind(BasicBinder.java:90)
at
其实代码本身是没有错的,
http://my.oschina.net/u/989426/blog/201912 正解
可能是dbcp连接池过时了吧
换了druid的连接池就ok了。
sqlserver下自动建立的数据类型为 varchar(max)
最后
以上就是专注红酒最近收集整理的关于oracle clob jpa,Hibernate4 JPA 读写Clob类型出现的问题的全部内容,更多相关oracle内容请搜索靠谱客的其他文章。
发表评论 取消回复