当我通过struts2时,我遇到了一个典型的问题。
问题是,我可以将struts.xml
文件的名称更改为其他内容并使其有效吗?
答案 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配置。