无法通过web.xml中的ContextLoaderListener初始化spring

时间:2013-03-06 03:57:58

标签: java spring hibernate

请参阅问题 - Can instantiate hibernate session Factory directly but cannot do it through spring

在那个问题中,我根本无法启动弹簧。有人建议我应该使用ApplicationContext启动spring之后解决了问题。但是这种方法要求我每次必须获取实例时都使用ApplicationContext然后使用bean。我想要的是,春天将所有的豆子注入他们的位置,我可以在任何我想要的地方使用它们。所以我将它放入我的web.xml

<listener> <!-- For struts2-spring to work -->
    <listener-class>
        org.springframework.web.context.ContextLoaderListener
    </listener-class>
</listener>  

但这对我来说根本不起作用。它在调用bean注入对象的地方给出了空指针异常。

1 个答案:

答案 0 :(得分:0)

标准的web.xml文件应该是这样的:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

<!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>

<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- Processes application requests -->
<servlet>
    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
    <servlet-name>appServlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

</web-app>

将您的web xml版本与此版本进行比较,看看包含这些bean的xml文件是否正确初始化。您可以分析应用程序启动时打印的堆栈跟踪。