OCT
REM: 1. 移除使用tomcat,增加xnio-nio依赖,解决undertow在服务器上无法启动问题
This commit is contained in:
parent
aeda69fdb9
commit
e3da4a6e0b
16
pom.xml
16
pom.xml
|
@ -41,15 +41,13 @@
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.tomcat.embed</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>tomcat-embed-core</artifactId>
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
||||||
<exclusions>
|
</dependency>
|
||||||
<exclusion>
|
<dependency>
|
||||||
<groupId>org.apache.tomcat</groupId>
|
<groupId>org.jboss.xnio</groupId>
|
||||||
<artifactId>tomcat-annotations-api</artifactId>
|
<artifactId>xnio-nio</artifactId>
|
||||||
</exclusion>
|
<version>3.8.1.Final</version>
|
||||||
</exclusions>
|
|
||||||
<version>9.0.37</version>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
|
Loading…
Reference in New Issue