问题产生: 近来在写代码的时候,有一个返回的vo对象中,有一个属性是带有xml标签的,而页面展示的内容需要将xml标签转换成html标签进行展示,所以实现了一个工具类,然后再返回的地方调用一下工具类,但是随着使用的地方越来越多,每一次改动修改的地方太多,故查询后找了另外的实现逻辑.
实现思路:
- 使用自定义注解,标识需要处理的字段,同时可以设置一些自定义的参数
- 使用 JsonSerializer 重写序列化,在序列化中将xml转换成html
- 使用 ContextualSerializer 获取上下文的内容
**相关的实现代码:** 1.自定义注解:
代码语言:javascript复制@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@JacksonAnnotationsInside
@JsonSerialize(
using = Xml2HtmlFormatSerialize.class
)
public @interface Xml2HtmlFormat {
int value() default 2;
}
- 注解对应的实现类 重写的JsonSerialize方法,主要的作用是实现需要重写的逻辑,及xml转换成html,同时可以实现其他的逻辑,例如脱敏,字符长度格式化等 重写createContextual主要是为了根据上下文获取自己定义的参数,例如bit,同时实例Xml2HtmlFormatSerialize方法,将参数传递进去
@Component
public class Xml2HtmlFormatSerialize extends JsonSerializer<String> implements ContextualSerializer {
private Integer bit;
private static Xml2HtmlFormatSerialize xml2HtmlFormatSerialize;
/**
* 静态初始化加载
*/
@PostConstruct
public void init() {
xml2HtmlFormatSerialize = this;
}
public Xml2HtmlFormatSerialize() {
super();
}
public Xml2HtmlFormatSerialize(Integer bit) {
super();
this.bit = bit;
}
@Resource
private XmlParseService xmlParseService;
@Override
public void serialize(String value, JsonGenerator gen, SerializerProvider serializers) throws IOException {
System.out.println(" bit " this.bit);
if (StringUtils.isNotBlank(value)) {
JsonResult<String> result = xml2HtmlFormatSerialize.xmlParseService.xml2Html(value, null);
if (result.isStatus()) {
gen.writeString(result.getObject());
}
} else {
gen.writeString(value);
}
}
@Override
public JsonSerializer<?> createContextual(SerializerProvider serializerProvider, BeanProperty beanProperty) throws JsonMappingException {
Xml2HtmlFormat ann = beanProperty.getAnnotation(Xml2HtmlFormat.class);
Integer bitNum = ann.value();
System.out.println("value = " bitNum);
return new Xml2HtmlFormatSerialize(bitNum);
}
}
作者:java_worker
链接:https://juejin.cn/post/7154653212576841736
来源:稀土掘金
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
碰到的问题:
No qualifying bean of type ‘java.lang.String‘ available: expected at least 1 bean which qualifies as
经过查询 发现问题为:springioc容器加载bean默认使用无参构造进行初始化。这里我们可以看到提示显示的是没有找到NoSuchBeanDefinition ,就是因为没有定义user的默认构造方法!!!
spring实例化bean对象,默认是无参构造方法实例化的,这时就需要bean类中存在无参构造方法。
nested exception is com.fasterxml.jackson.databind.JsonMappingException
打断点后发现,原有的工具类是以service形式注入进去的,值为null,又在方法中init()初始化了一下service对象