芋道启用undertown
芋道使用的是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)
能看到以下 代表启动成功
原文地址:https://blog.csdn.net/weimeibuqieryu/article/details/143889882
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!