我正在使用 Spring 管理的 JSF bean,现在我必须使用注释标签 Ex.@scope of spring 或 JSF 吗?
我注意到 @ViewScoped 是 JSF 注释不起作用并且仍然表现为请求范围?
我正在使用 Spring 管理的 JSF bean,现在我必须使用注释标签 Ex.@scope of spring 或 JSF 吗?
我注意到 @ViewScoped 是 JSF 注释不起作用并且仍然表现为请求范围?
如果您使用org.springframework.web.jsf.el.SpringBeanFacesELResolver
的是 Spring + JSF 集成,那么您需要使用org.springframework.context.annotation.Scope
注释标记范围。
阅读本文:本文信息:http ://www.beyondjava.net/blog/integrate-jsf-2-spring-3-nicely/
我这样做了:
像这样为 JSF 支持 bean 定义一个抽象超类:
public abstract class AutowireableManagedBean {
protected Logger logger = LoggerFactory.getLogger(getClass());
protected AutowireCapableBeanFactory ctx;
@PostConstruct
protected void init() {
logger.debug("init");
ctx = WebApplicationContextUtils
.getWebApplicationContext(
(ServletContext) FacesContext.getCurrentInstance()
.getExternalContext().getContext())
.getAutowireCapableBeanFactory();
// The following line does the magic
ctx.autowireBean(this);
}
...
}
然后,让您的支持 bean 扩展该超类,您将能够自动装配 Spring bean 并使用 JSF 特定的视图范围:
@ManagedBean
@ViewScoped
public class MyBackingBean extends AutowireableManagedBean {
@Autowired
private MyDao myDao;