kaptcha验证码组件使用简介
Kaptcha是一个基于SimpleCaptcha的验证码开源项目。
官网地址:http://code.google.com/p/kaptcha/
kaptcha的使用比较方便,只需添加jar包依赖之后简单地配置就可以使用了。kaptcha所有配置都可以通过web.xml来完成,如果你的项目中使用了Spring MVC,那么则有另外的一种方式来实现。
一、简单的jsp-servlet项目
1.添加jar包依赖
如果你使用maven来统一管理jar包,则在工程的pom.xml中添加dependency
- <!-- kaptcha -->
- <dependency>
- <groupId>com.google.code.kaptcha</groupId>
- <artifactId>kaptcha</artifactId>
- <version>2.3.2</version>
- </dependency>
如果是非maven管理的项目,则直接在官网下载kaptcha的jar包,然后添加到项目lib库中,下载地址:http://code.google.com/p/kaptcha/downloads/list
2.配置web.xml
上面说了,kaptcha都是在web.xml中配置,我们必须在web.xml中配置kaptcha的servlet,具体如下:
- <servlet>
- <servlet-name>Kaptcha</servlet-name>
- <servlet-class>com.google.code.kaptcha.servlet.KaptchaServlet</servlet-class>
- </servlet>
- <servlet-mapping>
- <servlet-name>Kaptcha</servlet-name>
- <url-pattern>/kaptcha.jpg</url-pattern>
- </servlet-mapping>
其中servlet的url-pattern可以自定义。
kaptcha所有的参数都有默认的配置,如果我们不显示配置的话,会采取默认的配置。
如果要显示配置kaptcha,在配置kaptcha对应的Servlet时,在init-param增加响应的参数配置即可。示例如下:
- <servlet>
- <servlet-name>Kaptcha</servlet-name>
- <servlet-class>com.google.code.kaptcha.servlet.KaptchaServlet</servlet-class>
- <init-param>
- <param-name>kaptcha.image.width</param-name>
- <param-value>200</param-value>
- <description>Width in pixels of the kaptcha image.</description>
- </init-param>
- <init-param>
- <param-name>kaptcha.image.height</param-name>
- <param-value>50</param-value>
- <description>Height in pixels of the kaptcha image.</description>
- </init-param>
- <init-param>
- <param-name>kaptcha.textproducer.char.length</param-name>
- <param-value>4</param-value>
- <description>The number of characters to display.</description>
- </init-param>
- <init-param>
- <param-name>kaptcha.noise.impl</param-name>
- <param-value>com.google.code.kaptcha.impl.NoNoise</param-value>
- <description>The noise producer.</description>
- </init-param>
- </servlet>
具体的配置参数参见:http://code.google.com/p/kaptcha/wiki/ConfigParameters
3.页面调用
- <form action="submit.action">
- <input type="text" name="kaptcha" value="" /><img src="kaptcha.jpg" />
- </form>
4.在submit的action方法中进行验证码校验
- //从session中取出servlet生成的验证码text值
- String kaptchaExpected = (String)request.getSession().getAttribute(com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY);
- //获取用户页面输入的验证码
- String kaptchaReceived = request.getParameter("kaptcha");
- //校验验证码是否正确
- if (kaptchaReceived == null || !kaptchaReceived.equalsIgnoreCase(kaptchaExpected)){
- setError("kaptcha", "Invalid validation code.");
- }
注:确保JDK设置了 -Djava.awt.headless=true
5.实现页面验证码刷新
- <img src="kaptcha.jpg" width="200" id="kaptchaImage" title="看不清,点击换一张" />
- <script type="text/javascript">
- $(function() {
- $('#kaptchaImage').click(function() {$(this).attr('src','kaptcha.jpg?' + Math.floor(Math.random() * 100));});
- });
- </script>
- <br /><small>看不清,点击换一张</small>
注:为了避免浏览器的缓存,可以在验证码请求url后添加随机数
二、Spring mvc项目中使用kaptcha
1.添加captchaProducer bean定义
- <!-- 配置kaptcha验证码 -->
- <bean id="captchaProducer" class="com.google.code.kaptcha.impl.DefaultKaptcha">
- <property name="config">
- <bean class="com.google.code.kaptcha.util.Config">
- <constructor-arg type="java.util.Properties">
- <props>
- <prop key="kaptcha.image.width">100</prop>
- <prop key="kaptcha.image.height">50</prop>
- <prop key="kaptcha.noise.impl">com.google.code.kaptcha.impl.NoNoise</prop>
- <prop key="kaptcha.textproducer.char.string">0123456789abcdefghijklmnopqrstuvwxyz</prop>
- <prop key="kaptcha.textproducer.char.length">4</prop>
- </props>
- </constructor-arg>
- </bean>
- </property>
- </bean>
2.生成验证码的Controller
- 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;
- /**
- * ClassName: CaptchaImageCreateController <br/>
- * Function: 生成验证码Controller. <br/>
- * date: 2013-12-10 上午11:37:42 <br/>
- *
- * @author chenzhou1025@126.com
- */
- @Controller
- public class CaptchaImageCreateController {
- private Producer captchaProducer = null;
- @Autowired
- public void setCaptchaProducer(Producer captchaProducer){
- this.captchaProducer = captchaProducer;
- }
- @RequestMapping("/kaptcha.jpg")
- public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception{
- // Set to expire far in the past.
- 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;
- }
- }
3.校验用户输入的Controller
- /**
- * ClassName: LoginController <br/>
- * Function: 登录Controller. <br/>
- * date: 2013-12-10 上午11:41:43 <br/>
- *
- * @author chenzhou1025@126.com
- */
- @Controller
- @RequestMapping("/login")
- public class LoginController {
- /**
- * loginCheck:ajax异步校验登录请求. <br/>
- *
- * @author chenzhou1025@126.com
- * @param request
- * @param username 用户名
- * @param password 密码
- * @param kaptchaReceived 验证码
- * @return 校验结果
- * @since 2013-12-10
- */
- @RequestMapping(value = "check", method = RequestMethod.POST)
- @ResponseBody
- public String loginCheck(HttpServletRequest request,
- @RequestParam(value = "username", required = true) String username,
- @RequestParam(value = "password", required = true) String password,
- @RequestParam(value = "kaptcha", required = true) String kaptchaReceived){
- //用户输入的验证码的值
- String kaptchaExpected = (String) request.getSession().getAttribute(
- com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY);
- //校验验证码是否正确
- if (kaptchaReceived == null || !kaptchaReceived.equals(kaptchaExpected)) {
- return "kaptcha_error";//返回验证码错误
- }
- //校验用户名密码
- // ……
- // ……
- return "success"; //校验通过返回成功
- }
- }
kaptcha验证码组件使用简介的更多相关文章
- google kaptcha 验证码组件使用简介
kaptcha 是一个非常实用的验证码生成工具.有了它,你可以生成各种样式的验证码,因为它是可配置的.kaptcha工作的原理是调用 com.google.code.kaptcha.servlet.K ...
- kaptcha 验证码组件使用
kaptcha 验证码组件使用简介 kaptcha 是一个非常实用的验证码生成工具.有了它,你可以生成各种样式的验证码,因为它是可配置的.kaptcha工作的原理是调用 com.google.co ...
- 如何使用kaptcha验证码组件
kaptcha是基于SimpleCaptcha的验证码开源项目. kaptcha是纯配置的,使用起来比较友好.如使用了Servlet,所有配置都在web.xml中.如果你在项目中使用了开源框架(比如S ...
- java 实现登录验证码 (kaptcha 验证码组件)
验证码的作用: 1.防止广告机注册和发帖.评论.2.防止暴力破解密码,特别是有管理员权限的密码. 在这里介绍一种非常实用的验证码生成工具:kaptcha 这个工具,可以生成各种样式的验证码,因为它是可 ...
- 使用kaptcha验证码组件操作演示
1.创建一个Maven项目 2.在pom.xml中引入相关依赖 <project xmlns="http://maven.apache.org/POM/4.0.0" xmln ...
- jcaptcha和kaptcha验证码使用入门【转】
jcaptcha和kaptcha验证码使用入门 一.jcaptcha验证码使用 jcaptcha使用默认样式生成的验证码比较难以识别,所以需要自定义验证码的样式,包括,背景色.背景大小.字体.字体大小 ...
- 【干货】”首个“ .NET Core 验证码组件
前言 众所周知,Dotnet Core目前没有图形API,以前的System.Drawing程序集并没有包含在Dotnet Core 1.0环境中.不过在dotnet core labs项目里可以见到 ...
- Java实现验证码制作之一Kaptcha验证码
Kaptcha验证码 是google提供的验证码插件,使用起来相对简单,设置的干扰线以及字体扭曲不易让其他人读取破解. 这里我们需要 导入一个 kaptcha-2.3.jar 下载地址:http:/ ...
- kaptcha验证码插件的使用
kaptcha 是一个非常实用的验证码生成工具.有了它,你可以生成各种样式的验证码,因为它是可配置的.kaptcha工作的原理是调用 com.google.code.kaptcha.servlet.K ...
随机推荐
- Luogu1155 NOIP2008 双栈排序 【二分图染色】【模拟】
Luogu1155 NOIP2008 双栈排序 题目描述 Tom最近在研究一个有趣的排序问题.如图所示,通过 2个栈 S1 和 S2 ,Tom希望借助以下 44 种操作实现将输入序列升序排序. 操作 ...
- 快速学习MD5的方法
MD5加密的Java实现 在各种应用系统中,如果需要设置账户,那么就会涉及到存储用户账户信息的问题,为了保证所存储账户信息的安全,通常会采用MD5加密的方式来,进行存储.首先,简单得介绍一下,什么是M ...
- xml的读取(曾删改)
获取XML 得到 需要查询的字段名 private string GetXml(string TableName) { try { string TbName = TableName.Split('_ ...
- LeetCode 549. Binary Tree Longest Consecutive Sequence II
原题链接在这里:https://leetcode.com/problems/binary-tree-longest-consecutive-sequence-ii/description/ 题目: G ...
- Vim使用YouCompleteMe达到类似IDE的代码提示、补全,以及其他实用设置
接触Linux有两年了,vim还是只会简单的操作.最近实在受不了sublime的代码提示,决定花点时间来配置下vim.本文讲自己认为方便的vim配置,称不上完美,只讲究简单实用. 使用 ctags 主 ...
- Promise的一些相关讲解
在javascrpit的语言特性上 有明确的一个特性指出,该语言的是单线程进程.这就意味着JavaScript的所有网络操作,浏览器事件,都必须是异步执行. 如下面的例子,可以感受到单线程与异步回调: ...
- 一次解决spark history server日志不见
通过cloudera的旧版VM(centos6版本)跑spark,之后,想看一下日志研究一下job,stage以及task,压力很大的发现完全没有日志,180088页面打开后: Event log d ...
- MIT App Inventor使用与入门教程
前言:随着信息技术新课标的提出,移动app应用设计被加入到新课标,程序与算法得到体现,学生的创造性,计算思维与信息意识也可以在其中得到体现. 安卓app开发目前比较火热的是Eclipse和Androi ...
- 安装ecb
mac emacs上安装ecb,通过elpa折腾得要死,死活无法使用. 解决办法:下载https://github.com/alexott/ecb,添加路径,(require 'ecb),直接ok.
- (转)Inno Setup入门(十六)——Inno Setup类参考(2)
本文转载自:http://blog.csdn.net/yushanddddfenghailin/article/details/17250967 这里将接着在前面的基础上介绍如何在自定义页面上添加按钮 ...