cvc-id.3: A field of identity constraint 'web-common-filter-name-uniqueness' matched element 'web-app', but this element does not have a simple type.出现这个错误怎么回事?
你使用的Struts是什么版本的,如果是2.3版本的,你按照老师的敲应该没有问题。如果是2.5版本的,我给你如下几个提醒:
(1)在web.xml中加载struts2过滤器时,应该是:
<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
(2)Tomcat无法正常启动,抛出异常:java.lang.NoClassDefFoundError: Lorg/apache/logging/log4j/Logger;
是因为缺少log4j-api-2.7.jar包,将包导入项目中就可以了。
(3)在struts.xml中使用通配符时,编译没有问题,但浏览器访问抛出异常:Struts has detected an unhandled exception:
Message:There is no Action mapped for namespace [/] and action name [user_login] associated with context path [/shop].
为了提高安全性,内部会验证是否允许访问该方法,所以要在struts.xml文件中的Action标签里面加上:
<allowed-methods>方法名1,方法名2…</allowed-methods>
你把filter配置完试试?