我正在使用 JSF 2.0 框架,我需要帮助。说得尽可能简单,我需要的是获取用户username
和 id 并将其显示在我正在构建的应用程序中。
这是我的 UserBean 类:
@ManagedBean
@SessionScope
public class UserBean implements Serializable {
private static final long serialVersionUID = 1L;
private int id;
private String username;
private String password;
//getter and setter methods
在index.xhtml
页面上,用户需要输入用户名和密码才能登录(比较数据库中的值)。当他这样做时,我想在下一页上输出他的用户名和 ID,并在整个应用程序中跟踪它。