为什么会话bean在启动时创建为Singleton bean,而不是通过创建会话创建的?

时间:2018-04-25 11:34:29

标签: spring

我正在使用Spring 5,JSF 2.3,Primefaces,CDI,Hibernate的Web应用程序。

为什么弹簧管理的会话bean在启动时创建为Singleton bean,为什么不能通过创建会话来创建它?

import org.springframework.context.annotation.Scope;
// or import org.springframework.web.context.annotation.SessionScope;
// or import javax.enterprise.context.SessionScoped;

import javax.annotation.PostConstruct;
import javax.inject.Inject;
import javax.inject.Named;

@Named("testSetting")
@Scope("session")
// or @SessionScope
// or @SessionScoped
public class TestSettingsBacking implements Serializable {
...
}

0 个答案:

没有答案