|
@@ -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'
|