이번 포스팅은 저번 포스팅 끝에 말 한 STOMP를 활용한 실시간 채팅 프로그래밍을 해보려 한다.STOMP에 대한 설명은 전에 설명했기 때문에 바로 예제로 들어가 보자. 프로젝트 구성부터 알아보자. 다음과 같은 프로젝트 구성을 가져갔으며 클래스를 하나씩 확인해 보자. Greetingpackage com.example.socket.webSocket;import lombok.Getter;@Getterpublic class Greeting { private String content; public Greeting(){ } public Greeting(String content){this.content = content;} public String getContent(){return ..