我正在使用 SockJS 客户端。SockJS 构造函数采用相对 URL 作为
var ws= new SockJS('/spring-websocket-test/sockjs/echo', undefined,{protocols_whitelist: [transport]});
我们在哪里指出使用 WSS:// 而不是 WS://。如果我尝试绝对 URL,它会给出错误:
XMLHttpRequest cannot load ws://localhost:8080/appname/app. Cross origin requests are only supported for HTTP.
_ws_onclose. wasClean: false code: 1002 reason: Can't connect to server
不知道为什么会出现此错误。Spring Server 实现需要任何类似的配置吗?