Spring boot配置fastjson
Posted 沐松
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring boot配置fastjson相关的知识,希望对你有一定的参考价值。
pom 文件引用
<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.34</version> </dependency>
bean注入(配置在 SpringBootApplication 的启动类中) ps:已解决中文乱码问题
@Bean public HttpMessageConverters fastJsonHttpMessageConverters() { FastJsonHttpMessageConverter4 fastConverter = new FastJsonHttpMessageConverter4(); FastJsonConfig fastJsonConfig = new FastJsonConfig(); fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat, SerializerFeature.WriteMapNullValue); fastConverter.setFastJsonConfig(fastJsonConfig); fastConverter.setSupportedMediaTypes(Arrays.asList(MediaType.APPLICATION_JSON_UTF8, MediaType.parseMediaType("text/html;charset=UTF-8"))); return new HttpMessageConverters(fastConverter); }
以上是关于Spring boot配置fastjson的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot 实践折腾记:自定义配置,扩展Spring MVC配置并使用fastjson
Spring Boot 实践折腾记:自定义配置,扩展Spring MVC配置并使用fastjson
Spring Boot配置FastJson报错'Content-Type' cannot contain wildcard type '*'