我可以将struts.xml文件更改为其他任何内容吗?

时间:2014-04-11 13:48:43

标签: xml struts2 xml-configuration

当我通过struts2时,我遇到了一个典型的问题。 问题是,我可以将struts.xml文件的名称更改为其他内容并使其有效吗?

2 个答案:

答案 0 :(得分:3)

您可以使用web.xml

执行此操作
<filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    <init-param>
        <param-name>config</param-name>
        <param-value>my-new-struts-config-file.xml,struts-plugin.xml,struts.xml</param-value>
    </init-param>
</filter>

此外,如果您使用struts.properties,您可以执行以下操作:

struts.configuration.files=my-new-struts-config-file.xml,struts-plugin.xml,struts.xml 

答案 1 :(得分:-1)

您无法更改struts.xml的名称。但是,您可以在strtus.xml中命名的几个配置文件中拆分Struts配置。

For more details see this