蓝凌EKP tomcat addFilter报错
时间: 2023-06-29 07:05:34 浏览: 151
蓝凌EKP V16手册,全网最全
在蓝凌EKP中,添加Filter可以通过修改Tomcat的web.xml文件实现。但是如果您直接在web.xml文件中添加Filter,可能会遇到以下错误:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'serverEndpointExporter' defined in class path resource [com/blueprism/workflow/websocket/WebSocketConfig.class]: Invocation of init method failed; nested exception is javax.servlet.ServletException: Failed to instantiate class [org.apache.shiro.web.servlet.OncePerRequestFilter]: Constructor threw exception; nested exception is java.lang.NullPointerException
要解决这个问题,可以尝试在web.xml文件中添加以下代码:
```xml
<filter-mapping>
<filter-name>shiroFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
```
这样就可以成功添加Filter了。但是请注意,如果您使用的是蓝凌EKP的最新版本,可能会有其他更好的解决方案,建议先查看官方文档或咨询技术支持。
阅读全文