我看到包含多个表单的页面中的不同行为。
这是我的支持bean:
import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
@ManagedBean
@ViewScoped
public class MultiFormBean
{
String inputText1 = "";
String inputText2 = "";
@PostConstruct
public void initializeBean(){
System.out.println("PostConstruct Called ------------------");
}
public String getInputText1()
{
return inputText1;
}
public void setInputText1(String inputText1)
{
this.inputText1 = inputText1;
}
public String getInputText2()
{
return inputText2;
}
public void setInputText2(String inputText2)
{
this.inputText2 = inputText2;
}
public void doSubmit1() {
inputText2 = inputText1;
}
public void doSubmit2() {
inputText1 = inputText2;
}
}
当我使用以下xhtml时,多次单击Submit1和Submit2将不会多次调用@PostConstruct:
<h:body>
<h:form id="firstForm" prependId="false">
<h:panelGroup layout="block" id="renderTarget1"/>
<h:inputText id="first_input" value="#{multiFormBean.inputText1}"/>
<h:commandButton id="click1" action="#{multiFormBean.doSubmit1}" value="submit1" type="submit"
onclick="javascript:jsf.ajax.request(this, event, {execute:'firstForm', render:'renderTarget1 secondForm'}); return false;">
</h:commandButton>
</h:form>
<h:form id="secondForm" prependId="false">
<h:panelGroup layout="block" id="renderTarget2"/>
<h:inputText id="second_input" value="#{multiFormBean.inputText2}"/>
<h:commandButton id="click2" action="#{multiFormBean.doSubmit2}" value="submit2" type="submit"
onclick="javascript:jsf.ajax.request(this, event, {execute:'secondForm', render:'renderTarget2 firstForm'}); return false;">
</h:commandButton>
</h:form>
</h:body>
但是下面的xhtml会不止一次调用@PostConstruct:
<h:body>
<h:form id="firstForm" prependId="false">
<h:panelGroup layout="block" id="renderTarget1"/>
<h:inputText id="first_input" value="#{multiFormBean.inputText1}"/>
<a4j:commandButton id="click1" action="#{multiFormBean.doSubmit1}" value="submit1" type="submit" execute="@form" render="renderTarget1,secondForm"/>
</h:form>
<h:form id="secondForm" prependId="false">
<h:panelGroup layout="block" id="renderTarget2"/>
<h:inputText id="second_input" value="#{multiFormBean.inputText2}"/>
<a4j:commandButton id="click2" action="#{multiFormBean.doSubmit2}" value="submit2" type="submit" execute="@form" render="renderTarget2,firstForm"/>
</h:form>
</h:body>
请任何人帮助我使用<a4j:commandButton>
代替<h:commandButton>
我也看到我无法用a4j commandButton调用方法doSubmit2()
答案 0 :(得分:0)
我认为这里的问题出现在JSF2和Richfaces4中的bug中。从4版本开始,Richfaces开始使用JSF嵌入式ajax功能。在页面上使用带有ajax请求的多个表单存在一个错误。 richfaces使用当前呈现的视图状态的id呈现特殊隐藏输入的问题。渲染新视图时会更改此ID。并且每次请求都会提交它以表明它属于某个特定视图。因此,当您在第一次ajax请求后在同一页面上有多个表单时,视图状态会出错,并且第二次无法再次提交。有时行为看起来非常非常奇怪,没有逻辑描述。
PostConstruct被调用两次,因为服务器认为两个请求属于不同的视图(视图状态不是sumbitted),并且只要bean是视图范围,它就会被创建两次。单击aroung之后,ajax可以完全停止使用,因为服务器无法识别视图(可能是您在无法单击第二个提交按钮时看到的内容)。
首先,我建议您使用最新版本的JSF和Richfaces。这个bug(以及更多)可能已经在那里修复了。