升级 v2.2

This commit is contained in:
疯狂的狮子li
2020-03-19 09:21:17 +08:00
parent 51ae2d1a87
commit bd7371fb8b
2 changed files with 23 additions and 8 deletions

View File

@ -45,6 +45,18 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<artifactId>spring-boot-starter-tomcat</artifactId>
<groupId>org.springframework.boot</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- web 容器使用 undertow 性能更强 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</dependency>
<!-- SpringBoot 测试 -->