例如,我的自定义数据类型类:
public class CustomType implements Serializable {
// blah blah
}
在我的Entity类中,我使用CustomType值作为属性:
@Entity
public class EntityName {
@Type(type = "persistence.CustomType")
CustomType myData;
}
然而,当我尝试保存我的实体类的实例时,我收到一条错误消息,告诉我我应该使用tinyblob类型用于myData
属性。我想知道在hibernate中我应该使用什么样的数据类型来定制数据类型。
感谢