Ok so after several tests, it actually seems the problem comes from my
managedBean.
I've got a managedBean named catalog:
@ManagedBean
@SessionScoped
public class Catalog
And I call it in my view:
...action="#{catalog.prev}"...
But it's null. I've added a trace in my Catalog.java:
public String prev() {
System.out.println("Call of prev function");
reset(false);
getPagingInfo().previousPage();
return "list";
}
But nothing appears in the catalina.out.
Also, you told me that there is a bug fixed on the trunk. I've tried, same
issue.
--
View this message in context:
http://openejb.979440.n4.nabble.com/Deploying-Pet-catalog-tp4655421p4655527.html
Sent from the OpenEJB User mailing list archive at Nabble.com.