BAEL-1414 Learn to Fully Leverage Java Server Faces (#3446)

This commit is contained in:
Sergey Petunin
2018-01-18 11:50:38 +01:00
committed by Eugen
parent 20551052e1
commit 1d29f9be8b
11 changed files with 263 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.stackify.deepjsf;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
@ManagedBean
@RequestScoped
public class UserControllerBean {
public String register() {
return "register-success";
}
}