如果我改变struts.xml路径,struts2-convention和struts2-config-browser-plugin就无法工作

时间:2013-07-02 08:13:33

标签: java struts2 struts2-convention-plugin struts2-config-browser

如果我在web.xml中更改默认的struts.xml路径,我在struts2中使用struts2-convention-plugin和struts2-config-browser-plugin:

<filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    <init-param> 
        <param-name>config</param-name>
        <param-value>struts-default.xml,struts-plugin.xml,struts/struts.xml</param-value> 
    </init-param> 
 </filter>

他们不能再工作,为什么?

1 个答案:

答案 0 :(得分:0)

struts/struts.xml用于查找Struts配置文件,但由于它不存在而无法打开它。请改用struts.xml并将其放在类路径上。