SpringBoot升级版本导致@JsonIgnore失效问题
Posted tom的猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot升级版本导致@JsonIgnore失效问题相关的知识,希望对你有一定的参考价值。
1.@JsonIgnore换成阿里那个json@JSONField(serialize = false)
2.配置全局null字段不显示以及日期格式
@Bean public HttpMessageConverters fastJsonHttpMessageConverters() { FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter(); FastJsonConfig fastJsonConfig = new FastJsonConfig(); fastJsonConfig.setSerializerFeatures( /*SerializerFeature.WriteMapNullValue,*/ SerializerFeature.WriteNullListAsEmpty, SerializerFeature.WriteNullStringAsEmpty, SerializerFeature.WriteNullBooleanAsFalse // SerializerFeature.WriteDateUseDateFormat ); fastConverter.setFastJsonConfig(fastJsonConfig); //全局指定了日期格式 fastJsonConfig.setDateFormat("yyyy-MM-dd");///* HH:mm:ss*/ //该设置目的,为了兼容jackson fastConverter.setSupportedMediaTypes(Arrays.asList(MediaType.APPLICATION_JSON,MediaType.APPLICATION_JSON_UTF8,MediaType.APPLICATION_OCTET_STREAM)); HttpMessageConverter<?> converter = fastConverter; return new HttpMessageConverters(converter); }
以上是关于SpringBoot升级版本导致@JsonIgnore失效问题的主要内容,如果未能解决你的问题,请参考以下文章
springboot默认版本引入导致依赖修改版本引入不起作用
spring boot 2.0.0由于版本不匹配导致的NoSuchMethodError问题解析
spring boot 2.0.0由于版本不匹配导致的NoSuchMethodError问题解析