2

我使用Spring 注释在 Web 应用程序上工作,以注入我的控制器和服务。在应用程序中,我有用户在处理项目,但我需要确保一个项目一次只能由一个用户编辑,所以我在数据库的“项目”表中有一个属性,如果项目打开并且通过谁。

我需要添加一个 HTTPSessionListener 以便能够在用户编辑项目断开连接时“关闭”项目。这意味着在“sessionDestroyed”事件中,我想调用我的 DAO 服务来更新数据库中的项目。唯一的问题是这个服务是由Spring注入的,我无法得到它......

我尝试在我的 HTTPSessionListener 中使用 @Autowired 但它不起作用,我尝试在这个解决方案中这样做(Spring – 如何在会话侦听器中进行依赖注入)但我得到了 WebApplicationContext 的 nullPointerException ...

我的 web.xml :

 <?xml version="1.0" encoding="UTF-8"?>
 <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:jsp="http://java.sun.com/xml/ns/javaee/jsp"
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_3_0.xsd"
id="WebApp_ID" version="3.0">

<!-- jsp config => automatic inclusions in all jsp files -->
<jsp-config>
    <jsp-property-group>
        <url-pattern>*.jsp</url-pattern>
        <include-prelude>taglibs.jsp</include-prelude>
        <include-prelude>setLanguage.jsp</include-prelude>
    </jsp-property-group>
</jsp-config>
<display-name>MEANS</display-name>

<!--Spring dispatcher servlet -->
<servlet>
    <servlet-name>dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>*.do</url-pattern><!-- detect all urls ending with ".do" -->
</servlet-mapping>

<!-- The welcome files -->
<welcome-file-list>
    <welcome-file>connection.jsp</welcome-file>
</welcome-file-list>
<session-config>
    <session-timeout>30</session-timeout><!-- the session is automatically disconnected after 30 min of inactivity -->
</session-config>
<listener>
    <listener-class>myPackages.listener.MySessionListener</listener-class>
</listener>

和 dispatcher-servlet.xml :

 <?xml version="1.0" encoding="UTF-8"?>
 <beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:mvc="http://www.springframework.org/schema/mvc"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:p="http://www.springframework.org/schema/p"
   xmlns:context="http://www.springframework.org/schema/context"
   xsi:schemaLocation="http://www.springframework.org/schema/beans 
   http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
   http://www.springframework.org/schema/mvc
   http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
   http://www.springframework.org/schema/context 
   http://www.springframework.org/schema/context/spring-context.xsd">


<!-- Spring MVC Support for annotations (JSR-303) -->
<mvc:annotation-driven/>

<!-- Spring View resolver => find the jsps -->
<bean id="viewResolver"
      class="org.springframework.web.servlet.view.InternalResourceViewResolver"
      p:suffix=".jsp" />

<!--  Spring info : what packages to scan for detecting annotations -->
<context:component-scan base-package="myPackages"/>

所以我需要你的帮助......有人知道如何将 Spring Service 注入我的 HTTPSessionListener 吗?

在此先感谢您的帮助!

4

1 回答 1

3

一种选择(从设计的角度来看可能是最好的选择)是创建一个范围 beansession(不要忘记声明RequestContextListener)并将与会话生命周期相关联的逻辑放入其中。当 session 被销毁时,Spring 会自动调用它的销毁方法(用 注释@PreDestroy或配置为)。destroy-method

您注入会话侦听器的方法会导致问题,因为您只有DispatcherServlet、没有ContextLoaderListenerWebApplicationContextUtils也不能获得与DispatcherServlet. 如果您选择遵循该方法,您应该创建一个根应用程序上下文并将一些 bean 提取到其中,然后您将能够通过会话侦听器访问它WebApplicationContextUtils

于 2012-07-30T11:41:27.187 回答