The content of element type "struts-config" must match "(display-name?,description?,data-sources?,form-beans?,global-exceptions?,global-forwards?,action-mappings?,controller?,message-resources*,plug-in*)". 是不是配置文件里有 不合规范的节点又或者是 节点<></> 没一一对应注意一个xml文件 读取一般只能一个根节点,如果这样
<a>  
</a>
<b>
</b>
是错的,要多一层包着它
<c>
   <a>  
   </a>
   <b>
   </b>
</c>