주석을 해제하면 setAllowedOrigins("") 설정이 적용되면서 특정 브라우저 환경에서 CORS 오류가 발생할 수 있다. 특히 SockJS는 기본적으로 다양한 전송 방식을 사용하므로, 일부 전송 방식에서는 setAllowedOrigins("") 설정이 올바르게 동작하지 않을 수 있다.
registry.addEndpoint("/ws-stomp")
.setAllowedOriginPatterns("https://example.com");
JwtHandshakeInterceptor가 WebSocket 핸드셰이크 과정에서 JWT를 검사하는데, SockJS가 XHR Polling이나 iframe을 사용할 경우 요청 헤더에 토큰을 포함하지 못하는 문제가 발생할 수 있다.
public class JwtHandshakeInterceptor implements HandshakeInterceptor {
@Override
public boolean beforeHandshake(ServerHttpRequest request, ServerHttpResponse response,
WebSocketHandler wsHandler, Map<String, Object> attributes) {
if (request instanceof ServletServerHttpRequest) {
ServletServerHttpRequest servletRequest = (ServletServerHttpRequest) request;
Cookie[] cookies = servletRequest.getServletRequest().getCookies();
if (cookies != null) {
for (Cookie cookie : cookies) {
if ("jwt".equals(cookie.getName())) {
String token = cookie.getValue();
if (validateToken(token)) {
attributes.put("jwt", token);
return true;
}
}
}
}
}
return false;
}
}
SockJS는 폴백 방식 (XHR, Long Polling 등)을 사용할 때 서버에 HttpSession이 생성될 수 있다. 분산 서버 환경에서는 세션을 공유할 수 없으므로, JWT 기반 인증을 사용할 때 예기치 않은 세션 문제가 발생할 수 있다.
Spring Boot에서 HttpSession을 강제로 사용하지 않도록 설정 -> 시큐리티 필터 설정
spring.session.store-type=none 설정을 적용하여 세션을 비활성화한다.
JwtHandshakeInterceptor에서 HttpSession을 사용하지 않도록 수정
securityFilterChain
application.properties
spring.session.store-type=none
server.servlet.session.timeout=0
웹소켓과 STOMP 환경에서 JWT를 사용하는 경우, CORS 문제, JWT 핸드셰이크 문제, SockJS의 세션 생성 문제 등이 발생할 수 있다. 이를 해결하기 위해 올바른 CORS 설정을 적용하고, JWT를 헤더가 아닌 다른 방식으로 전달하며, 세션을 비활성화하는 방식으로 설정을 최적화해야 한다.