在SpringBoot項目中集成了WebSocket,在進行單元測試的時候,出現瞭如下錯誤:java
javax.websocket.server.ServerContainer not available
單元測試類的原註解是這樣的:web
@RunWith(SpringRunner.class) @SpringBootTest
經查閱資料,得知SpringBootTest在啓動的時候不會啓動服務器,因此WebSocket天然會報錯,這個時候須要添加選項webEnvironment,以便提供一個測試的web環境。以下:服務器
@RunWith(SpringRunner.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)