我想用hibernate / postgresql 9.1.1
创建一个BLOB字段为什么我会在日志中看到此消息:
INFO [org.hibernate.engine.jdbc.internal.LobCreatorBuilder] (MSC service thread 1-5)
HHH000424: Disabling contextual LOB creation as createClob() method threw error :
java.lang.reflect.InvocationTargetException
我知道这不是错误。
Hibernate 4.1文档:
"@Lob indicates that the property should be persisted in a Blob or a Clob depending
on the property type: java.sql.Clob, Character[], char[] and java.lang.String will be
persisted in a Clob. java.sql.Blob, Byte[], byte[] and Serializable type will be persisted in a Blob."
我声明我的字段是这样的:
@Lob
@Type(type = "org.hibernate.type.MaterializedClobType")
@Basic(fetch=javax.persistence.FetchType.LAZY)
@Column(name = "`ACTA_CERTIFICACION`")
public byte[] getActacertificacion() {
return actacertificacion;
}
/**
* @param actacertificacion
* @uml.property name="actacertificacion"
*/
public void setActacertificacion(byte[] actacertificacion) {
this.actacertificacion = actacertificacion;
}
但是在数据库中,它的创建就像一个文本字段:
"ACTA_INCREMENTOSUSTITUCION" text
我该怎么办?,我想创建一个字节字段或类似的东西。
答案 0 :(得分:4)
由于您在数据库中使用text
,因此您应该在POJO类中使用CLOB
类型。如果您想映射它,只需在POJO中添加一个属性,如下所示,
@Column(name="ACTA_INCREMENTOSUSTITUCION")
@Clob
private Clob tect;
现在,根据您的要求,您可以将 Clob 转换为 byte [] ,如告诉here。