芋道使用的是tomcat, 可以替换为性能更好的undertown
1.maven配置
1.1在yudao-dependencies模块下yudao-spring-boot-starter-web 和yudao-spring-boot-starter-websocket排除spring-boot-starter-tomcat
添加
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
1.2在yudao-spring-boot-starter-web 下添加undertown依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
</dependency>
2.成功配置启动后
搜索
Undertow started on port(s)
能看到以下 代表启动成功