我已经定义了这样的属性转换器:
@Converter(autoApply = true)
public class MyConverter implements AttributeConverter<MyType, String> {
@Override
@Nullable
public String convertToDatabaseColumn(@Nullable final MyType attribute) {
LOG.log(Level.INFO, "Converting '{'{0}'}' to DB column", attribute);
return attribute != null ? map(attribute) : null;
}
@Override
@Nullable
public MyType convertToEntityAttribute(@Nullable final String dbData) {
LOG.log(Level.INFO, "Converting '{'{0}'}' to type", dbData);
return dbData != null ? map(dbData) : null;
}
}
然后在我的实体类中:
@Entity
public class MyEntity implements Serializable {
@Id
private Long id;
private MyType myData;
}
根据jpa2.1规范,如果我在转换器上指定了autoApply,则不必使用@Convert来注释属性字段。 尽管如此,即使我没有在转换器上指定autoApply并指定以下内容:
@Entity
public class MyEntity implements Serializable {
@Id
private Long id;
@Convert(converter = MyConverter.class)
private MyType myData;
}
Hibernate仍然不考虑这个转换器。
我可能做错了什么? 我删除了表并重新生成了它,但没有任何帮助。
我尝试过4.3.4 - 4.3.8的hibernate版本但没有成功,n wildfly 8.1
另外注意,我的转换器在一个实体jar中声明,然后作为依赖包含在ejb-jar中。
答案 0 :(得分:0)
好。
几个小时后,解决方案似乎很简单。 我的错误是我在ejb-jars persistence.xml中声明了类,而不是指定jar-file元素。因此,jpa hibernate注释引擎不知道我的entity-jar,并且无法扫描它以获取Converter注释