Pre Merge pull request !452 from 简单风/feature-spring-boot-2.7.12

pull/452/MERGE
简单风 2023-05-24 06:12:43 +00:00 committed by Gitee
commit 65af80a701
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 12 additions and 3 deletions

View File

@ -39,7 +39,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.5.14</version>
<version>2.7.12</version>
<type>pom</type>
<scope>import</scope>
</dependency>

View File

@ -45,8 +45,14 @@
<!-- Mysql驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<exclusions>
<exclusion>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- 核心模块-->

View File

@ -72,6 +72,9 @@ spring:
restart:
# 热部署开关
enabled: true
mvc:
pathmatch:
matching-strategy: ant_path_matcher
# MyBatis
mybatis: