The content of element type "struts-config" must match "(display-name?,descr

配置struts-config.xml 时,出了异常信息:

The content of element type "struts-config" must match "(display-name?,description?,form-beans?,global-exceptions?,global-forwards?,action-mappings?,controller?,message-resources*,plug-in*)".

解决办法:
struts-config.xml 中的元素顺序有严格的要求,它们的位置不能错位,不然就会报错.

复制代码
<?xml version="1.0" encoding="UTF-8"?>  
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "http://struts.apache.org/dtds/struts-config_1_3.dtd">  
<struts-config>  
        <form-beans>  
        </form-beans>  
  
        <global-exceptions>  
        </global-exceptions>  
  
        <global-forwards>  
        </global-forwards>  
  
        <action-mappings>  
            <action path="/index" type="org.apache.struts.actions.ForwardAction" parameter="index-tiles"></action>  
        </action-mappings>  
  
        <controller>  
            <set-property property="processorClass" value="org.apache.struts.tiles.TilesRequestProcessor"/>  
        </controller>  
  
        <message-resources parameter="com.test.struts.ApplicationResources" />  
  
        <plug-in className="org.apache.struts.tiles.TilesPlugin">  
            <set-property value="/WEB-INF/tiles/tiles-defs.xml" property="definitions-config"></set-property>  
        </plug-in>  
</struts-config>  
复制代码

注意: 
struts-config.xml必须按照 display-name --> description --> form-beans --> global-exceptions --> global-forwards --> action-mappings --> controller --> message-resources --> plug-in 的顺序书写 .

posted @   dafa168  阅读(811)  评论(0编辑  收藏  举报
编辑推荐:
· .NET Core GC压缩(compact_phase)底层原理浅谈
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
阅读排行:
· Sdcb Chats 技术博客:数据库 ID 选型的曲折之路 - 从 Guid 到自增 ID,再到
· .NET Core GC压缩(compact_phase)底层原理浅谈
· Winform-耗时操作导致界面渲染滞后
· Phi小模型开发教程:C#使用本地模型Phi视觉模型分析图像,实现图片分类、搜索等功能
· 语音处理 开源项目 EchoSharp
点击右上角即可分享
微信分享提示