springboot2.1.1 中集成websocket 单元测试异常

Posted 不积跬步无以至千里

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot2.1.1 中集成websocket 单元测试异常相关的知识,希望对你有一定的参考价值。

单元测试在没有集成websocket之前是好好的,当集成websocket之后就出现了下面的异常(只贴出来关键信息):

2019-01-11 10:05:42 [ERROR] [org.springframework.boot.SpringApplication:858] - Application run failed 
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'serverEndpointExporter' defined in class path resource [com
Caused by: java.lang.IllegalStateException: javax.websocket.server.ServerContainer not available

个人猜想异常原因就是因为@ServerEndpoint注解引起的

于是在单元测试上面添加了下面的注解就可以运行了:

@SpringBootTest(classes = {Application.class}, webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT)

Application个类就是程序的入口类。在此做一下记录

以上是关于springboot2.1.1 中集成websocket 单元测试异常的主要内容,如果未能解决你的问题,请参考以下文章

如何在 IOS 中集成 Javascript

HUE中集成Solr

如何在flutter中集成paypal支付

如何在 XAMPP 中集成 sqlite 扩展?

在 ASP.NET 中集成支付网关

如何在 laravel 中集成 Paypal 支付网关?