`

kaptcha 验证码组件结合springMVC示例

阅读更多

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

    1.在applicationContext.xml中配置,切记启动时别忘了加载。

 

	<bean id="captchaProducer" class="com.google.code.kaptcha.impl.DefaultKaptcha">  
	    <property name="config">  
	        <bean class="com.google.code.kaptcha.util.Config">  
	            <constructor-arg>  
	                <props>  
	                    <prop key="kaptcha.border">no</prop>  
	                    <prop key="kaptcha.border.color">105,179,90</prop>  
	                    <prop key="kaptcha.textproducer.font.color">red</prop>  
	                    <prop key="kaptcha.image.width">80</prop>  
	                    <prop key="kaptcha.textproducer.font.size">30</prop>  
	                    <prop key="kaptcha.image.height">30</prop>  
	                    <prop key="kaptcha.session.key">code</prop>  
	                    <prop key="kaptcha.textproducer.char.length">4</prop>  
	                    <prop key="kaptcha.textproducer.font.names">Arial, Courier</prop> 
	                    <prop key="kaptcha.GimpyEngine">WaterRipple</prop> 
	                    <prop key="kaptcha.noise.impl">com.google.code.kaptcha.impl.NoNoise</prop>
	                </props>  
	            </constructor-arg>  
	        </bean>  
	    </property>  
	</bean>

 2.新建图片控制类CaptchaController.java

 

 

package com.ly.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 javax.servlet.http.HttpSession;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import com.google.code.kaptcha.Constants;
import com.google.code.kaptcha.Producer;

@Controller
@RequestMapping("/captchaController")
public class CaptchaController extends BaseController {

	@Autowired
	private Producer captchaProducer = null;

	@RequestMapping("/image")
	public String getKaptchaImage(HttpServletRequest request, HttpServletResponse response) throws Exception {
		HttpSession session = request.getSession();
		String code = (String) session.getAttribute(Constants.KAPTCHA_SESSION_KEY);
		System.out.println("******************验证码是: " + code);

		response.setDateHeader("Expires", 0);
		response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
		response.addHeader("Cache-Control", "post-check=0, pre-check=0");
		response.setHeader("Pragma", "no-cache");
		response.setContentType("image/jpeg");
		String capText = captchaProducer.createText();
		session.setAttribute(Constants.KAPTCHA_SESSION_KEY, capText);
		BufferedImage bi = captchaProducer.createImage(capText);
		ServletOutputStream out = response.getOutputStream();
		ImageIO.write(bi, "jpg", out);
		try {
			out.flush();
		} finally {
			out.close();
		}
		return null;
	}

}

 3.前台登录页面.jsp

<div id="ck">
	验证码&nbsp;<input type="text" id="kaptcha" name="kaptcha" style="width: 60px;"  class="easyui-validatebox"  maxlength="4" data-options="required:true"/>
	&nbsp;<img id="kaptchaImage" src="captchaController/image"  style="margin-bottom: -10px"/>
</div>
<script type="text/javascript">
	$('#kaptchaImage').click(function () {//生成验证码  
	      $(this).hide().attr('src', 'captchaController/image?' + Math.floor(Math.random()*100) ).fadeIn();  
	      event.cancelBubble=true;  
	});
</script>

 4.验证登录什么的功能,自己发挥吧!

 

以下另送配置属性参考值:

        <servlet>  
            <servlet-name>Kaptcha</servlet-name>  
            <servlet-class>com.google.code.kaptcha.servlet.KaptchaServlet</servlet-class>  
            <init-param>  
                <description> Border around kaptcha. Legal values are yes or no. </description>  
                <param-name>kaptcha.border</param-name>  
                <param-value>no</param-value>  
            </init-param>  
            <init-param>  
                <description>Color of the border. Legal values are r,g,b (and optional alpha) or white,black,blue. </description>  
                <param-name>kaptcha.border.color</param-name>  
                <param-value>red</param-value>  
            </init-param>  
            <init-param>  
                <description>Thickness of the border around kaptcha. Legal values are > 0. </description>  
                <param-name>kaptcha.border.thickness</param-name>  
                <param-value>5</param-value>  
            </init-param>  
            <init-param>  
                <description>Width in pixels of the kaptcha image. </description>  
                <param-name>kaptcha.image.width</param-name>  
                <param-value>80</param-value>  
            </init-param>  
            <init-param>  
                <description>Height in pixels of the kaptcha image. </description>  
                <param-name>kaptcha.image.height</param-name>  
                <param-value>40</param-value>  
            </init-param>  
            <init-param>  
                <description>The image producer. </description>  
                <param-name>kaptcha.producer.impl</param-name>  
                <param-value>com.google.code.kaptcha.impl.DefaultKaptcha </param-value>  
            </init-param>  
            <init-param>  
                <description>The text producer. </description>  
                <param-name>kaptcha.textproducer.impl</param-name>  
                <param-value>com.google.code.kaptcha.text.impl.DefaultTextCreator</param-value>   
            </init-param>  
            <init-param>  
                <description>The characters that will create the kaptcha. </description>  
                <param-name>kaptcha.textproducer.char.string</param-name>  
                <param-value>abcde2345678gfynmnpwx </param-value>  
            </init-param>  
            <init-param>  
                <description>The number of characters to display. </description>  
                <param-name>kaptcha.textproducer.char.length</param-name>  
                <param-value>5</param-value>  
            </init-param>  
            <init-param>  
                <description>A list of comma separated font names.</description>  
                <param-name>kaptcha.textproducer.font.names</param-name>  
                <param-value>Arial, Courier</param-value>  
            </init-param>  
            <init-param>  
                <description>The size of the font to use. </description>  
                <param-name>kaptcha.textproducer.font.size</param-name>  
                <param-value>23</param-value>  
            </init-param>  
            <init-param>  
                <description>The color to use for the font. Legal values are r,g,b. </description>  
                <param-name>kaptcha.textproducer.font.color</param-name>  
                <param-value>black</param-value>  
            </init-param>  
            <init-param>  
                <description>The noise producer. </description>  
                <param-name>kaptcha.noise.impl</param-name>  
                <param-value>com.google.code.kaptcha.impl.NoNoise </param-value>  
            </init-param>  
            <init-param>  
                <description>The noise color. Legal values are r,g,b. </description>  
                 <param-name>kaptcha.noise.color</param-name>  
                 <param-value>black</param-value>  
            </init-param>  
            <init-param>  
                <description>The obscurificator implementation. </description>  
                <param-name>kaptcha.obscurificator.impl</param-name>  
                <param-value>com.google.code.kaptcha.impl.ShadowGimpy</param-value>  
            </init-param>  
            <init-param>  
                <description>The background implementation. </description>  
                <param-name>kaptcha.background.impl</param-name>  
                <param-value>com.google.code.kaptcha.impl.DefaultBackground</param-value>  
            </init-param>  
            <init-param>  
                <description>Ending background color. Legal values are r,g,b. </description>  
                <param-name>kaptcha.background.clear.to</param-name>  
                <param-value>white</param-value>  
             </init-param>  
            <init-param>  
                <description>The word renderer implementation. </description>  
                <param-name>kaptcha.word.impl</param-name>  
                <param-value>com.google.code.kaptcha.text.impl.DefaultWordRenderer</param-value>  
            </init-param>  
            <init-param>  
                <description>The value for the kaptcha is generated and is put into the HttpSession. This is the key value for that item in the session. </description>  
                <param-name>kaptcha.session.key</param-name>  
                <param-value>KAPTCHA_SESSION_KEY</param-value>  
            </init-param>  
            <init-param>  
                <description>The date the kaptcha is generated is put into the HttpSession. This is the key value for that item in the session. </description>  
                <param-name>kaptcha.session.date</param-name>  
                <param-value>KAPTCHA_SESSION_DATE</param-value>  
            </init-param>  
        </servlet>  

 

分享到:
评论
1 楼 hy2012_campus 2014-03-01  
总结的不错,顶一个

相关推荐

    spring整合kaptcha验证码的实现

    其中,eclipse是主要的开发工具,mybatis是持久层框架,spring是主要的框架,springmvc是基于spring的mvc框架,而kaptcha是验证码生成工具。 在kaptcha的使用方面,本文主要介绍了两种使用方式:方式一是在spring-...

    kaptcha 图片验证码

    《深入理解Kaptcha图片验证码在SpringMVC项目中的应用》 验证码作为一种常见的安全机制,用于防止恶意自动程序(如机器人)对网站进行非法操作,如批量注册、恶意投票等。Kaptcha是Google开源的一个用于生成图片...

    Shiro+SpringMVC 示例

    Apache Shiro 和 SpringMVC 的整合示例是一个用于构建安全Web应用的常见实践。这个示例项目不依赖于任何数据库,所有的实现都是基于静态代码,这使得它成为一个快速理解和学习Shiro安全框架的理想起点。 Apache ...

    SpringMVC示例

    这个"SpringMVC示例"是展示如何使用SpringMVC来实现基本的后台接口服务。通过理解SpringMVC的工作原理,开发者可以有效地创建可扩展且易于维护的后端系统。 在SpringMVC中,核心组件包括DispatcherServlet、...

    First springMVC示例.rar

    在这个"First springMVC示例.rar"中,我们找到了一个适合初学者的入门教程,它包括源码和文档,帮助理解Spring MVC的基本概念和工作原理。 首先,让我们深入了解一下Spring MVC的核心概念。Spring MVC是Spring框架...

    bootstrap fileinput组件整合Springmvc上传图片到本地磁盘

    主要介绍了bootstrap fileinput组件整合Springmvc上传图片到本地磁盘的方法,需要的朋友可以参考下

    Spring MVC中使用Google kaptcha验证码的方法详解

    在Spring MVC中集成Google kaptcha验证码能够有效地防止恶意登录和批量操作。kaptcha是一个高度可配置的验证码生成库,能够创建各种样式的验证码。以下是如何在Spring MVC项目中使用kaptcha的详细步骤: 1. **Maven...

    Java进阶Spring和springMVC详细示例精通教程资料.7z

    传智播客Java进阶Spring和springMVC详细示例精通教程资料 传智播客Java进阶Spring和springMVC详细示例精通教程资料 传智播客Java进阶Spring和springMVC详细示例精通教程资料

    SpringMVC代码示例

    **SpringMVC 框架详解** SpringMVC 是 Spring 框架...提供的 "spring-mvc-study" 压缩包可能包含了一系列的 SpringMVC 示例代码,可以帮助进一步理解这些概念和用法。通过深入学习和实践,你可以掌握这个强大的框架。

    spring mvc 使用kaptcha配置生成验证码实例

    本文将详细讲解如何使用Kaptcha库在Spring MVC框架中配置并实现验证码生成。 Kaptcha是一个轻量级的Java验证码生成库,它提供了多种定制选项,包括字体、颜色、噪声等,使得生成的验证码具有较高的可读性同时又能...

    SpringMVC demo 完整源码实例下载.zip

    同时,它支持使用DAO(数据访问对象)模式与数据库交互,通常结合MyBatis或Hibernate等持久层框架。在示例中,我们可能会看到Service层和DAO层的实现,它们封装了业务逻辑和数据库操作。 文件上传和下载功能在很多...

    springMVC示例

    **SpringMVC 示例详解** SpringMVC 是 Spring 框架的一个模块,专门用于构建 Web 应用程序。它提供了一种模型-视图-控制器(MVC)架构,简化了开发过程,使得开发者能够专注于业务逻辑,而将视图渲染和数据控制分离...

    SpringMVC4.0 + MyBatis3.2 + 验证码 + 邮箱 + Log4j.rar

    这个项目将这两者与验证码、邮箱服务和日志系统Log4j进行了集成,为我们提供了一个全面的开发示例。 首先,SpringMVC是Spring框架的一部分,主要负责处理HTTP请求和响应,提供模型-视图-控制器(MVC)架构模式。...

    springmvc登陆示例项目

    本项目“springmvc登陆示例项目”是针对初学者和开发者的一个实践教程,旨在帮助他们理解并掌握SpringMVC在处理用户登录场景中的应用。 该项目名为"goodDay",可能代表一个简单的日常登录系统,其核心功能是实现...

    java springmvc实现验证码功能

    java springmvc实现验证码功能 java springmvc实现验证码功能是指在java web开发中使用springmvc框架来实现验证码功能的过程。验证码是指在用户登录或注册过程中,服务器端生成的一张图片,图片中包含随机字母、...

    SpringMVC+Hibernate 例子 v2.0

    提供的 "SpringMVC_Hibernate_001" 可能是一个简单的 SpringMVC+Hibernate 示例项目,包含了基本的配置和简单的 CRUD 操作。`sql` 文件夹可能包含数据库初始化脚本,用于创建示例应用所需的表结构。 总结,...

    cas结合 springmvc shiro 单点登录

    本项目是关于如何将CAS(Central Authentication Service)与SpringMVC和Shiro结合实现SSO的实践示例。 首先,我们来了解一下三个主要组件: 1. **CAS**: CAS是一个开源的身份验证框架,主要用于处理用户身份验证...

    springmvc下实现登录验证码功能示例

    在示例中,这个方法位于`CaptchaUtil`工具类中,并通过`outputCaptcha`方法执行。这个方法会接收到`HttpServletRequest`和`HttpServletResponse`对象,以便将生成的验证码写入HTTP响应,使客户端能够接收并显示。 2...

Global site tag (gtag.js) - Google Analytics