1.lombok的使用

2.Spring-mybatis-增删改查准备工作
This commit is contained in:
2025-09-25 14:34:50 +08:00
parent c49a7571f6
commit 4040b06ab8
11 changed files with 255 additions and 64 deletions

View File

@@ -44,6 +44,18 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!--阿里巴巴的DRUID依赖-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.2.8</version>
</dependency>
<!--lombok依赖-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
</dependencies>
<!--统一springboot依赖管理版本-->
<dependencyManagement>