Spring session-scoped beans (controllers) and references to services, in terms of serialization

前端 未结 6 1103
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-27 12:44
  • a standard case - you have a controller (@Controller) with @Scope(\"session\").
  • classes put in the session usually are expected to i
相关标签:
6条回答
  • 2020-11-27 12:46

    In this presentation (around 1:14) the speaker says that this issue is resolved in spring 3.0 by providing a proxy of non-serializable beans, which obtains an instance from the current application context (on deserialization)

    0 讨论(0)
  • 2020-11-27 12:46

    After trying all the different alternatives suggested all I had to do was add aop:scoped-proxy to my bean definition and it started working.

    <bean id="securityService"
        class="xxx.customer.engagement.service.impl.SecurityContextServiceImpl">
        <aop:scoped-proxy/>
        <property name="identityService" ref="identityService" />
    </bean>
    

    securityService is injected into my managedbean which is view scoped. This seems to work fine. According to spring documentation this is supposed to throw a BeanCreationException since securityService is a singleton. However this does not seems to happen and it works fine. Not sure whether this is a bug or what the side effects would be.

    0 讨论(0)
  • 2020-11-27 12:47

    I would expect to scope controllers as 'singleton', i.e. once per application, rather than in the session.

    Session-scoping is typically used more for storing per-user information or per-user features.

    Normally I just store the 'user' object in the session, and maybe some beans used for authentication or such. That's it.

    Take a look at the spring docs for configuring some user data in session scope, using an aop proxy:

    http://static.springsource.org/spring/docs/2.5.x/reference/beans.html#beans-factory-scopes-other-injection

    Hope that helps

    0 讨论(0)
  • 2020-11-27 12:47

    Serialization of Dynamic-Proxies works well, even between different JVMs, eg. as used for Session-Replication.

    @Configuration public class SpringConfig {
    @Bean 
    @Scope(proxyMode = ScopedProxyMode.INTERFACES) 
    MyService myService() {
        return new MyService();
    }
    .....
    

    You just have to set the id of the ApplicationContext before the context is refreshed (see: org.springframework.beans.factory.support.DefaultListableBeanFactory.setSerializationId(String))

    AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext();
    // all other initialisation part ...
    // before! refresh
    ctx.setId("portal-lasg-appCtx-id");
    // now refresh ..
    ctx.refresh();
    ctx.start();
    

    Works fine on Spring-Version: 4.1.2.RELEASE

    0 讨论(0)
  • 2020-11-27 12:54

    I recently combined JSF with Spring. I use RichFaces and the @KeepAlive feature, which serializes the JSF bean backing the page. There are two ways I have gotten this to work.

    1) Use @Component("session") on the JSF backing bean

    2) Get the bean from ELContext when ever you need it, something like this:

    @SuppressWarnings("unchecked")
    public static <T> T  getBean(String beanName) {
        return (T) FacesContext.getCurrentInstance().getApplication().getELResolver().getValue(FacesContext.getCurrentInstance().getELContext(), null, beanName);
    }
    
    0 讨论(0)
  • 2020-11-27 13:05

    It appears that bounty didn't attract a single answer, so I'll document my limited understanding:

    @Configuration
    public class SpringConfig {
    
        @Bean 
        @Scope(proxyMode = ScopedProxyMode.TARGET_CLASS) 
        MyService myService() {
            return new MyService();
        }
    
        @Bean
        @Scope("request")
        public IndexBean indexBean() {
            return new IndexBean();
        }
    
        @Bean
        @Scope("request")
        public DetailBean detailBean() {
            return new DetailBean();
        }
    }
    
    public class IndexBean implements Serializable {
    
        @Inject MyService myService;
    
        public void doSomething() {
            myService.sayHello();
        }
    }
    
    public class MyService {
        public void sayHello() {
            System.out.println("Hello World!");
        }
    }
    

    Spring will then not inject the naked MyService into IndexBean, but a serializable proxy to it. (I tested that, and it worked).

    However, the spring documentation writes:

    You do not need to use the <aop:scoped-proxy/> in conjunction with beans that are scoped as singletons or prototypes. If you try to create a scoped proxy for a singleton bean, the BeanCreationException is raised.

    At least when using java based configuration, the bean and its proxy can be instantiated just fine, i.e. no Exception is thrown. However, it looks like using scoped proxies to achieve serializability is not the intended use of such proxies. As such I fear Spring might fix that "bug" and prevent the creation of scoped proxies through Java based configuration, too.

    Also, there is a limitation: The class name of the proxy is different after restart of the web application (because the class name of the proxy is based on the hashcode of the advice used to construct it, which in turn depends on the hashCode of an interceptor's class object. Class.hashCode does not override Object.hashCode, which is not stable across restarts). Therefore the serialized sessions can not be used by other VMs or across restarts.

    0 讨论(0)
提交回复
热议问题