1.通过前端展现一个十天内免登录的复选框,选择则实现否则不实现
在这里我补足我的知识 <input> value 在提交表单form表单后 value会发送给后端 以name:value的方式
2.在后端判断是否登陆成功,继而判断是否有选择十天内免登录
3.因知识有限,当确实十天内免登录后,new 两个Cookie对象 分别将username和password存进去,此处应加密,并且设置路径req.getContextPath();
Cookie cookie1 = new Cookie("username",username); Cookie cookie2 = new Cookie("password",password); cookie1.setMaxAge(60*60*24*10); cookie2.setMaxAge(60*60*24*10); cookie1.setPath(req.getContextPath()); cookie2.setPath(req.getContextPath()); resp.addCookie(cookie1); resp.addCookie(cookie2);
4.当我们再次访问该web应用时,会有两个选项,一个是免登录后的页面,一个是登录页面,修改默认页面
<welcome-file-list> <welcome-file>path</welcome-file> </welcome-file-list>
5.默认页面用一个java写,不需要展示,只需要处理数据