feat: 新增 Jackson 自动配置

This commit is contained in:
2023-11-21 21:21:45 +08:00
parent 916127e741
commit e896559d23
8 changed files with 199 additions and 7 deletions

10
pom.xml
View File

@@ -69,8 +69,18 @@
<modules>
<module>continew-starter-dependencies</module>
<module>continew-starter-core</module>
<module>continew-starter-json</module>
</modules>
<dependencies>
<!-- Lombok在 Java 开发过程中用注解的方式,简化了 JavaBean 的编写,避免了冗余和样板式代码,让编写的类更加简洁) -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional> <!-- 表示依赖不会被传递 -->
</dependency>
</dependencies>
<build>
<plugins>
<!-- 代码等格式化插件 -->