0

请参考问题 - 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 注入对象的任何地方,它都会给我空指针异常。

4

1 回答 1

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 文件是否已正确初始化。您可以分析应用程序启动时打印的堆栈跟踪。

于 2013-03-06T06:16:53.950 回答