struts2 引出多个配置文件

struts2 引入多个配置文件struts2默认的配置文件是在src目录下面的struts.xml文件??1、在web.xml文件中添加

struts2 引入多个配置文件

struts2默认的配置文件是在src目录下面的struts.xml文件

?

?

1、在web.xml文件中添加多个配置文件

?

<struts>          ... ...       <include file="config/struts-*.xml"></include>    </struts> 

?

?

?

?

?

?