我有一个在端口8989上运行的spring boot应用程序(2.0.5.RELEASE)。该应用程序通过websocket将日志消息发送到客户端。 我创建了一个JavaScript客户端,该客户端连接到websocket,并将消息附加到html文本区域。该客户端位于应用程序的resource \ static \ js文件夹下。 当我不使用servet.context.path时,它工作正常。 有什么办法,我可以解决上下文路径。 我是否缺少一些配置参数? 非常感谢您在这方面的帮助。
Application.properties
@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfig implements WebSocketMessageBrokerConfigurer {
/**
* Register Stomp endpoints: the url to open the WebSocket connection.
*/
@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
// Register the "/websocket" endpoint, enabling the SockJS protocol.
// SockJS is used (both client and server side) to allow alternative
// messaging options if WebSocket is not available.
registry.addEndpoint("/websocket").setAllowedOrigins("*").withSockJS();
}
@Override
public void configureMessageBroker(MessageBrokerRegistry registry) {
registry.enableSimpleBroker("/topic");
registry.setApplicationDestinationPrefixes("/app");
}
}
Websocket配置如下:
$(window).ready(function() {
connect();
});
function connect() {
// var socket = new SockJS('/websocket');
var socket = new SockJS('/DemoService/webresources/test/websocket');
stompClient = Stomp.over(socket);
stompClient.connect({}, function(frame) {
stompClient.subscribe('/topic/pushlognotification', function(
notification) {
var txt = $('#textArea');
txt.val(txt.val() + "\n" + "\n" + notification);
txt.scrollTop(txt[0].scrollHeight);
});
});
}
客户端看起来像这样
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Messages</title>
</head>
<body>
<textarea type="text" id="textArea" placeholder="Messages..." rows="15" cols="60"></textarea>
<script src='js/jquery.min.js'></script>
<script src="js/index.js"></script>
<script src="/webjars/sockjs-client/sockjs.min.js"></script>
<script src="/webjars/stomp-websocket/stomp.min.js"></script>
</body>
</html>
HTML页面是:
nullable=True
答案 0 :(得分:0)
检查控制台输出后找出解决方案。
由于配置了上下文路径,HTML代码无法通过src(例如“ js / jquery.min.js”等)找到注册文件。 解决方案是将上下文路径添加到所有src中,如下所示。
或输入“。”签名
这对我有用。