我的项目正在使用JSF2.0和CDI。对于一个页面,我希望我的支持bean匹配页面的生命周期。 @ViewScoped看起来非常合适,但它不是CDI的一部分,然后使我们的解决方案不一致。然后我的下一个选项是CDI @ConversationScoped。在我看来,标记对话边界的唯一方法是通过conversation.begin和conversation.end的程序方式(我使用了Seam 2.x,你可以使用注释来标记对话边界)。我的页面采用全局导航的通用布局,这意味着有“无限制”的方式离开我的页面。如何以用户可能选择的方式确保对话结束(例如,单击完全超出我的支持bean控制范围的全局导航选项)?我希望解决方案不会将代码传播到其他模块;如果这是不可避免的,我希望它可以以交叉方式(AOP)实施。
答案 0 :(得分:4)
这可以通过自定义ConfigurableNavigationHandler
实现。
实施JSF NavigationHandler
public class NavigationHandlerTest extends ConfigurableNavigationHandler {
private NavigationHandlerTest concreteHandler;
public NavigationHandlerTest(NavigationHandler concreteHandler) {
this.concreteHandler = concreteHandler;
}
@Override
public void handleNavigation(FacesContext context, String fromAction, String outcome)
{
//here, check where navigation is coming from and based on that, retrieve the CDI bean and kill the conversation
if(fromAction.equals("someAction"){
BeanManager theBeanManager = getBeanManager(context);
Bean bean = theBeanManager.getBeans("yourCDIBean").iterator().next()
CreationalContext ctx = theBeanManager.createCreationalContext(bean);
MyBeanType o = theBeanManager.getReference(bean, bean.getClass(), ctx); //retrieve the bean from the manager by name. You're guaranteed to retrieve only one of the same name;
o.getConversation.end(); //end the conversation from the bean reference
}
//proceed with normal navigation
concreteHandler.handleNavigation(context, fromAction, outcome);
}
//This method provides access to the cdi bean manager. You need it to be able to
//gain access to the cdi bean and from that to the injected conversation instance
public BeanManager getBeanManager(FacesContext facesContext){
BeanManager cdiBeanManager = (BeanManager)((ServletContext) facesContext.getExternalContext().getContext()).getAttribute("javax.enterprise.inject.spi.BeanManager");
return cdiBeanManager;
}
}
在 faces-config.xml
中注册自定义导航处理程序 <application>
<navigation-handler>com.foo.bar.NavigationHandlerTest</navigation-handler>
</application>
这种方法是集中的,微创的
答案 1 :(得分:0)
据我所知 - 你做不到。几乎不可能(很难)确定在JSF中是否在当前或新选项卡中打开了链接(对于需要保持对话活动的新选项)。
但好消息 - 会话将在10分钟不活动后自动关闭(默认情况下)。