Spring整合Kaptcha谷歌验证码工具的开发步骤

网友投稿 536 2023-02-21

Spring整合Kaptcha谷歌验证码工具的开发步骤

开发步骤:

1、加入依赖

com.google.code.kaptcha

kaptcha

2.3

国内镜像无法-该依赖,需要手动通过jar包在本地仓库安装一个依赖。

安装命令:

mvn install:install-file -Dfile=jar文件的位置 -DgroupId=目标安装的groupid -DartifactId=目标安装的artifactId

-Dpackaging=jar -Dversion=版本号

2、创建xml配置文件

spring-context-kaptcha.xml:

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd">

yes

105,179,90

blue

125

45

45

code

4

宋体,楷体,微软雅黑

xmlns:xsi="http://w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd">

yes

105,179,90

blue

125

45

45

code

4

宋体,楷体,微软雅黑

注意:别忘记加载这个配置文件

3、Controller层代码

import com.google.code.kaptcha.Constants;

import com.google.code.kaptcha.Producer;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.stereotype.Controller;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RequestMethod;

import org.springframework.web.servlet.ModelAndView;

import javax.imageio.ImageIO;

import javax.servlet.ServletOutputStream;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import java.awt.image.BufferedImage;

import java.io.IOException;

@Controller

public class KaptchaController {

@Autowired

private Producer captchaProducernYjfJFSDV;

@RequestMapping(value = "verification", method = RequestMethod.GET)

public ModelAndView verification(HttpServletRequest request, HttpServletResponse response) throws IOException {

System.out.println("进入生成验证码控制层");

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");

// 返回一个图片

response.setContentType("image/jpeg");

// 创建text文本在图片中

String capText = captchaProducer.createText();

// 将文本内容存储在session中

request.getSession().setAttribute(Constants.KAPTCHA_SESSION_KEY, capText);

// 用文本创建图像

BufferedImage bi = captchaProducer.createImage(capText);

//servlet输出

ServletOutputStream out = response.getOutputStream();

// 写出数据

ImageIO.write(bi, "jpg", out);

try {

// 提交

out.flush();

} finally {

// 提交后将输出流关闭

out.close();

}

return null;

}

}

4、jsP代码

将验证码显示在该图片中。

5、给图片绑定点击刷新验证码事件

//换验证码事件

$("#verification").click(function () {

$(this).attr("src","verification");

})

6、验证输入验证码

//比较验证码

//Constants.KAPTCHA_SESSION_KEY 是之前生成验证码存在session中的

//code是用户点击提交后,通过name属性发送到控制层的内容,为用户输入的内容

if(!(code.equals(session.getAttribute(Constants.KAPTCHA_SESSION_KEY)))){

//如果用户输入的内容与session中的内容不一致返回登录页面

return "login";

}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:移动应用程序设计和开发(移动应用设计与开发)
下一篇:APP唤起小程序(唤醒小程序)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~