2

我正在尝试使用 stomp 设置带有 spring-messaging 的 WebSocket,并使用带有 spring-session 的 redis 支持的会话。我们的应用程序上下文是通过 xml 连接的,spring-session 正在处理应用程序的非 websocket 部分。websocket的相关配置如下

    <websocket:message-broker application-destination-prefix="/streaming" >
    <websocket:stomp-endpoint path="/data"> 
        <websocket:sockjs session-cookie-needed="false" />
    </websocket:stomp-endpoint>
    <websocket:stomp-broker-relay prefix="/topic" relay-host="${jms_hostname}" relay-port="${jms_stomp_port}" />
    <websocket:client-inbound-channel>
        <websocket:interceptors>
            <ref bean="sessionRepoMessageInterceptor"/>
            <ref bean="authenticationValidationInterceptor" />
            <ref bean="selectorValidationInterceptor" />
            <ref bean="selectorQuotingInterceptor" /> <!-- comes after we have validated the selector, we now shim it so JMS understands it -->
        </websocket:interceptors>
    </websocket:client-inbound-channel>
</websocket:message-broker>

我在这里定义了我认为 spring-session 与 web 套接字集成的必要 bean:

<bean id="redisSessionBackedWebsocketHandler" class="org.springframework.session.web.socket.server.">
</bean>

<bean id="sessionRepoMessageInterceptor" class="org.springframework.session.web.socket.server.SessionRepositoryMessageInterceptor">
</bean>

 <bean id="webSocketRegistryListener" class="org.springframework.session.web.socket.handler.WebSocketRegistryListener">
 </bean>

但我不确定将它们连接到网络套接字配置的位置,并且无法找到任何有关如何以这种方式进行操作的文档。

想法?

4

1 回答 1

0

Spring Session WebSocket包含仅适用于 Java & Annotation 变体的配置。

根据 Spring Session DocsAbstractSessionWebSocketMessageBrokerConfigurer它可以实现 Spring Session 和 Spring WebSockets 之间的无缝集成。然而,我们可以看到一些段落,它做了什么:

要挂钩 Spring Session 支持,我们需要确保...

老实说,从 XML 配置这些东西并不容易。

随时关注这个问题:https ://github.com/spring-projects/spring-session/issues/101

于 2015-01-14T12:47:35.867 回答