记住我使用cookie的功能

时间:2014-06-04 10:13:28

标签: jsf-2 remember-me

我正在尝试使用JSF 2.0实现记住我的功能,而不确定如何实现COOKIES来做到这一点。你能分享一份有效的样本代码吗?

1 个答案:

答案 0 :(得分:1)

编辑:不要在密码中存储密码或用户名!

See this post by BalusC for a better implementation.


我相信这可能会对你有所帮助:

<强> login.xhtml

<?xml version='1.0' encoding='UTF-8' ?>
<!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:body>
   <h:form id="LoginForm">

<h:panelGrid id="lpg" columns="4" >
<h:outputText value="User Id"/> 
<h:inputText id="username" value="#{loginBean.userId}"/>
<h:outputText value=""/>

<h:outputText value="Password"/> 
<h:inputSecret id="password" value="#{loginBean.password}"/>
<h:outputText value=""/>

<h:outputText value=""/>
<h:outputText value=""/>
<h:outputText value=""/>
<h:outputText value=""/>
<h:selectBooleanCheckbox value="#{loginBean.checkBox}" />
<h:outputText value="Remember me" />
<h:outputText value=""/>
<h:outputText value=""/>
<h:commandButton value="Login" action="#{loginBean.doLogin}"/>

</h:form>
</h:body>

</html>

<强> LoginBean.java

public class LoginBean {


private String userId;
private String password;
private boolean checkBox = false;
private String virtualCheck;

    // Setter and getter

    public LoginBean() {
    isChecked();
}

public void isChecked() {
    FacesContext fc = FacesContext.getCurrentInstance();
    Cookie[] cookiesArr = ((HttpServletRequest)(fc.getExternalContext().getRequest())).getCookies();
    if(cookiesArr != null && cookiesArr.length > 0)
        for(int i =0; i < cookiesArr.length; i++) {
            String cName = cookiesArr[i].getName();
            String cValue= cookiesArr[i].getValue();
            System.out.println("***cValue***"+cValue);
            if(cName.equals("cUserId")) {
                setUserId(cValue);
            } else if(cName.equals("cPassword")) {
                setPassword(cValue);
            } else if(cName.equals("cVirtualCheck")) {
                setVirtualCheck(cValue);
                if(getVirtualCheck().equals("false")) {
                    setCheckBox(false);
                    setUserId(null);
                    setPassword(null);
                } else if(getVirtualCheck().equals("true")) {
                    System.out.println("Here in doLogin() line 99");
                    setCheckBox(true);
                }
            }
        }

}

    public String doLogin() {
        if(userId != null && password!= null){
        FacesContext fc = FacesContext.getCurrentInstance();
        if(checkBox == true) {
            virtualCheck = "true";
            Cookie cUserId = new Cookie("cUserId", userId);
            Cookie cPassword = new Cookie("cPassword", password);
            Cookie cVirtualCheck = new Cookie("cVirtualCheck", virtualCheck);
            cUserId.setMaxAge(3600);
            cPassword.setMaxAge(3600);
            cVirtualCheck.setMaxAge(3600);
            ((HttpServletResponse)(fc.getExternalContext().getResponse())).addCookie(cUserId);
            ((HttpServletResponse)(fc.getExternalContext().getResponse())).addCookie(cPassword);
            ((HttpServletResponse)(fc.getExternalContext().getResponse())).addCookie(cVirtualCheck);
        } else {
            virtualCheck = "false";
            Cookie cVirtualCheck = new Cookie("cVirtualCheck", virtualCheck);
            ((HttpServletResponse)(fc.getExternalContext().getResponse())).addCookie(cVirtualCheck);
        }
                return "success";
    }

注意为了保存密码浏览器会提示保存密码,无论Java Web Technologies和浏览器设置和检索cookie都将起到重要作用。