单元测试中启动报错:javax.websocket.server.ServerContainer not available

参考:https://blog.csdn.net/chunjusu2447/article/details/100820520

单元测试类的原注解是这样的:
@RunWith(SpringRunner.class)
@SpringBootTest


需要添加选项webEnvironment,提供一个测试的web环境。如下:
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)

 

你可能感兴趣的:(springboot)