美文网首页
springboot中用fastjson处理返回值为null的属

springboot中用fastjson处理返回值为null的属

作者: 装完逼立马跑 | 来源:发表于2019-01-26 11:54 被阅读0次

    springboot中默认使用的是jackson,所以想使用fastjson的注解需要在app.java中注入

    @Bean
        public HttpMessageConverters fastJsonHttpMessageConverters(){
            FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();
            FastJsonConfig fastJsonConfig = new FastJsonConfig();
            fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat);
            fastJsonConfig.setDateFormat("yyyy-MM-dd");
            fastConverter.setFastJsonConfig(fastJsonConfig);
            HttpMessageConverter<?> converter = fastConverter;
            return new HttpMessageConverters(converter);
        }
    

    然后就可以在返回的DTO中使用fastjson的注解,比如


    相关文章

      网友评论

          本文标题:springboot中用fastjson处理返回值为null的属

          本文链接:https://www.haomeiwen.com/subject/yoqijqtx.html