Springboot 修改配置json解析
Posted code_____monkey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot 修改配置json解析相关的知识,希望对你有一定的参考价值。
在Springboot中默认的JSON解析框架是jackson
定制或使用fastjson需要替换默认的json转换器的方法。
一、(1)实现WebMvcConfigurer
(2)覆盖方法configureMessageConverters
@Configuration
public class WebMVCConfig implements WebMvcConfigurer
@Override
public void configureMessageConverters(List<HttpMessageConverter<?>> converters)
其他
WebMvcConfigurerAdapter
WebMvcConfigurer
WebMvcConfigurationSupport
WebMvcAutoConfiguration
首先以上4个类都是springboot中mvc的支持类
WebMvcConfigurer 为接口。
WebMvcConfigurerAdapter 是 WebMvcConfigurer 的实现类大部分为空方法 ;是WebMvcConfigurer的子类实现,由于Java8中可以使用default关键字为接口添加默认方法,为在源代码中spring5.0之后就已经弃用本类。如果需要我接着可以实现WebMvcConfigurer类。
WebMvcConfigurationSupport 是mvc的基本实现并包含了WebMvcConfigurer接口中的方法。
WebMvcAutoConfiguration 是mvc的自动装在类并部分包含了WebMvcConfigurer接口中的方法。
如果在springboot项目中没有使用到以上类,那么会自动启用WebMvcAutoConfiguration类做自动加载; 项目中的配置都是默认的,
二、(1)在App.java启动类中,注入Bean : HttpMessageConverters
public class ProcessApp
public static void main(final String[] args)
SpringApplication.run((Class)ProcessApp.class, args);
@Bean
public HttpMessageConverters fastJsonHttpMessageConverters()
final FastJsonHttpMessageConverter fasHttpMessageConverter = new FastJsonHttpMessageConverter();
fasHttpMessageConverter.setDateFormat("yyyy-MM-dd HH:mm:ss");
return new HttpMessageConverters(new HttpMessageConverter[] (HttpMessageConverter)fasHttpMessageConverter );
以上是关于Springboot 修改配置json解析的主要内容,如果未能解决你的问题,请参考以下文章