我正在使用Spring 4.1.6.RELEASE和我的服务器配置为使用基于SockJs和STOMP协议的websocket方法http://docs.spring.io/spring/docs/current/spring-framework-reference/html/websocket.html,这里是我在服务器端的简单xml配置:
<websocket:message-broker application-destination-prefix="/app">
<websocket:stomp-endpoint path="/hello" allowed-origins="*">
<websocket:sockjs/>
</websocket:stomp-endpoint>
<websocket:simple-broker prefix="/topic"/>
</websocket:message-broker>
所以我的问题是我可以在哪里找到 android 符合sockjs的客户端,或者这是不可能的?请建议我其他方法。谢谢你的帮助。