上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页
  2015年2月19日
摘要: java中存在两种Random函数:一、java.lang.Math.Random;调用这个Math.Random()函数能够返回带正号的double值,该值大于等于0.0且小于1.0,即取值范围是[0.0,1.0)的左闭右开区间,返回值是一个伪随机选择的数,在该范围内(近似)均匀分布。在使用Mat... 阅读全文
posted @ 2015-02-19 22:23 dobestself_994395 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 一、简介Commons Email封装了javamail,使用非常简单。功能:简单文本邮件、带附件的邮件、HTML格式的邮件官方首页:http://commons.apache.org/email/,目前最新版本是1.1官方示例:http://commons.apache.org/email/use... 阅读全文
posted @ 2015-02-19 21:40 dobestself_994395 阅读(435) 评论(0) 推荐(0) 编辑
摘要: insert into 后获取自动插入的id:SELECT @@IDENTITY AS id如果是sql server 最好用select SCOPE_IDENTITY() as id因为@@identity全局的同类还有IDENT_CURRENT(‘table’)IDENT_CURRENT返回为任... 阅读全文
posted @ 2015-02-19 20:40 dobestself_994395 阅读(282) 评论(0) 推荐(0) 编辑
  2015年2月17日
摘要: 在基于主机方式配置Spring的配置文件中,你可能会见到这样一条配置,他的作用是式地向Spring容器注册AutowiredAnnotationBeanPostProcessor、CommonAnnotationBeanPostProcessor、PersistenceAnnotationBeanP... 阅读全文
posted @ 2015-02-17 23:43 dobestself_994395 阅读(450) 评论(0) 推荐(0) 编辑
摘要: @AutowiredSpring 2.5 引入了 @Autowired 注释,它可以对类成员变量、方法及构造函数进行标注,完成自动装配的工作。通过 @Autowired的使用来消除 set ,get方法。加在成员变量之上可以省略get set方法。但是首先得现在Spring配置文件中配置org.sp... 阅读全文
posted @ 2015-02-17 23:36 dobestself_994395 阅读(1213) 评论(0) 推荐(0) 编辑
  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) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 下一页