我有registration.xhtml的按钮:
<h:button value="Register" action="#{registrationBean.saveUser}" ajax="false"></h:button>
registrationBean:
@ManagedBean(name = "registrationBean")
@SessionScoped
public class RegistrationBean {
...
public String saveUser() {
personService.savePerson(persons);
return "user/user";
}
它不起作用。 Link on git
请帮忙