I have two backbeans, one to retrieve datas in a ui:repeat and one to perform an action.
When my page is rendered, if I perform an action with the second backbean, the first is called (initialized) even if I use an ajax action with Richfaces 4. It is not the case if I don't use a repeat component. It's annoying that the first bean is called with a repeat element.
Here my code :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<h:head>
</h:head>
<h:body>
<h:form>
<ui:repeat var="currentValue" value="#{test_form_backBean_1.testSimpleModels}">
#{currentValue.name}
<br />
</ui:repeat>
<a4j:commandButton value="Tester" actionListener="#{test_form_backBean_2.test}" execute="@this" render="@this">
</a4j:commandButton>
</h:form>
</h:body>
</html>
My first bean :
@Named("test_form_backBean_1")
@RequestScoped
public class Test_form_backBean_1 {
private static final Logger logger = Logger.getLogger(Test_form_backBean_1.class);
private List<Test_Simple_Model> testSimpleModels;
@PostConstruct
public void init() {
if (logger.isTraceEnabled())
logger.trace("Initialisation de Test_form_backBean_1.");
testSimpleModels = new ArrayList<Test_Simple_Model>();
testSimpleModels.add(new Test_Simple_Model(1L, "name_1"));
testSimpleModels.add(new Test_Simple_Model(2L, "name_2"));
testSimpleModels.add(new Test_Simple_Model(3L, "name_3"));
testSimpleModels.add(new Test_Simple_Model(4L, "name_4"));
}
public List<Test_Simple_Model> getTestSimpleModels() {
logger.trace("getTestSimpleModels() : appel.");
return testSimpleModels;
}
public void setTestSimpleModels(List<Test_Simple_Model> testSimpleModels) {
logger.trace("setTestSimpleModels() : appel.");
this.testSimpleModels = testSimpleModels;
}
}
The second :
@Named("test_form_backBean_2")
@RequestScoped
public class Test_form_backBean_2 {
private static final Logger logger = Logger.getLogger(Test_form_backBean_2.class);
@PostConstruct
public void init() {
logger.trace("Initialisation de Test_form_backBean_2.");
}
public void test() {
logger.trace("test() : appel de la fonction de test.");
}
}
Thanks in advance for your help.