google captcha 是google生成验证码的一个工具类,其原理是将随机生成字符串保存到session中,同时以图片的形式返回给页面,之后前台页面提交到后台进行对比。
首先要安装jar包
<dependency>
<groupId>com.google.code.kaptcha</groupId>
<artifactId>kaptcha</artifactId>
<version>2.3.2</version>
</dependency>
bean 配置
1<!-- google kaptcha的相关配置-->
2 <bean id="captchaProducer" class="com.google.code.kaptcha.impl.DefaultKaptcha">
3 <property name="config">
4 <bean class="com.google.code.kaptcha.util.Config">
5 <constructor-arg>
6 <props>
7 <!-- 是否有边框 可选yes 或者 no -->
8 <prop key="kaptcha.border">yes</prop>
9 <!-- 边框颜色 -->
10 <prop key="kaptcha.border.color">105,179,90</prop>
11 <!-- 验证码文本字符颜色 -->
12 <prop key="kaptcha.textproducer.font.color">blue</prop>
13 <!-- 验证码文本字符大小 -->
14 <prop key="kaptcha.textproducer.font.size">45</prop>
15 <!-- 验证码图片的宽度 默认200 -->
16 <prop key="kaptcha.image.width">125</prop>
17 <!-- 验证码图片的高度 默认50 -->
18 <prop key="kaptcha.image.height">45</prop>
19 <!-- 验证码文本字符长度 默认为5 -->
20 <prop key="kaptcha.textproducer.char.length">4</prop>
21 <!-- 验证码文本字体样式 默认为new Font("Arial", 1, fontSize), new Font("Courier", 1, fontSize) -->
22 <prop key="kaptcha.textproducer.font.names">宋体,楷体,微软雅黑</prop>
23 </props>
24 </constructor-arg>
25 </bean>
26 </property>
27 </bean>
前端代码:
1 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
3 <html>
4 <head>
5 <script src="${pageContext.request.contextPath}/js/jquery.min.js" type="text/javascript"></script>
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>Insert title here</title>
8 </head>
9 <body>
10 生成的验证码:<img id="changeCaptcha" src="http://127.0.0.1/captcha/getCaptchaCode.htm"> <a href="javascript:changeCaptcha()">看不清,换一张</a>
11 <br>
12 <br>
13 请输入验证码:<input id="captchaCode" type="text"> <input type="button" value="提交验证" onclick="checkCaptcha()">
14 </body>
15 <script type="text/javascript">
16 //获取验证码图片
17 function changeCaptcha(){
18 $("#changeCaptcha").attr("src","http://127.0.0.1/captcha/getCaptchaCode.htm");
19 }
20 //验证输入的验证码
21 function checkCaptcha(){
22 var captchaCode = $("#captchaCode").val();
23 $.ajax({
24 type:'post',
25 async : false,
26 url:'http://127.0.0.1/captcha/checkCaptchaCode.htm',
27 data:{"captchaCode" : captchaCode},
28 success:function(res){
29 alert(res);
30 }
31 });
32 }
33 </script>
34 </html>
后端代码:
@Resource
private Producer captchaProducer;
@RequestMapping("getCaptchaCode")
public void getCaptchaCode(HttpServletRequest request, HttpServletResponse response) throws IOException {
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();
request.getSession().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();
}
}
验证码校验:
@RequestMapping("checkCaptchaCode")
@ResponseBody
public boolean checkCaptchaCode(HttpServletRequest request, @RequestParam("captchaCode") String captchaCode) throws IOException {
return vaildCode(request, captchaCode);
}
public boolean vaildCode(HttpServletRequest request,String captchaCode) {
// 用户输入的验证码的值
String kaptchaExpected = (String) request.getSession().getAttribute(Constants.KAPTCHA_SESSION_KEY);
// 校验验证码是否正确
if (captchaCode == null || !captchaCode.equals(kaptchaExpected)) {
return false;// 返回验证码错误
}
return true;
}
附Google Captcha 可配置项
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