1、注解的作用

       @JSONField(serialize = false) 注解,便可以在返回响应参数体的时候去除某个字段

       比如:

// 返回时去掉密码字段
@JSONField(serialize = false)
private String password;

2、SpringBoot中发生的问题

       在视图中查看当前获取的json串,发现加上@JSONField(serialize = false)注解的字段也被序列化出来了

3、分析原因

      Sprintboot默认是通过jackson来转换JSON的,@JSONField(serialize = false)是FastJson的注解,Springboot使用jackson进行转JSON的时候并不会扫描这个注解。

4、解决办法

在Springboot启动类中添加

@Bean
public HttpMessageConverters fastJsonHttpMessageConverters() {
     FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();
     FastJsonConfig fastJsonConfig = new FastJsonConfig();
     fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat);
     fastConverter.setFastJsonConfig(fastJsonConfig);
     HttpMessageConverter<?> converter = fastConverter;
     return new HttpMessageConverters(converter);
}
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐