hibernate oracle11g blob java.sql.SQLRecoverableException
我在通过hibernate获取blob字段的时候报错了。
类中属性字段注解如下:
@Column(name = "CONTENT1")
@NotNull
private java.sql.Blob content;
byte[] bytes = getByte(attachment.getContent().getBinaryStream());
response.getOutputStream().write(bytes);
java.sql.SQLRecoverableException: 关闭的连接hibernate oracle11g java blob
at oracle.sql.BLOB.getDBAccess(BLOB.java:1071)
at oracle.sql.BLOB.getBinaryStream(BLOB.java:248)