为什么Spring SendToUser不起作用

时间:2014-11-19 09:26:20

标签: spring websocket stomp sockjs

我只是按照春天的指示向特定用户发送回复,而不是广播消息。但最后,没有回复消息可以发回。

这是我的js代码:

var stompClient = null;
function setConnected(connected) {
    document.getElementById('connect').disabled = connected;
    document.getElementById('disconnect').disabled = !connected;
    document.getElementById('conversationDiv').style.visibility = 
            connected ? 'visible': 'hidden';
    document.getElementById('response').innerHTML = '';
}
function connect() {
    var socket = new SockJS('reqsample');
    stompClient = Stomp.over(socket);
    stompClient.connect({}, function(frame) {
        setConnected(true);
        console.log('Connected: ' + frame);
        stompClient.subscribe('user/queue/resp', function(resp) {
            var body = JSON.parse(resp.body);
            showResp('cmid:' + body.cmid + ',reqName:' + body.reqName
                    + ',custNo:' + body.custNo + ',qty:' + body.quantity);
        });
        stompClient.subscribe('user/queue/errors', function(resp) {
            var body = JSON.parse(resp.body);
            showResp(body);
        });
    });
}
function disconnect() {
    stompClient.disconnect();
    setConnected(false);
    console.log("Disconnected");
}
function sendName() {
    var name = document.getElementById('name').value;
    stompClient.send("/app/req", {}, JSON.stringify({
        'name' : name
    }));
}

这是控制器:

@Controller
public class MessageController {
    @MessageMapping("/req")
    @SendToUser("/queue/resp")
    public RespMessage greeting(ReqMessage message, Principal pc)
        throws Exception {
    System.out.println("---- received message: " + message == null ? "NULL"
            : message.getName());
    System.out.println("---- received user info: " + pc.getName());
    RespMessage rm = new RespMessage();
    rm.setCmid("CM_01");
    rm.setCustNo("Cust_02");
    rm.setQuantity("1000");
    rm.setReqName(message.getName());
    return rm;

    }

    @MessageExceptionHandler
    @SendToUser("/queues/errors")
    public String handleException(Exception ex) {
        System.out.println(ex);
        return ex.getMessage();
    }

    }

这是弹簧配置:

<context:component-scan base-package="wx.poc7" />
<mvc:annotation-driven />
<bean
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <property name="prefix" value="/WEB-INF/jsp/" />
    <property name="suffix" value=".jsp" />
</bean>
<mvc:resources mapping="/js/**" location="/js/" />
<websocket:message-broker
    application-destination-prefix="/app" user-destination-prefix="/user">
    <websocket:stomp-endpoint path="reqsample">
        <websocket:sockjs />
    </websocket:stomp-endpoint>
    <websocket:simple-broker prefix="/queue, /topic" />
 </websocket:message-broker>

请帮助。 thx提前。

我尝试过使用@SendToUser,@ SendToUser(“/ queue / resp”)和SimpMessagingTemplate,完全无法向浏览器回复消息。

3 个答案:

答案 0 :(得分:5)

用户目的地前缀为/user,但您似乎缺少订阅目的地中的/。将user/queue/resp更改为/user/queue/resp以接收客户端的邮件。

答案 1 :(得分:0)

您的WebSocket配置看起来不错,但我认为问题在于正确的connect网址:

new SockJS('reqsample')

确保此网址有效。我看到你对stomp-endpoint path="reqsample"使用相同的内容。但请不要忘记DispatcherServlet中有web.xml映射。

尝试使用full构造函数中包含主机和端口的SockJS网址。像这样:

http://localhost:8080/reqsample

如果您的DispatcherServlet已映射到/

当您找到STOMP端点的正确URL时,您可以使用该JSP的相对路径。

答案 2 :(得分:0)

在Javascript中,您订阅了频道:

stompClient.subscribe('user/queue/errors', function(resp) {
            var body = JSON.parse(resp.body);
            showResp(body);
        });

正确的路径是&#39;用户/&#39; +用户名+&#39;队列/错误&#39;

也看这个话题: Sending message to specific user on Spring Websocket