springboot学习(四十六) springboot中jackson特殊使用

2024-06-20 08:18

本文主要是介绍springboot学习(四十六) springboot中jackson特殊使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、全局时间配置
在application.yml中配置

spring:jackson:date-format: yyyy-MM-dd HH:mm:ss

或在application.properties中配置

spring.jackson.date-format=yyyy-MM-dd HH:mm:ss

实体中包含时间类型:

/**** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:06* @since jdk1.8*/
@Data
@Builder
public class Model {private Integer id;private int age;private String name;private Date createTime;
}

测试controller:

/**** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:08* @since jdk1.8*/
@RestController
@RequestMapping("/jackson/type1")
public class JacksonType1Controller {@GetMapping("/res")public Model res() {return Model.builder().id(1).age(12).name("xiaoxiao").createTime(new Date()).build();}
}

测试结果:
在这里插入图片描述
2、使用@JsonFormat为某个属性设置序列化方式
实体:

/**** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:06* @since jdk1.8*/
@Data
@Builder
public class Model {private Integer id;private int age;private String name;@JsonFormat(pattern = "yyyy/MM/dd HH:mm:ss")private Date createTime;
}

测试controller:

/**** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:08* @since jdk1.8*/
@RestController
@RequestMapping("/jackson/type2")
public class JacksonType2Controller {@GetMapping("/res")public Model res() {return Model.builder().id(1).age(12).name("xiaoxiao").createTime(new Date()).build();}
}

测试结果:
在这里插入图片描述
3、使用@JsonPropertyOrder调整属性的序列化顺序
实体:

/***** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:06* @since jdk1.8*/
@Data
@Builder
@JsonPropertyOrder(value={"name", "age"})
public class Model {private Integer id;private int age;private String name;private Date createTime;
}

controller:

/**** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:08* @since jdk1.8*/
@RestController
@RequestMapping("/jackson/type3")
public class JacksonType3Controller {@GetMapping("/res")public Model res() {return Model.builder().id(1).age(12).name("xiaoxiao").createTime(new Date()).build();}
}

测试结果:
在这里插入图片描述
4、使用@JsonProperty修改属性名称
实体:

/***** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:06* @since jdk1.8*/
@Data
@Builder
public class Model {private Integer id;private int age;//调整序列化的名称@JsonProperty("myName")private String name;private Date createTime;
}

controller:

/**** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:08* @since jdk1.8*/
@RestController
@RequestMapping("/jackson/type4")
public class JacksonType4Controller {@GetMapping("/res")public Model res() {return Model.builder().id(1).age(12).name("xiaoxiao").createTime(new Date()).build();}
}

测试结果:
在这里插入图片描述
5、使用@JsonInclude使属性值为null不参与序列化
实体:

/***** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:06* @since jdk1.8*/
@Data
@Builder
public class Model {@JsonInclude(value= JsonInclude.Include.NON_NULL)private Integer id;private int age;private String name;private Date createTime;
}

controller:

/**** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:08* @since jdk1.8*/
@RestController
@RequestMapping("/jackson/type5")
public class JacksonType5Controller {@GetMapping("/res")public Model res() {return Model.builder().age(12).name("xiaoxiao").createTime(new Date()).build();}
}

测试结果:
在这里插入图片描述
6、使用@JsonIgnore使某个属性不参与序列化
实体:

/***** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:06* @since jdk1.8*/
@Data
@Builder
public class Model {@JsonIgnoreprivate Integer id;private int age;private String name;private Date createTime;
}

controller:

/**** @author zhuquanwen* @vesion 1.0* @date 2021/6/14 14:08* @since jdk1.8*/
@RestController
@RequestMapping("/jackson/type6")
public class JacksonType6Controller {@GetMapping("/res")public Model res() {return Model.builder().id(1).age(12).name("xiaoxiao").createTime(new Date()).build();}
}

测试结果:
在这里插入图片描述
7、自定义注解实现序列化和反序列化

将字符串转为数组的序列化处理

package com.iscas.base.biz.test.service;import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.BeanProperty;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.ser.ContextualSerializer;
import com.iscas.common.web.tools.json.JsonUtils;import java.io.IOException;
import java.util.List;
import java.util.Objects;/*** @author zhuquanwen* @version 1.0* @date 2022/6/6 14:04* @since jdk11*/
public class CustomSerialize extends JsonSerializer<String> implements ContextualSerializer {@Overridepublic void serialize(String value, JsonGenerator gen, SerializerProvider serializers) throws IOException {if (value == null) {gen.writeNull();} else {TypeReference<List<String>> typeReference = new TypeReference<>() {};gen.writeObject(JsonUtils.fromJson(value, typeReference));}}@Overridepublic JsonSerializer<?> createContextual(SerializerProvider prov, BeanProperty property) throws JsonMappingException {//判断beanProperty是不是空if (property == null){return prov.findNullValueSerializer(property);}//判断类型是否是Stringif (Objects.equals(property.getType().getRawClass(),String.class)){CustomStrFormatter annotation = property.getAnnotation(CustomStrFormatter.class);if (annotation != null){// 这里可以获取注解中的一些参数String pattern = annotation.pattern();return this;}}return prov.findValueSerializer (property.getType (), property);}
}

将数组反序列化为JSON字符串的处理

package com.iscas.base.biz.test.service;import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonToken;
import com.fasterxml.jackson.databind.BeanProperty;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.JsonMappingException;
import com.fasterxml.jackson.databind.deser.ContextualDeserializer;
import com.iscas.common.web.tools.json.JsonUtils;
import org.apache.commons.lang3.StringUtils;import java.util.ArrayList;
import java.util.List;
import java.util.Objects;/*** @author zhuquanwen* @version 1.0* @date 2022/6/6 14:04* @since jdk11*/
public class CustomDeserialize extends JsonDeserializer<String> implements ContextualDeserializer {@Overridepublic String deserialize(JsonParser p, DeserializationContext ctxt) {try {if (p != null && StringUtils.isNotEmpty(p.getText())) {List<String> strs = new ArrayList<>();JsonToken jsonToken;while (!p.isClosed() && (jsonToken = p.nextToken()) != null && !JsonToken.FIELD_NAME.equals(jsonToken) &&!JsonToken.END_ARRAY.equals(jsonToken)) {strs.add(p.getValueAsString());}return JsonUtils.toJson(strs);} else {return null;}} catch (Exception e) {throw new RuntimeException(e);}}@Overridepublic JsonDeserializer<?> createContextual(DeserializationContext ctxt, BeanProperty property) throws JsonMappingException {//判断beanProperty是不是空if (property == null) {return ctxt.findNonContextualValueDeserializer(property.getType());}//判断类型是否是Stringif (Objects.equals(property.getType().getRawClass(), String.class)) {CustomStrFormatter annotation = property.getAnnotation(CustomStrFormatter.class);if (annotation != null) {// 这里可以获取注解中的一些参数String pattern = annotation.pattern();return this;}}return ctxt.findContextualValueDeserializer(property.getType(), property);}
}

自定义注解

package com.iscas.base.biz.test.service;import com.fasterxml.jackson.annotation.JacksonAnnotationsInside;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;/*** @author zhuquanwen* @version 1.0* @date 2022/6/6 14:02* @since jdk11*/
@Retention(RetentionPolicy.RUNTIME)
@JacksonAnnotationsInside
@JsonSerialize(using = CustomSerialize.class)
@JsonDeserialize(using = CustomDeserialize.class)
public @interface CustomStrFormatter {// todo 可以定义格式化方式String pattern() default "";
}

实体中使用自定义注解

  @Data@Accessors(chain = true)public static class TestModel {private String id;private List<String> strs1;@CustomStrFormatterprivate String strs2;}

测试:

@RequestMapping("/test/serial")
@RestController
@Slf4j
public class TestJsonFormatterController {/*** 测试序列化* */@GetMappingpublic TestModel test1() {TestModel testModel = new TestModel();testModel.setId("1").setStrs1(List.of("1", "2", "3")).setStrs2("[\"3\", \"4\"]");return testModel;}@PostMappingpublic String test2(@RequestBody TestModel testModel) {log.info("接收到的testModel:{}", testModel.toString());return "success";}
}

这篇关于springboot学习(四十六) springboot中jackson特殊使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1077593

相关文章

Java中ArrayList和LinkedList有什么区别举例详解

《Java中ArrayList和LinkedList有什么区别举例详解》:本文主要介绍Java中ArrayList和LinkedList区别的相关资料,包括数据结构特性、核心操作性能、内存与GC影... 目录一、底层数据结构二、核心操作性能对比三、内存与 GC 影响四、扩容机制五、线程安全与并发方案六、工程

JavaScript中的reduce方法执行过程、使用场景及进阶用法

《JavaScript中的reduce方法执行过程、使用场景及进阶用法》:本文主要介绍JavaScript中的reduce方法执行过程、使用场景及进阶用法的相关资料,reduce是JavaScri... 目录1. 什么是reduce2. reduce语法2.1 语法2.2 参数说明3. reduce执行过程

如何使用Java实现请求deepseek

《如何使用Java实现请求deepseek》这篇文章主要为大家详细介绍了如何使用Java实现请求deepseek功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1.deepseek的api创建2.Java实现请求deepseek2.1 pom文件2.2 json转化文件2.2

Java调用DeepSeek API的最佳实践及详细代码示例

《Java调用DeepSeekAPI的最佳实践及详细代码示例》:本文主要介绍如何使用Java调用DeepSeekAPI,包括获取API密钥、添加HTTP客户端依赖、创建HTTP请求、处理响应、... 目录1. 获取API密钥2. 添加HTTP客户端依赖3. 创建HTTP请求4. 处理响应5. 错误处理6.

Spring AI集成DeepSeek的详细步骤

《SpringAI集成DeepSeek的详细步骤》DeepSeek作为一款卓越的国产AI模型,越来越多的公司考虑在自己的应用中集成,对于Java应用来说,我们可以借助SpringAI集成DeepSe... 目录DeepSeek 介绍Spring AI 是什么?1、环境准备2、构建项目2.1、pom依赖2.2

python使用fastapi实现多语言国际化的操作指南

《python使用fastapi实现多语言国际化的操作指南》本文介绍了使用Python和FastAPI实现多语言国际化的操作指南,包括多语言架构技术栈、翻译管理、前端本地化、语言切换机制以及常见陷阱和... 目录多语言国际化实现指南项目多语言架构技术栈目录结构翻译工作流1. 翻译数据存储2. 翻译生成脚本

C++ Primer 多维数组的使用

《C++Primer多维数组的使用》本文主要介绍了多维数组在C++语言中的定义、初始化、下标引用以及使用范围for语句处理多维数组的方法,具有一定的参考价值,感兴趣的可以了解一下... 目录多维数组多维数组的初始化多维数组的下标引用使用范围for语句处理多维数组指针和多维数组多维数组严格来说,C++语言没

Spring Cloud LoadBalancer 负载均衡详解

《SpringCloudLoadBalancer负载均衡详解》本文介绍了如何在SpringCloud中使用SpringCloudLoadBalancer实现客户端负载均衡,并详细讲解了轮询策略和... 目录1. 在 idea 上运行多个服务2. 问题引入3. 负载均衡4. Spring Cloud Load

Springboot中分析SQL性能的两种方式详解

《Springboot中分析SQL性能的两种方式详解》文章介绍了SQL性能分析的两种方式:MyBatis-Plus性能分析插件和p6spy框架,MyBatis-Plus插件配置简单,适用于开发和测试环... 目录SQL性能分析的两种方式:功能介绍实现方式:实现步骤:SQL性能分析的两种方式:功能介绍记录

在 Spring Boot 中使用 @Autowired和 @Bean注解的示例详解

《在SpringBoot中使用@Autowired和@Bean注解的示例详解》本文通过一个示例演示了如何在SpringBoot中使用@Autowired和@Bean注解进行依赖注入和Bean... 目录在 Spring Boot 中使用 @Autowired 和 @Bean 注解示例背景1. 定义 Stud