Explorar el Código

[升级springboot版本,用undertow代替tomcat][优化]:优化后台处理

release_toaliyun_real
Stormeye.Wu hace 7 años
padre
commit
ba78abc9af
Se han modificado 1 ficheros con 11 adiciones y 1 borrados
  1. +11
    -1
      pom.xml

+ 11
- 1
pom.xml Ver fichero

@@ -20,7 +20,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
<version>1.5.15.RELEASE</version>
<relativePath/>
</parent>

@@ -32,6 +32,16 @@
<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>
<dependency>
<groupId>org.springframework.boot</groupId>


Cargando…
Cancelar
Guardar