Springboot整合webSocket报错,java.lang.IllegalStateException: Failed to register @ServerEndpoint class

关注公众号【肥超说技术】,回复【资源】,可获取200G+最新微服务、docker技术资源等。

楼主也是从网上搜了一个,然后使用过程中没啥问题,打包出错。

WebSocketConfig
此处需要注意,仅使用应用文件启动项目才使用此配置。如果打包无需进行此步配置,否则会产生java.lang.IllegalStateException:无法注册@ServerEndpoint类的错误。

//使用tomcat启动无需配置
@Component
public class WebSocketConfig {
    @Bean
    public ServerEndpointExporter serverEndpointExporter(){
        return new ServerEndpointExporter();
    }
}
 

你可能感兴趣的:(Springboot)