1. 程式人生 > >springboot WebSocket 跨域報錯問題:Origin header value 'http://127.0.0.1:8080' not allowed.

springboot WebSocket 跨域報錯問題:Origin header value 'http://127.0.0.1:8080' not allowed.

     最近專案在做一個類似於廣播,運用的WebSocket  。出現一直請求不到的錯誤。如下:

瀏覽器:GET http://192.168.121.83:8080/endpointClinical/info 403 () 

後臺:2017-10-26 11:40:54.114 |-WARN  [http-nio-8080-exec-8] org.springframework.web.socket.sockjs.transport.handler.DefaultSockJsService [482] -| 

Origin header value 'http://127.0.0.1:8080' not allowed.

     經查閱是跨域的問題,查看了自己配置後端跨域問題,是沒問題的,還是出現同樣的問題。於是查找了官方資料,發現WebSocket的配置也需要配置。

@Configuration
@EnableWebSocketMessageBroker//註解使用STOMP協議傳輸基於代理訊息
public class WebSocketConfig  extends AbstractWebSocketMessageBrokerConfigurer{
//註冊STOMP協議節點,同時指定使用SockJS協議。
@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
registry.addEndpoint("/endpointClinical").setAllowedOrigins("*").

withSockJS();
}
//由於我們是實現推送功能,這裡的訊息代理是/topic
@Override
public void configureMessageBroker(MessageBrokerRegistry config) {
//啟動STOMP 代理中繼功能,並將其代理目的地字首設定為 "/queue"
config.enableSimpleBroker("/topic");
//應用程式開頭
//config.setApplicationDestinationPrefixes("/app");

}
}

參考:https://stackoverflow.com/questions/32874421/websocket-in-spring-boot-app-getting-403-forbidden