The content of element type "package" must match ....
开发过程当中出现了以下错误,“The content of element type "package" must match "(result-types?,interceptors?,default-interceptor-ref?,default-action-ref?,default-class-ref?,global-results?,global-exception-mappings?,action*)". ”,错误的原因就是配置文件没有依据其DTD中定义的ELEMENT顺序进行编写。
原来 <interceptors>必须在紧挨<package name ="test" extends ="struts-default" >
的位置如果,在某个<action>后就会错,正确的如下
<package name ="test" extends ="struts-default" >
<interceptors>
<interceptor name="auth" class="test.AuthorizationInterceptor"></interceptor>
</interceptors>
<action>