WebSocket可以连接到本地服务器,但无法发送或接收

时间:2016-08-03 13:32:12

标签: spring websocket stomp sockjs

我正致力于在两个本地服务器之间设置websocket以进行开发。

一方面,我在http://localhost:8100/

上运行了我的Ionic应用程序

另一方面,我在http://localhost:9080/(或http://127.0.0.1:9080)上运行了一个Spring后端

连接已经建立,所以接下来我想用一个令牌向websocket发送一条消息(我知道这可以在SockJS 1.1.0中建立连接时发送,但我目前正在使用0.3。 4)

但是我后端的代码似乎没有响应,我想知道我的IP配置是否正确。我按照教程进行了另一个项目。

任何具有更多经验的人都知道订阅功能中的网址是否也需要以' localhost'为前缀。还是一个IP地址?我知道websocket从http://更改为ws://所以我想在这种情况下,我需要在它前面添加如下内容:ws:// localhost:9080 / ...

无论如何,这是我的代码:

WebSocet服务:

function init() {
      var socket = new SockJS('http://127.0.0.1:9080/ws-notification');
      stompClient = Stomp.over(socket);
      stompClient.connect({}, function(frame) {
          console.log('Connected: ' + frame);
          /**
           * Subscribe at /ws-topic/greetings url to catch messages
           */
          stompClient.subscribe('/ws-topic/greetings', function(greeting){
              notify(JSON.parse(greeting.body).content);
          });
          parseAuthentication();
      });
  }

  function parseAuthentication(){
      stompClient.send("/ws-app/ws-notification",{},JSON.stringify({ 'token': authenticationService.isAuthenticated() }));
  }


  function disconnect() {
      if (stompClient != null) {
          stompClient.disconnect();
      }
      // setConnected(false);
      console.log("Disconnected");
  }

  function notify(message){
      console.log("NOTIFY: "+message);
  }

WebSocket配置:

@Configuration
@EnableWebSocketMessageBroker
public class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer {


    @Override
    public void registerStompEndpoints(StompEndpointRegistry registry) {
        registry.addEndpoint("/ws-notification").setAllowedOrigins("*").withSockJS();
    }

    @Override
    public void configureMessageBroker(MessageBrokerRegistry config){
        config.enableSimpleBroker("/ws-topic");
        config.setApplicationDestinationPrefixes("/ws-app");
    }
}

我的控制器功能:

@MessageMapping("/ws-notification")
@SendTo("/ws-topic/greetings")
public Notify greeting(Notify notify) throws InterruptedException {
    Thread.sleep(1000);
    return new Notify("Hello, your token is :" + notify.getWsToken());
}

请注意,我在init()函数中设置连接时只指定了IP地址,尝试使用ws://127.0.0.1:...但不运气给其他网址添加前缀!

1 个答案:

答案 0 :(得分:0)

我找到了答案!

问题是我用来发送数据的模型中没有默认的构造方法。

Spring WebSocket Tutorial

中也未实现或提及此问题