最好的选择是实现javax.persistence.Converter。它看起来像:
import javax.persistence.AttributeConverter;import javax.persistence.Converter;@Converter(autoApply = true)public class LocalDateAttributeConverter implements AttributeConverter<ItemJson, String> { @Override public String convertToDatabaseColumn(ItemJson entityValue) { if( entityValue == null ) return null; ObjectMapper mapper = new ObjectMapper(); return mapper.writevalueAsString(entityValue); } @Override public ItemJson convertToEntityAttribute(String databasevalue) { if( databasevalue == null ) return null; ObjectMapper mapper = new ObjectMapper(); return mapper.readValue(databasevalue, ItemJson.class); }}
我已经将其与WildFly一起使用,除了将其保存在我正在部署的war文件中之外,无需执行任何 *** 作。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)