2015年2月16日
摘要: 参看文献:http://haohaoxuexi.iteye.com/blog/1343761之Controller:http://haohaoxuexi.iteye.com/blog/1753271之ViewResolver:http://haohaoxuexi.iteye.com/blog/177... 阅读全文
posted @ 2015-02-16 23:12 dobestself_994395 阅读(105) 评论(0) 推荐(0) 编辑
摘要: private void addCookie(HttpServletResponse response ,String username,String password) { Cookie name = new Cookie("userName", username); Cookie pwd =... 阅读全文
posted @ 2015-02-16 18:46 dobestself_994395 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 首先要定义一个显示验证信息的类如: 1 public interface ReturnObject { 2 3 public boolean isSuccess(); 4 5 public String getReason(); 6 7 } 8 9 public class ... 阅读全文
posted @ 2015-02-16 18:40 dobestself_994395 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 用户使用email作为用户名登陆的话,就需要查询出email对应的一条记录。每个用户的email是唯一的。SELECT * FROM t_user WHERE email=?;上面的语句实现了查询email对应的一条用户信息,但是由于email这一列没有加索引,会导致全表扫描,效率会很低。SELEC... 阅读全文
posted @ 2015-02-16 18:25 dobestself_994395 阅读(907) 评论(0) 推荐(0) 编辑
摘要: kaptcha是一个非常实用的验证码生成工具,有了它,你可以生成各种样式的验证码,因为它是可配置的。kaptcha工作的原理是调用com.google.code.kaptcha.servlet.KaptchaServlet,生成一个图片。同时将生成的验证码字符串放到HttpSession中。kapt... 阅读全文
posted @ 2015-02-16 18:15 dobestself_994395 阅读(192) 评论(0) 推荐(0) 编辑
摘要: ^[A-Za-z0-9]{6,17}$ :以大小写字母和数字组成的,最小6位,最大17位的字符串^\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*$ :必须需要的是 单字符@单字符点单字符附:正则表达式大全:http://www.cr173.c... 阅读全文
posted @ 2015-02-16 16:55 dobestself_994395 阅读(128) 评论(0) 推荐(0) 编辑