이어서 STOMP 세팅을 하겟슴다 //STOMPimplementation 'org.springframework.boot:spring-boot-starter-websocket'implementation 'org.webjars:webjars-locator-core'implementation 'org.webjars:sockjs-client:1.5.1'implementation 'org.webjars:stomp-websocket:2.3.4'implementation 'org.webjars:bootstrap:5.2.3'implementation 'org.webjars:jquery:3.6.4' 이건 STOMP 의존성을 추가한 것이다. WebSocketConfig 설정 @Configuration@RequiredA..