改变struts.xml的位置引起的Unable to locate configuratio...

    我用maven建立的struts2项目,由于struts.xml的文件不止一个,所以我不想将它直接放在 resource   目录下,于是,我在resource目录下建立了一个struts的文件夹

    改变struts.xml的位置引起的Unable to locate configuratio...

    启动tomcat后报Unable to locate configuration files of the name struts.xml的warming,修改web.xml文件后,问题解决:
    

    <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>
    主要是,struts2默认从src目录下加载文件,而我们的文件在struts文件夹下,加上就好了。

你可能感兴趣的:(struts,struts2)