java-captcha实现验证码

aptcha实现验证码验证用户登录,防止密码被暴力破解。

下面是在Springmvc框架中运行。

友情链接:(实现验证码和二维码)http://www.blogjava.net/fancydeepin/archive/2015/10/12/416484.html#427696

导入的jar包:

kaptcha-2.3.2.jar

下载地址:http://download.csdn.net/detail/u013147600/9052871

或是在maven ---pom.xml:配置如下

 
 
com.google.code
  kaptcha
2.3.2  
 

Web.xml的配置

[java] view plain copy print ?
  1. "font-size:14px;">  
  2.       
  3.         kaptcha  
  4.         class>com.google.code.kaptcha.servlet.KaptchaServletclass>  
  5.       
  6.       
  7.         kaptcha  
  8.         /kaptcha.jpg  
  9.       

springmvc.xml 配置

(captchaProducer相当于一个类,用户而已根据自己的要求对其属性进行修改)

[java] view plain copy print ?
  1. "font-size:14px;">      
  2.     "captchaProducer" class="com.google.code.kaptcha.impl.DefaultKaptcha">    
  3.         "config">    
  4.             class="com.google.code.kaptcha.util.Config">    
  5.                     
  6.                         
  7.                         "kaptcha.border">yes    
  8.                         "kaptcha.border.color">105,179,90    
  9.                         "kaptcha.textproducer.font.color">blue    
  10.                         "kaptcha.image.width">125    
  11.                         "kaptcha.image.height">45    
  12.                         "kaptcha.textproducer.font.size">45    
  13.                         "kaptcha.session.key">code    
  14.                         "kaptcha.textproducer.char.length">4    
  15.                         "kaptcha.textproducer.font.names">宋体,楷体,微软雅黑    
  16.                         
  17.                     
  18.                 
  19.             
  20.       

SpringUtils.java 解析类

(用于解析springmvc.xml中的bean)

[java] view plain copy print ?
  1. "font-size:14px;">package com.authc.utils;  
  2.   
  3. import org.springframework.context.ApplicationContext;  
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  5.   
  6. /** 
  7.  * @author lyx 
  8.  *   
  9.  * 2015-8-18下午3:53:19 
  10.  * 
  11.  *com.utils.SpringUtil 
  12.  *  TODO 
  13.  */  
  14. public class SpringUtil {  
  15.   
  16.     private static ApplicationContext ctx =new ClassPathXmlApplicationContext("springmvc.xml");  
  17.       
  18.       
  19.     public static Object getBean(String beanId)  
  20.     {  
  21.         return ctx.getBean(beanId);  
  22.     }  
  23. }  
  24.   


UserController控制层类

[java] view plain copy print ?
  1. "font-size:14px;">@Controller  
  2. @RequestMapping("/member")  
  3. public class UserController {  
  4.       
  5.     private Producer captchaProducer;   
  6.      
  7.     @RequestMapping(value = "captcha-image")    
  8.     public ModelAndView getKaptchaImage(HttpServletRequest request, HttpServletResponse response) throws Exception {    
  9.         HttpSession session = request.getSession();   
  10.           
  11.         //获取springmvc.xml中的captchaProducer Bean  
  12.         captchaProducer = (Producer) SpringUtil.getBean("captchaProducer");    
  13.           
  14.         String code = (String)session.getAttribute(Constants.KAPTCHA_SESSION_KEY);    
  15.         System.out.println("系统生成的验证码: " + code );    
  16.              
  17.         response.setDateHeader("Expires"0);    
  18.         response.setHeader("Cache-Control""no-store, no-cache, must-revalidate");    
  19.         response.addHeader("Cache-Control""post-check=0, pre-check=0");    
  20.         response.setHeader("Pragma""no-cache");    
  21.         response.setContentType("image/jpeg");    
  22.            
  23.         String capText = captchaProducer.createText();    
  24.         //将系统生成的验证码放入Session中  
  25.         session.setAttribute(Constants.KAPTCHA_SESSION_KEY, capText);    
  26.            
  27.         BufferedImage bi = captchaProducer.createImage(capText);    
  28.         ServletOutputStream out = response.getOutputStream();    
  29.         ImageIO.write(bi, "jpg", out);    
  30.         try {    
  31.             out.flush();    
  32.         } finally {    
  33.             out.close();    
  34.         }    
  35.         return null;    
  36.     }    
  37.       
  38.     @RequestMapping("/checkCode")  
  39.     public String checkCode(HttpServletRequest request)  
  40.     {  
  41.         //获取用户输入的验证码  
  42.         String submitCode = WebUtils.getCleanParam(request,"j_code");  
  43.           
  44.         //从session中获取系统生成的验证码  
  45.         String kaptchaExpected = (String) request.getSession().getAttribute(com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY);   
  46.           
  47.         System.out.println("用户输入的验证码是:"+submitCode+",系统生成的验证码:"+kaptchaExpected);  
  48.         //进行比较  
  49.         if(StringUtils.isEmpty(submitCode) || StringUtils.equalsIgnoreCase(submitCode, kaptchaExpected))  
  50.         {  
  51.               
  52.             request.setAttribute("checkCode","验证码正确!");  
  53.         }else  
  54.         {  
  55.             request.setAttribute("checkCode","验证码错误!");  
  56.         }  
  57.         return "/kaptcha";  
  58.     }  
  59.       
  60. }  
  61.       
  62.       
注:这里是在Controller中进行验证,比较合适的方法应该是在js里面对用户输入的验证码进行验证

kaptcha.jsp页面

[java] view plain copy print ?
  1. "font-size:14px;"><%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>  
  2. <%@page isELIgnored="false"%>  
  3. <%  
  4. String path = request.getContextPath();  
  5. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  
  6. %>  
  7.   
  8. "-//W3C//DTD HTML 4.01 Transitional//EN">  
  9.   
  10.     
  11.     "<%=basePath%>">  
  12.       
  13.     验证码  
  14.   
  15.   "text/javascript" src="<%=request.getContextPath()%>/res/js/jquery-1.11.3.min.js">  
  16.     
  17.     
  18.     
  19.     "text/javascript">   
  20. $(function(){  //生成验证码           
  21.     $('#kaptchaImage').click(function () {    
  22.     $(this).hide().attr('src''<%=path%>/member/captcha-image?' + Math.floor(Math.random()*100) ).fadeIn(); });        
  23. });     
  24.    
  25. window.onbeforeunload = function(){    
  26.     //关闭窗口时自动退出    
  27.     if(event.clientX>360&&event.clientY<0||event.altKey){       
  28.         alert(parent.document.location);    
  29.     }    
  30. };    
  31.                
  32. function changeCode() {  //刷新  
  33.     $('#kaptchaImage').hide().attr('src''<%=path%>/member/captcha-image?' + Math.floor(Math.random()*100) ).fadeIn();    
  34.     event.cancelBubble=true;    
  35. }    
  36.    
  37.    
  38. class="form-group">    
  39.       
  40.    "<%=path%>/member/checkCode">  
  41.    "j_code" type="text" id="kaptcha" maxlength="4" class="form-control" />  
  42.    
       
  43.    "<%=path%>/member/captcha-image" id="kaptchaImage"  style="margin-bottom: -3px"/>         
  44.    "#" οnclick="changeCode()">看不清?换一张    
  45.     "submit" value="验证">  
  46.       
  47.     ${checkCode }  
  48.      
  
  •     
  •   
  •   

  • kaptcha可配置项:

    [java] view plain copy print ?
    1. kaptcha.border  是否有边框  默认为true  我们可以自己设置yes,no  
    2. kaptcha.border.color   边框颜色   默认为Color.BLACK  
    3. kaptcha.border.thickness  边框粗细度  默认为1  
    4. kaptcha.producer.impl   验证码生成器  默认为DefaultKaptcha  
    5. kaptcha.textproducer.impl   验证码文本生成器  默认为DefaultTextCreator  
    6. kaptcha.textproducer.char.string   验证码文本字符内容范围  默认为abcde2345678gfynmnpwx  
    7. kaptcha.textproducer.char.length   验证码文本字符长度  默认为5  
    8. kaptcha.textproducer.font.names    验证码文本字体样式  默认为new Font("Arial"1, fontSize), new Font("Courier"1, fontSize)  
    9. kaptcha.textproducer.font.size   验证码文本字符大小  默认为40  
    10. kaptcha.textproducer.font.color  验证码文本字符颜色  默认为Color.BLACK  
    11. kaptcha.textproducer.char.space  验证码文本字符间距  默认为2  
    12. kaptcha.noise.impl    验证码噪点生成对象  默认为DefaultNoise  
    13. kaptcha.noise.color   验证码噪点颜色   默认为Color.BLACK  
    14. kaptcha.obscurificator.impl   验证码样式引擎  默认为WaterRipple  
    15. kaptcha.word.impl   验证码文本字符渲染   默认为DefaultWordRenderer  
    16. kaptcha.background.impl   验证码背景生成器   默认为DefaultBackground  
    17. kaptcha.background.clear.from   验证码背景颜色渐进   默认为Color.LIGHT_GRAY  
    18. kaptcha.background.clear.to   验证码背景颜色渐进   默认为Color.WHITE  
    19. kaptcha.image.width   验证码图片宽度  默认为200  
    20. kaptcha.image.height  验证码图片高度  默认为50   

    简单的效果图:

    java-captcha实现验证码_第1张图片

    参考:http://blog.csdn.net/rambo_china/article/details/7720181

    http://cuisuqiang.iteye.com/blog/2048428

    你可能感兴趣的:(java)