为应用指定多个配置文件

/*为应用指定多个配置文件

如果只是使用一个配置文件,那么将使struts.xml配置文件变得非常臃肿,不利于可读性

所以要有多个配置文件的存在,以模块划分配置文件
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">

<struts>
    <include file="department.xml"/>
    <include file="employee.xml"/>
</struts>


为应用指定多个配置文件_第1张图片

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