net mvc中怎么使用cookie记住密码

net mvc中怎么使用cookie记住密码,第1张

记住密码,并不是说cookie中用真的就要保存密码,这样的敏感数据是不应该保存在cookie中的(不管加密与否) 只需要保存一个已登陆的票据信息和自动登陆的时间就行到期后,要求重新登陆 不是记住密码而是记住一个特殊字符串,利用这个字符串在一定时间内服务器获取了就可以免登陆,相当于令牌。

jquery *** 作cookie的话事先下个cookie插件用起来很简单了。

$.cookie("username")调取username

$.cookie("username","yukon")设置username

public class WelcomeController extends AbstractController {

@Override

protected ModelAndView handleRequestInternal(HttpServletRequest arg0,

HttpServletResponse arg1) throws Exception {

// TODO Auto-generated method stub

Cookie cookie = new Cookie("test", "test")

cookie.setMaxAge(maxTime)

arg1.addCookie(cookie)

System.out.println("welcome")

return new ModelAndView("welcome")

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11277560.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存