概述
- 随着应用规模的增加,系统中Action的数量也会大量增加,导致struts.xml配置文件变得非常臃肿
- 为了避免struts.xml文件过于庞大、臃肿,提高Struts.xml文件的可读性,我们可以将一个struts.xml配置文件分解成多个配置文件
- 然后再struts.xml文件中包含其他配置文件
操作
-
通过<include>元素指定多个配置文件
<struts> <include file="department.xml"/> 一个模块使用一个配置文件 <include file="employee.xml"/> </struts>
-
通过这种方式,可以将struts2的Action按模块添加到多个配置文件中
网友评论