首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

The content of element type "package" must match .

2012-10-27 
The content of element type package must match ....开发过程当中出现了以下错误,“The content of ele

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>

热点排行