Browse Source

将tomcat容器更换为undertow

liyan 1 month ago
parent
commit
e0e235e6c9
1 changed files with 6 additions and 1 deletions
  1. 6 1
      ruoyi-framework/build.gradle

+ 6 - 1
ruoyi-framework/build.gradle

@@ -9,7 +9,12 @@ plugins {
 }
 
 dependencies {
-    api 'org.springframework.boot:spring-boot-starter-web'
+    // 排除 Tomcat 容器
+    api('org.springframework.boot:spring-boot-starter-web') {
+        exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
+    }
+    // 添加 Undertow 容器
+    api 'org.springframework.boot:spring-boot-starter-undertow'
     api 'org.springframework.boot:spring-boot-starter-aop'
     api 'com.alibaba:druid-spring-boot-starter'
     api 'com.github.penggle:kaptcha'