AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
``` 1. 默认情况下SpringBoot使用Tomcat作为内嵌的Servlet容器 2. Undertow是一个采用java开发的灵活的高性能web服务器,提供包括阻塞和基于NIO的非阻塞机制 3. 将Web服务器更换为Undertow来提高性能 ``` ``` <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency> ``` ``` <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-undertow</artifactId> </dependency> ```