티스토리 뷰

Spring Boot에서 undertow사용시 websocket관련 WARN

1. 경고 문구

WARN  [io.undertow.websockets.jsr:68] handleDeployment - UT026010: Buffer pool was not set on WebSocketDeploymentInfo, the default pool will be used

 

2. 해결 방안

pom.xml에서 dependency에서 undertow에서 websockets를 exclusion을 해준다.

<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>

 

 

 

 

 

댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함