복붙노트

[SPRING] 스프링 빈에서 세션 범위 사용하기

SPRING

스프링 빈에서 세션 범위 사용하기

뷰에는 JSF 2를 사용하고 비즈니스 로직에는 Spring을 사용합니다. 주석 (@Scope ( "session"))을 사용하여 스프링 빈 중 하나에 세션 범위를 설정하려고하는데이 예외가 발생합니다.

    SEVERE: Context initialization failed
    org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'handleFiles': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private creazione.util.FTPOperations creazione.components.HandleOldFiles.operations; 
nested exception is org.springframework.beans.factory.BeanCreationException: 
Error creating bean with name 'ftpOperations': Scope 'session' is not active for the current thread; consider defining a scoped proxy for this bean if you intend to refer to it from a singleton; 
nested exception is java.lang.IllegalStateException: No thread-bound request found: Are you referring to request attributes outside of an actual web request, or processing a request outside of the originally receiving thread? 
If you are actually operating within a web request and still receive this message, your code is probably running outside of DispatcherServlet/DispatcherPortlet: In this case, use RequestContextListener or RequestContextFilter to expose the current request.

RequestContextListener에 대해 알고 있습니다. 내 web.xml에 있습니다. RequestContextFilter도 추가했습니다.

<listener>
        <listener-class>
            org.springframework.web.context.ContextLoaderListener
        </listener-class>
    </listener>
    <listener>
        <listener-class>
            org.springframework.web.context.request.RequestContextListener
        </listener-class>
    </listener>

    <filter>
        <filter-name>requestContextFilter</filter-name>
        <filter-class>org.springframework.web.filter.RequestContextFilter</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>requestContextFilter</filter-name>
        <url-pattern>/*</url-pattern>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>INCLUDE</dispatcher>
        <dispatcher>FORWARD</dispatcher>
    </filter-mapping>

아무것도 작동하는 것 같지 않습니다. 내가 뭘 잘못하고 있죠? 고맙습니다!

해결법

  1. ==============================

    1.aop : scoped-proxy를 사용하여 세션으로 주입해야하는 빈을 정의하십시오.

    aop : scoped-proxy를 사용하여 세션으로 주입해야하는 빈을 정의하십시오.

    <bean id="ftpOperations" class="..." scope="session">
        <aop:scoped-proxy/>
    </bean>
    

    관련 네임 스페이스가 아직없는 경우 추가합니다.

    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:aop="http://www.springframework.org/schema/aop"
        ...
    xsi:schemaLocation="
            http://www.springframework.org/schema/aop 
            http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
            ...
    
  2. ==============================

    2.주석 기반 구성을 사용하는 경우 기본 구성 XML 태그를 다음과 같이 변경하십시오.

    주석 기반 구성을 사용하는 경우 기본 구성 XML 태그를 다음과 같이 변경하십시오.

    <context:component-scan base-package="my.package"/>
    

    <context:component-scan base-package="my.package" scoped-proxy="targetClass" />
    

    또한 주석을 통해 프록시 작업을위한 클래스를 표시 할 수도 있습니다.

    @Component
    @Scope(value = "session", proxyMode = ScopedProxyMode.TARGET_CLASS)
    

    나를 위해 일하는이. 4.12 Java를 사용하여 클래스 패스 스캐닝, 관리되는 구성 요소 및 쓰기 구성

    또한 컨텍스트 xml 구성을 통해 bean을 작성하는 경우이 경우에 대한 또 다른 예가 있습니다.

    <bean id="somebean" class="com.package.beans" scope="session">
        <aop:scoped-proxy/>
    </bean>
    
  3. from https://stackoverflow.com/questions/7598412/using-session-scope-in-spring-beans by cc-by-sa and MIT license