首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

批改struts.xml位置

2012-10-07 
修改struts.xml位置filterfilter-namestruts2/filter-namefilter-classorg.apache.struts2.dispat

修改struts.xml位置
<filter>
  <filter-name>struts2</filter-name>
  <filter-class>
   org.apache.struts2.dispatcher.FilterDispatcher
  </filter-class>
  <init-param>
   <param-name>config</param-name>
   <param-value>struts-default.xml,struts-plugin.xml,/WEB-INF/struts.xml</param-value>
  </init-param>
</filter>
<filter-mapping>
  <filter-name>struts2</filter-name>
  <url-pattern>/*</url-pattern>
</filter-mapping>

相信大家一看就明白了,因为struts-default.xml中定义了struts-default这个包

另外,为什么参数的名字叫config,而且三个配置文件名之间可以用“,”号来分隔呢,总不能瞎猜吧。

是这样的,FilterDispatcher这个Filter的init()方法中,需要初始化一个叫做Dispacher的类,源码如下:

    /**

    * Initializes the filter by creating a default dispatcher

    * and setting the default packages for static resources.

    *

    * @param filterConfig The filter configuration

    */

    public void init(FilterConfig filterConfig) throws ServletException {

        try {

            this.filterConfig = filterConfig;

            initLogging();

            dispatcher = createDispatcher(filterConfig);

            dispatcher.init();

            dispatcher.getContainer().inject(this);

            staticResourceLoader.setHostConfig(new FilterHostConfig(filterConfig));

        } finally {

            ActionContext.setContext(null);

        }

    }

画红线的部分表明这个方法的主要作用就是初始化一个Dispacher类。

好,现在进入这个类看看。其中有这么个常量:

private static final String DEFAULT_CONFIGURATION_PATHS = "struts-default.xml,struts-plugin.xml,struts.xml";

再看该类里边的这个方法:

private void init_TraditionalXmlConfigurations() {

        String configPaths = initParams.get("config");

        if (configPaths == null) {

            configPaths = DEFAULT_CONFIGURATION_PATHS;

        }

        String[] files = configPaths.split("\\s*[,]\\s*");

        for (String file : files) {

            if (file.endsWith(".xml")) {

                if ("xwork.xml".equals(file)) {

                    configurationManager.addConfigurationProvider(new XmlConfigurationProvider(file, false));

                } else {

                    configurationManager.addConfigurationProvider(new StrutsXmlConfigurationProvider(file, false, servletContext));

                }

            } else {

                throw new IllegalArgumentException("Invalid configuration file name");

            }

        }

    }

大家只看我用特殊颜色标识出来的内容就全都明白了吧。

热点排行