Я пытаюсь настроить websocket с сервером activemq, но я получаю вышеупомянутую ошибку. Я уже заменил localhost wit 0.0.0.0, но он не работает. Ниже мой код, пожалуйста, посмотрите
@Bean
public BrokerService broker() throws Exception {
final BrokerService broker = new BrokerService();
// configure the broker
broker.addConnector( "ws://localhost:61614" );
broker.setPersistent(false);
final ActiveMQTopic topic = new ActiveMQTopic( topicstring );
broker.setDestinations( new ActiveMQDestination[] { topic } );
final ManagementContext managementContext = new ManagementContext();
managementContext.setCreateConnector(true);
broker.setManagementContext(managementContext);
return broker;
}