作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 session 范围的 bean,ComponenteM,它被注入(inject)到请求范围的 bean,ComponenteC 中。
@Named
@RequestScoped
public class ComponenteC implements Serializable {
@Inject
ComponenteM componenteM;
}
public void beginConversation() {
if (conversation.isTransient()) {
conversation.setTimeout(60 * 60 * 1000);
conversation.begin();
}
}
最佳答案
我最近在应用程序中遇到了同样的问题。元素的异步加载工作正常,除了带有@ConversationScoped 的一页。
我的解决方案是简单地使这一页的请求同步。
在此页面上,元素使用 PrimeFaces “deferred”参数异步加载,如下所示:
<p:outputPanel id="asyncMenu" deferred="true">...</p:outputPanel>
<p:outputPanel id="asyncMenu" deferred="#{empty param.cid ? true : false}">...</p:outputPanel>
关于CDI 对话 Bean - BusyConversationException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31939533/
我有一个 session 范围的 bean,ComponenteM,它被注入(inject)到请求范围的 bean,ComponenteC 中。 @Named @RequestScoped publi
我是一名优秀的程序员,十分优秀!