随笔 - 229
文章 - 0
评论 - 10
阅读 -
26万
随笔分类 - ObjectMapper
ObjectMapper笔记
记录一下ObjectMapper解析LoaclDateTime时间格式的问题
摘要:添加依赖 <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> <version>2.10.2</version> <scope>
阅读全文
ObjectMapper序列化时间
摘要:springmvc默认的消息转换器是使用的MappingJackson2HttpMessageConverter, 其核心类就是ObjectMapper. 先看一下面一个示例 @RestController public class TestObjectMapperController { @Get
阅读全文