博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
kaptcha 验证码在spring mvc 中的使用
阅读量:5989 次
发布时间:2019-06-20

本文共 5845 字,大约阅读时间需要 19 分钟。

转自:http://ttaale.iteye.com/blog/808719

kaptcha 是一个非常实用的验证码生成工具。有了它,你可以生成各种样式的验证码,因为它是可配置的。kaptcha工作的原理是调用 com.google.code.kaptcha.servlet.KaptchaServlet,生成一个图片。同时将生成的验证码字符串放到 HttpSession中。

使用kaptcha可以方便的配置:

  • 验证码的字体
  • 验证码字体的大小
  • 验证码字体的字体颜色
  • 验证码内容的范围(数字,字母,中文汉字!)
  • 验证码图片的大小,边框,边框粗细,边框颜色
  • 验证码的干扰线(可以自己继承com.google.code.kaptcha.NoiseProducer写一个自定义的干扰线)
  • 验证码的样式(鱼眼样式、3D、普通模糊……当然也可以继承com.google.code.kaptcha.GimpyEngine自定义样式)
  • ……

    详细信息请看下面的web.xml文件

    下面介绍一下用法:

    1.首先去官网下载jar:

    2.建立一个web项目,导入

    3.配置web.xml文件

    kaptcha
    com.google.code.kaptcha.servlet.KaptchaServlet
    kaptcha.border
    no
    kaptcha.border.color
    105,179,90
    kaptcha.textproducer.font.color
    red
    kaptcha.image.width
    250
    kaptcha.image.height
    90
    kaptcha.textproducer.font.size
    70
    kaptcha.session.key
    code
    kaptcha.textproducer.char.length
    4
    kaptcha.textproducer.font.names
    宋体,楷体,微软雅黑
    kaptcha
    /ClinicCountManager/kaptcha.jpg

    jsp页面使用:

  • sec code:
    <% String c = (String)session.getAttribute(com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY); String parm = (String) request.getParameter("kaptchafield"); out.println("Parameter: " + parm + " ? Session Key: " + c + " : "); if (c != null && parm != null) { if (c.equals(parm)) { out.println("true"); } else { out.println("false"); }    } %>

    上面的配置在普通jsp环境下面是有效的,如果在spring mvc环境下,则取不到session值,对于sping mvc环境验证码配置如下:

    1.  不用在web.xml进行相关配置,在applicationContext.xml中配置

  • no
    105,179,90
    red
    250
    90
    90
    code
    4
    宋体,楷体,微软雅黑

    新建生成图片控制类:

  • import java.awt.image.BufferedImage;import javax.imageio.ImageIO;import javax.servlet.ServletOutputStream;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.servlet.ModelAndView;import com.google.code.kaptcha.Constants;import com.google.code.kaptcha.Producer;@Controller@RequestMapping("/")public class CaptchaImageCreateController {        private Producer captchaProducer = null;    @Autowired    public void setCaptchaProducer(Producer captchaProducer) {        this.captchaProducer = captchaProducer;    }    @RequestMapping("/captcha-image")    public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {        response.setDateHeader("Expires", 0);        // Set standard HTTP/1.1 no-cache headers.        response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");        // Set IE extended HTTP/1.1 no-cache headers (use addHeader).        response.addHeader("Cache-Control", "post-check=0, pre-check=0");        // Set standard HTTP/1.0 no-cache header.        response.setHeader("Pragma", "no-cache");        // return a jpeg        response.setContentType("image/jpeg");        // create the text for the image        String capText = captchaProducer.createText();        // store the text in the session        request.getSession().setAttribute(Constants.KAPTCHA_SESSION_KEY, capText);        // create the image with the text        BufferedImage bi = captchaProducer.createImage(capText);        ServletOutputStream out = response.getOutputStream();        // write the data out        ImageIO.write(bi, "jpg", out);        try {            out.flush();        } finally {            out.close();        }        return null;    }}

    前台调用方式:

  • 取验证码的方式:

  • String code = (String)session.getAttribute(com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY);

     

 

转载地址:http://pbjlx.baihongyu.com/

你可能感兴趣的文章
df命令、du命令以及磁盘分区
查看>>
think X230i WIN8改win7 无法引导的问题解决
查看>>
tomcat服务器基本配置应用
查看>>
iptables 祥解
查看>>
bootstrap-table实现表格可编辑出现的问题
查看>>
impala集成sentry
查看>>
四十九、Nginx防盗链、Nginx访问控制、Nginx解析PHP相关配置、Nginx代理
查看>>
ETL工具kettle的几个小插件(字符串替换,字段选择,将字段值设置为常量)
查看>>
【centos7】格式化磁盘
查看>>
bootstrapTable
查看>>
改名啦!华为认证体系升级通知 !
查看>>
企业在什么样的情况下,需要考虑使用3D打印机
查看>>
Effective C++学习笔记(Part Four:Item 18-25)
查看>>
记一次DDg挖矿gongji
查看>>
中国企业推行精益管理的意义及注意事项
查看>>
搞定操作系统面试,看这篇就够了
查看>>
使用hibernate 分表做增删改查
查看>>
云计算的基石-尚硅谷Linux虚拟化技术教程发布
查看>>
独享云虚拟主机、共享云虚拟主机、云服务器 ECS 的区别
查看>>
mysql系列之一数据表基本操作
查看>>