java实体类 定义类型 byte[]
private byte[] str_blob
hibernate映射文件类型oracle.sql.BLOB
<property name="str_blob" type="oracle.sql.BLOB">
<column name="STR_BLOB" />
</property>
数据库类型BLOB
byte[] b = str.getBytes();
String str = new String(b);
java技术交流群 57388149