UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used
一、解决方案:在引入undertow包时剔除undertow-websockets-js包,启动无警告日志
二、方法: pom.xml文件里添加一下依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-undertow</artifactId>
<exclusions>
<exclusion>
<groupId>io.undertow</groupId>
<artifactId>undertow-websockets-jsr</artifactId>
</exclusion>
</exclusions>
</dependency>