记录编写websocket出现的错误
java.lang.IllegalStateException: Failed to register @ServerEndpoint class: class com.websocket.websocket.ChatEndpoint 在网上找到很多帖子,大部分都说的是使用springboot本身集成的容器和单独使用容器的不同,在扫描websocket组件时,产生的差异而报的错; 例如: 容器扫描的组件不一致导致的问题
而我在启动websocket应用中,并未发现编写有错误,多次尝试启动,均报一下错误,经检查是使用注解编写websocket类时,springboot本身会对传入的参数进行校验,检验失败就会报错。 Caused by: javax.websocket.DeploymentException: A parameter of type [interface javax.websocket.EndpointConfig] was found on method[close] of class [java.lang.reflect.Method] that did not have a @PathParam annotation
@OnClose
public void close(Session session, EndpointConfig config) {
}
@OnError
public void error(Session session, EndpointConfig config) {
}
public abstract class Endpoint {
public Endpoint() {
}
public abstract void onOpen(Session var1, EndpointConfig var2);
public void onClose(Session session, CloseReason closeReason{
}
public void onError(Session session, Throwable throwable) {
}
}
对传入的形参进行修改,则启动正常
|