Spring 处理 fastjson MediaType.All 的情况

Posted 木子李

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 处理 fastjson MediaType.All 的情况相关的知识,希望对你有一定的参考价值。

 1     /**
 2          * fastJson 的MediaType.All的情况Spring默认会使用一个字节流,而不是识别成json,这里对它进行一下覆盖处理
 3          */
 4         public static class FastJsonHttpMessageConvert5 extends FastJsonHttpMessageConverter4 {
 5             static final Charset DEFAULT_CHAREST = Charset.forName("UTF-8");
 6             FastJsonHttpMessageConvert5(){
 7                 setDefaultCharset(DEFAULT_CHAREST);
 8                 setSupportedMediaTypes(Arrays.asList(MediaType.APPLICATION_JSON,new MediaType("application","*+json")));
 9             }
10         }

 

以上是关于Spring 处理 fastjson MediaType.All 的情况的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot入门——json数据处理

解决com.alibaba.fastjson.JSONException: autoType is not support 异常处理

解决com.alibaba.fastjson.JSONException: autoType is not support 异常处理

解决com.alibaba.fastjson.JSONException: autoType is not support 异常处理

spring boot 配置fastjson

Spring boot FastJson