我将PrimeFaces版本更新为6.2。除了CDI对话管理的问题外,一切都很顺利 更新后,似乎会在第一次访问页面时初始化对话,但在第一次调用控制器之前它就丢失了。实际上,当访问页面时,新对话已被初始化(这是正确的)。但是在第一次调用控制器方法之后,初始化了一个新的会话,丢失了前一个会话及其所有参数值。以下呼叫照常保持最后一次通话。
使用PrimeFaces 6.1(和之前的版本),这种情况从未发生过。
这是一个错误还是缺乏我的?
访问页面后,显示的文字为"会话ID = 1"的初始值。
通过单击按钮,显示的文本将更改为"值设置为会话ID = 2"。
以下点击保留了cid = 2.
控制器
@Named
@ConversationScoped
@LoggedIn
public class TestController implements Serializable {
static final long serialVersionUID = 69823746898775L;
@Inject protected Conversation conversation;
@Inject protected FacesContext facesContext;
rivate String outputValue;
@PostConstruct
public void init() throws IOException {
if (conversation.isTransient()) {
conversation.begin();
conversation.setTimeout(1800000);
}
outputValue = "Init value with conversation id = " + conversation.getId();
}
public void handleCall() {
outputValue = "Value set with conversation id = " + conversation.getId();
}
public String getOutputValue() {
return outputValue;
}
public void setOutputValue(String outputValue) {
this.outputValue = outputValue;
}
}
JSF页面
<?xml version="1.0" encoding="UTF-8"?>
<f:view xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui" contentType="text/html">
<html>
<h:head>
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="shortcut icon" type='image/x-icon' href='favicon.ico'/>
<ui:insert name="head" />
</h:head>
<h:body onload="javascript: if ('#{param.sessionExpired}'.length != 0) PF('loginDialog').show()">
<h:form id="testForm">
<p:commandButton action="#{testController.handleCall()}" value="Make a call" update="@form" />
<h:outputText value="#{testController.outputValue}" />
</h:form>
</h:body>
</html>
</f:view>