我正在尝试使用activemq服务器配置websocket,但是我遇到了以上错误。我已经替换了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;
}
答案 0 :(得分:0)
这很可能会发生,因为基于HTTP和WS的传输所需的依赖关系未包含在代理的类路径中。您应该确保使用依赖项中列出的“ activemq-http”模块(例如maven pom文件或IDE设置)创建代理。