org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'serverEndpointExporter' defined in class path resource [com/ruoyi/framework/config/WebSocketConfig.class]: Invocation of init method failed; nested exception is java.lang.IllegalStateException: javax.websocket.server.ServerContainer not available
时间: 2024-02-26 11:58:50 浏览: 295
测试spring中的org.springframework.beans.factory.InitializingBean
这个错误通常是由于缺少 javax.websocket.server.ServerContainer 的实现类所致。您可以尝试添加 Tomcat 依赖项来解决此问题。在 Maven 中,您可以将以下依赖项添加到您的 pom.xml 文件中:
```
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-websocket</artifactId>
<version>${tomcat.version}</version>
</dependency>
```
如果您使用的是其他构建工具,请确保添加了正确的 Tomcat WebSocket 依赖项。
阅读全文