springboot使用fastjson解析json数据

Posted 一路繁花似锦绣前程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot使用fastjson解析json数据相关的知识,希望对你有一定的参考价值。

一、配置pon.xml

<!-- fastjson的依赖 -->
<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>fastjson</artifactId>
    <version>1.2.15</version>
</dependency>

二、配置注入

@Bean
public HttpMessageConverters fastJsonMessageConverter() {
    // 创建FastJson的消息转换器
    FastJsonHttpMessageConverter convert = new FastJsonHttpMessageConverter();
    // 创建FastJson的配置对象
    FastJsonConfig config = new FastJsonConfig();
    // 对Json数据进行格式化
    config.setSerializerFeatures(SerializerFeature.PrettyFormat);

    convert.setFastJsonConfig(config);
    HttpMessageConverter<?> con = convert;
    return new HttpMessageConverters(con);
}

三、配置application.yml

spring:
  http:
    encoding:
      force: true

四、fastjson注解

@JSONField(format="yyyy-MM-dd HH:mm:ss")    // 格式化日期

 

以上是关于springboot使用fastjson解析json数据的主要内容,如果未能解决你的问题,请参考以下文章

FastJson使用示例

Fastjson利用笔记

Fastjson利用笔记

Fastjson利用笔记

视频第2,3节 Spring Boot完美使用FastJson解析JSON数据

springboot使用FastJson返回Json视图