chore(config): 移除自定义Jackson配置并添加JSR310支持

- 删除了自定义的Jackson序列化配置类
- 添加了jackson-datatype-jsr310依赖以支持日期时间序列化
- 简化了项目配置结构
This commit is contained in:
zkh
2025-11-20 20:59:52 +08:00
parent 63285b347d
commit 1ea70bf700
2 changed files with 4 additions and 24 deletions

View File

@ -36,6 +36,10 @@
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
</dependency>
</dependencies>
<build>