package cc.mrbird.febs.websocket; import org.springframework.context.annotation.Configuration; import org.springframework.web.socket.config.annotation.EnableWebSocket; import org.springframework.web.socket.config.annotation.WebSocketConfigurer; import org.springframework.web.socket.config.annotation.WebSocketHandlerRegistry; import javax.annotation.Resource; /** * * @author xxx * @date 2020-09-01 **/ @Configuration @EnableWebSocket public class WebSocketConfig implements WebSocketConfigurer { @Resource private HttpAuthHandler httpAuthHandler; @Resource private WsAuthInterceptor wsAuthInterceptor; @Override public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) { registry.addHandler(httpAuthHandler, "wsxg") .addInterceptors(wsAuthInterceptor) .setAllowedOrigins("*"); } }