Struts 2 + Spring和contextConfigLocation

时间:2013-06-18 18:56:12

标签: spring struts2 web.xml

我正在尝试集成和配置Struts 2 + Spring并将ContextLoaderListener监听器类注册为参数contextConfigLocation我正在尝试编写SpringBeans.xml而不是默认的applicationContext.xml。但问题是这个SpringBeans.xml位于根目录下的src目录..而且我不知道如何编写param-value .. /src/SpringBeans.xml ...请帮助...

2 个答案:

答案 0 :(得分:0)

不会编写src/SpringBeans.xml,因为您的源目录不是可部署的工件。

你应该把配置文件放在:

  • 在类路径上(IMO通常更可取)
  • 在WEB-INF中(防止直接客户端访问)

如果它在类路径上,如何部署它取决于您的构建/打包系统。

例如,在Eclipse中,您可以将其保留在src的根目录中。如果你正在使用Maven,它应该是src/main/resources的根。如果它不在根目录,请相应地修改下面的内容。

<context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath:SpringBeans.xml</param-value>
</context-param>

否则提供app相对路径,例如

<context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>/META-INF/SpringBeans.xml</param-value>
</context-param>

(或在WEB-INF中,或在您放置它的任何地方。)

答案 1 :(得分:0)

尝试以下代码,

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
    <display-name>Example</display-name>
    <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>struts2</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
            /WEB-INF/classes/SpringBeans.xml
        </param-value>
    </context-param>

    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>

如果您使用的是将SpringBeans.xml放在src中并且使用的是ANt版本,那么它将被放置到WEB-INF / classes文件夹中。但是你放在另一个文件夹中说/ config然后你编写了build.xml来在部署时将* .xml文件放到WEB-INF / classes文件夹中。