作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何实现泛型的 AttributeConverter?
类似的东西
class JSONConverter<T> implements AtttributeConverter<T,String>{
//Here How do I get the generic class type with which I can convert a serialized object
}
在实体类中调用转换器
@Column
@Convert( converter = JSONConverter.class) //How do I pass the Generic here
private SomeClass sm;
最佳答案
可以做得更简单,因为您不一定需要通过构造函数传递 typeReference:
public abstract class JsonConverter<T> implements AttributeConverter<T, String> {
private final TypeReference<T> typeReference = new TypeReference<T>() {};
@Resource
private ObjectMapper objectMapper;
@Override
public String convertToDatabaseColumn(T object) {
try {
return objectMapper.writeValueAsString(object);
} catch (JsonProcessingException e) {
throw new RuntimeException(e);
}
}
@Override
public T convertToEntityAttribute(String json) {
try {
return objectMapper.readValue(json, typeReference);
} catch (JsonProcessingException e) {
throw new RuntimeException(e);
}
}
}
然后是类,扩展你的 JsonConventer 看起来像:
public class SomeClassConverter extends JsonConverter<SomeClass> { }
关于spring - 使用 @Converter 为泛型类实现 AttributeConverter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42413204/
我是一名优秀的程序员,十分优秀!