- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Caused by: java.lang.IllegalArgumentException: El mapeo de filtro especifica un nombre desconocido de filtro struts2
at org.apache.catalina.core.StandardContext.validateFilterMap(StandardContext.java:3040)
at org.apache.catalina.core.StandardContext.addFilterMap(StandardContext.java:3005)
at org.apache.catalina.deploy.WebXml.configureContext(WebXml.java:1271)
at org.apache.catalina.startup.ContextConfig.webConfig(ContextConfig.java:1346)
at org.apache.catalina.startup.ContextConfig.configureStart(ContextConfig.java:878)
at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:376)
at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
at org.apache.catalina.util.LifecycleBase.fireLifecycleEvent(LifecycleBase.java:90)
at org.apache.catalina.core.StandardContext.startInternal(StandardContext.java:5322)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
... 7 more
有什么问题?我正在使用 Apache Tomcat 7,并使用了以下 3 个 jar:-bootstrap.jar、-tomcat-juli.jar 和 -JRE 系统库 [jre7]。是否缺少另一个 JAR?问题出在哪里?
最佳答案
本地化日志:从不是一个不错的选择。
Caused by: java.lang.IllegalArgumentException: El mapeo de filtro especifica un nombre desconocido de filtro struts2
又名
Caused by: java.lang.IllegalArgumentException: Filter mapping specifies an unknown filter name struts2
告诉您问题出在 web.xml
中的 Struts 过滤器配置中,很可能是你的 <filter-name>
在 <filter>
中指定不同于 <filter-name>
在 <filter-mapping>
中指定.
要修复它,请在您的 web.xml 中使用以下配置:
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
关于eclipse - java.lang.IllegalArgumentException : El mapeo de filtro especifica un nombre desconocido de filtro struts2 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24912769/
Caused by: java.lang.IllegalArgumentException: El mapeo de filtro especifica un nombre desconocido d
我是一名优秀的程序员,十分优秀!