Update pom.xml for MyBatis Plus integration and downgrade Spring Boot version; refactor validation imports from Jakarta to Javax; modify mappers to extend BaseMapper for CRUD operations; clean up unused MyBatis-Flex mappers; adjust application.yml for MyBatis Plus configuration.
This commit is contained in:
16
pom.xml
16
pom.xml
@@ -5,7 +5,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>3.3.3</version>
|
||||
<version>2.7.18</version>
|
||||
<relativePath/>
|
||||
</parent>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
<properties>
|
||||
<java.version>17</java.version>
|
||||
<mybatis.spring.boot.version>3.0.3</mybatis.spring.boot.version>
|
||||
<mybatis-plus.version>3.5.8</mybatis-plus.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
@@ -33,11 +33,11 @@
|
||||
<artifactId>spring-boot-starter-security</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- MyBatis starter (JDBC, blocking) -->
|
||||
<!-- MyBatis Plus starter -->
|
||||
<dependency>
|
||||
<groupId>org.mybatis.spring.boot</groupId>
|
||||
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||||
<version>${mybatis.spring.boot.version}</version>
|
||||
<groupId>com.baomidou</groupId>
|
||||
<artifactId>mybatis-plus-boot-starter</artifactId>
|
||||
<version>3.5.8</version>
|
||||
</dependency>
|
||||
|
||||
<!-- MySQL JDBC driver -->
|
||||
@@ -88,8 +88,8 @@
|
||||
<!-- Swagger/OpenAPI Documentation -->
|
||||
<dependency>
|
||||
<groupId>org.springdoc</groupId>
|
||||
<artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
|
||||
<version>2.3.0</version>
|
||||
<artifactId>springdoc-openapi-webflux-ui</artifactId>
|
||||
<version>1.7.0</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Apache Commons Codec for SHA-256 and hex utils -->
|
||||
|
||||
Reference in New Issue
Block a user