REM:
1. 解决Tomecat中间件风险问题,改用undertow
This commit is contained in:
HuangXin 2020-08-06 18:12:51 +08:00
parent e7b175d930
commit 3e6e74df65
1 changed files with 14 additions and 0 deletions

14
pom.xml
View File

@ -216,6 +216,20 @@
<artifactId>ipaddress</artifactId>
<version>5.2.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</dependency>
</dependencies>
<build>