芋道使用的是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)
能看到以下 代表启动成功









![[Admin] Dashboard Filter for Mix Report Types](https://i-blog.csdnimg.cn/direct/e3b72b53128c4d278236f8cf4a4ffe94.png)








