指定配置文件
<include file="xml"></include>
这个要注意
多个配置文件, 相当于按功能模块划分的xml
可以通过include 进行加载
@Struts2---指定多个配置文件
1.如果有很多个Action的配置文件,则需要在struts.xml中使用<include file="fileName.xml"/>来包含其他的配置文件
2.struts文件中添加<constant name="struts.i18n.encoding" value="UTF-8"></constant>以防乱码问题的出现
3.配置文件和struts.xml的格式如下:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"> <struts> ... </struts>
1、如果有很多个Action的配置文件,则需要在struts.xml中使用<include file="fileName.xml"/>来包含其他的配置文件 2、struts文件中添加<constant name="struts.i18n.encoding" value="UTF-8"></constant>以防乱码问题的出现 配置文件和struts.xml的格式如下: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"> <struts> ... </struts>
<constant name="struts.i18n.encoding" value="UTF-8"></constant>
指定多个配置文件
指定多个配置文件,可以新建一个.xml文件,然后把原文件里的<packge>......</packge>代码剪切到新建文件中,原文件里面写<include>........</inclede>