8


我正在使用 spring-websocket 和 spring-messaging(版本 4.2.2.RELEASE)通过具有全功能代理(Apache ActiveMQ 5.10.0)的 websockets 实现 STOMP。
我的客户只能订阅目的地 - 也就是说他们不应该能够发送消息。此外,我想对我的客户可以订阅的目的地实施更严格的控制。在任何一种情况下(即当客户端尝试发送消息或订阅无效目的地时)我希望能够

  1. 发送适当的错误,和/或
  2. 关闭网络套接字

请注意,我所有的目的地都转发到 ActiveMQ。我认为我可以在入站通道上实现ChannelInterceptor,但是查看 API 我无法弄清楚如何实现我想要的。这可能吗?验证客户端请求的最佳方法是什么?我的 websocket 配置如下:

<websocket:message-broker
    application-destination-prefix="/app">
    <websocket:stomp-endpoint path="/pushchannel"/>
    <websocket:stomp-broker-relay relay-host="localhost"
        relay-port="61613" prefix="/topic"
        heartbeat-receive-interval="300000" heartbeat-send-interval="300000" />
    <websocket:client-inbound-channel>
        <websocket:interceptors>
            <bean class="MyClientMessageInterceptor"/>
        </websocket:interceptors>
    </websocket:client-inbound-channel>
</websocket:message-broker>
4

1 回答 1

0

您可以编写入站拦截器并向客户端发送适当的错误消息。

public class ClientInboundChannelInterceptor extends ChannelInterceptorAdapter {

@Autowired
private SimpMessagingTemplate simpMessagingTemplate;

@Override
public Message<?> preSend(Message message, MessageChannel channel) throws IllegalArgumentException{
    StompHeaderAccessor headerAccessor = StompHeaderAccessor.wrap(message);
    logger.debug("logging command " + headerAccessor.getCommand());
    try {
          //write your logic here
        } catch (Exception e){
            throw new MyCustomException();
        }
    }

}

更新:

1)当您从 中抛出任何异常时ClientInboundChannelInterceptor,它将作为ERROR帧发送,您不必做任何特别的事情。

2)我不确定关闭连接,但做一些像创建DISCONNECT标题并发送它应该可以工作(我会尝试测试并更新答案)。

SimpMessageHeaderAccessor headerAccessor = SimpMessageHeaderAccessor.create(SimpMessageType.DISCONNECT);
headerAccessor.setSessionId(sessionId);
headerAccessor.setLeaveMutable(true);

template.convertAndSendToUser(destination,new HashMap<>(),headerAccessor.getMessageHeaders());

您有以下选项之一在订阅时发送错误。

1) 抛出异常ClientInboundChannelInterceptor

2)在你的Handler/Controller,添加@SubscribeMapping并返回框架。

@SubscribeMapping("your destination")
public ConnectMessage handleSubscriptions(@DestinationVariable String userID, org.springframework.messaging.Message message){
    // this is my custom class
    ConnectMessage frame= new ConnectMessage();
    // write your logic here
    return frame;
}

frame将直接发送给客户。

于 2016-03-05T20:36:28.923 回答