升级 运行web容器tomcat->undertow

pull/130/head
1351515658@qq.com 2024-07-29 16:53:04 +08:00
parent 76b3f17fdc
commit 0493a61741
1 changed files with 12 additions and 0 deletions

View File

@ -32,6 +32,18 @@
<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>
<!-- 添加 Undertow -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</dependency>
<dependency>