当我从一页切换到另一页时,我发现了一个奇怪的行为。
我正在使用 CDI、Jsf 2.2 API 2.2.8、Omnifaces 2.2、Primefaces 5.2、wildfly 8.2。
大多数控制器和页面都按预期工作,但其中一些控制器和页面在我访问页面时调用方法@PostConstruct,它开始对话,然后,当我离开页面时,再次调用@PostConstruct。我意识到 page.xhtml 中的某些东西是原因,所以我开始寻找它。但无论如何都是一种奇怪的行为。
按照我的代码和一些示例:
使用抽象类方法的控制器,例如 beginconversation() 和 list()
import javax.inject.Named;
import javax.enterprise.context.ConversationScoped;
@Named
@ConversationScoped
public class PromptConfigurationController extends BaseController<PromptConfiguration> implements Serializable {
public PromptConfigurationController() {
super(PromptConfiguration.class);
}
@PostConstruct
public void init() {
list();
loadFilters();
}
}
抽象类
public abstract class BaseController<T extends BaseEntity> {
public void list() {
logger.info("list()");
items = getService().findAll(entityClass);
item = null;
beginConversation();
}
protected void beginConversation() {
logger.info("beginConversation()");
if (conversation != null && conversation.isTransient()) {
conversation.begin();
conversation.setTimeout(CONVERSATION_TIMEOUT);
logger.info("Conversation iniciada: " + conversation.getId());
}
}
}
我发现问题的一些 xhtml 页面和解决方案(当我发现时)是:
错误:
<f:convertDateTime pattern="#{webChatSearchController.dateHelper.getLocalizedDatePattern()}" />
上面的方法只是返回一个模式。
在职的
<f:convertDateTime dateStyle="dd/MM/yyyy" pattern="dd/MM/yyyy" />
错误:
<p:commandButton id="commandButton-active" action="#{satisfactionSurveyController.changeQuestionStatus(true)}" update="form-content" binding="#{satisfactionSurveyController.activeButton}" value="#{bundle['common.active.3.message']}">
在职的:
<p:commandButton id="commandButton-active" action="#{satisfactionSurveyController.changeQuestionStatus(true)}" update="form-content" value="#{bundle['common.active.3.message']}" disabled="#{satisfactionSurveyController.disableActiveButton}">
问题只是“绑定”。
错误:
<p:dataTable id="dataTable-group-email" var="emailMonitor" value="#{emailMonitorController.listEmailGroup}" selectionMode="single" rowKey="#{emailMonitor}" filteredValue="#{emailMonitorController.listEmailGroupFiltered}">
在职的:
<p:dataTable id="dataTable-group-email" var="emailMonitor" value="#{emailMonitorController.listEmailGroup}" selectionMode="single" rowKey="#{emailMonitor}" >
只需删除“filteredValue”即可开始工作。但是没有它,我就无法使用过滤器属性。
导航是由 primefaces 菜单组成的,所有页面都是相同的逻辑:
<p:menuitem id="satisfactionSurvey" action="#{satisfactionSurveyController.listPage}" value="#{bundle[satisfactionSurvey.message']}" ajax="false" immediate="true">
<f:param name="nocid" value="true" />
</p:menuitem>
和方法:
public String listPage() {
return baseViewPath + "/list.xhtml?faces-redirect=true";
}