我有一個通過sockJs通過websocket安裝的spring啓動應用程序。春季啓動配置websocket與http不同的端口
public void registerStompEndpoints(StompEndpointRegistry stompEndpointRegistry) {
stompEndpointRegistry.addEndpoint("/gs-guide-websocket").setAllowedOrigins("*")
.withSockJS();
}
我在openshift中部署它,它有一個使用端口8000的websocket的限制。是否有可能配置spring使用端口8000的ws://並保持http://到端口80?
閱讀此類似的問題:https://stackoverflow.com/q/25708617/1793718 – Lucky
[Spring 4 WebSocket配置端口]的可能重複(https://stackoverflow.com/questions/25708617/spring-4-websocket -configure-port) –