首页 > 其他分享 >UT026010 Buffer pool was not set on WebSocketDeploymentInfo...

UT026010 Buffer pool was not set on WebSocketDeploymentInfo...

时间:2022-12-01 11:34:40浏览次数:62  
标签:... set undertow Buffer UT026010 WebSocketDeploymentInfo pool

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>

三、引用怪叔叔悬剑找到的谷歌方法,链接:https://dreamsea77.tistory.com/306

标签:...,set,undertow,Buffer,UT026010,WebSocketDeploymentInfo,pool
From: https://www.cnblogs.com/LightGrass/p/16940889.html

相关文章