Browse Source

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

release_toaliyun_real
Stormeye.Wu 7 years ago
parent
commit
ba78abc9af
1 changed files with 11 additions and 1 deletions
  1. +11
    -1
      pom.xml

+ 11
- 1
pom.xml View File

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


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


Loading…
Cancel
Save