为Struts2指定多个配置文件

在大部分应用里,随着应用规模的增加,系统中Action的数量也会大量增加导致struts.xml配置文件变的非常臃肿,
为了避免struts.xml文件过于庞大、臃肿、提高Struts.xml文件的可读性,我们可以将一个struts.xml配置文件分解成
多个配置文件,然后在struts.xml文件中包含其他配置文件。


下面的struts.xml通过<include>标签指定多个配置文件
<struts>
<include file="struts-第一个.xml"/>
<include file="struts-第二个.xml"/>
</struts>

你可能感兴趣的:(为Struts2指定多个配置文件)