라벨이 Stomp인 게시물 표시

Spring + StompWebsocket

이미지
Maven dependences < dependency > < groupId > org.springframework.boot </ groupId > < artifactId > spring-boot-starter-websocket </ artifactId > </ dependency > < dependency > < groupId > org.webjars </ groupId > < artifactId > sockjs-client </ artifactId > < version > 1.1.2 </ version > </ dependency > < dependency > < groupId > org.webjars </ groupId > < artifactId > stomp-websocket </ artifactId > < version > 2.3.3-1 </ version > </ dependency > HTML < script src = "/webjars/sockjs-client/1.1.2/sockjs.min.js" > </ script > < script src = "/webjars/stomp-websocket/2.3.3-1/stomp.min.js" > </ script > Java config @Configuration @EnableWebSocketMessageBroker public class WebSocketConfig implements WebSocketMessageBrokerConfigurer { @Override publ...