spring boot实现验证码功能

 更新时间:2019年07月17日 17:15:11   作者:有时间织个毛衣  
这篇文章主要为大家详细介绍了spring boot实现验证码功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了spring boot实现验证码功能的具体代码,供大家参考,具体内容如下

流程是按照交互顺序。

1.controller层代码,获取验证码,以及生成验证码图片。

1.1获取html

@RequestMapping(value="/authImage",method=RequestMethod.GET)
 public String authImage(){
 return "authImage";
 }

1.2 html

<!DOCTYPE html>
<html>
 
 <head>
 <title>验证码</title>
 </head>
 <body>
 <table>
 <tr>
 <td nowrap width="437"></td>
 <td>
  <img id="img" src="/image" />
  <a href='#' οnclick="javascript:changeImg()" style="color:white;"><label style="color:black;">看不清?</label></a>
 </td>
 </tr>
 </table>
 <!-- 触发JS刷新-->
 <script type="text/javascript">
 function changeImg(){
 var img = document.getElementById("img"); 
 img.src = "/image?date=" + new Date();
 }
</script>
</body>
</html>

1.3.获取验证码图片

@RequestMapping(value="/getImage",method=RequestMethod.GET)
 public void authImage(HttpServletRequest request, HttpServletResponse response) throws IOException {
 response.setHeader("Pragma", "No-cache");
 response.setHeader("Cache-Control", "no-cache");
 response.setDateHeader("Expires", 0);
 response.setContentType("image/jpeg");
 // 生成随机字串
 String verifyCode = VerifyCodeUtils.generateVerifyCode(4);
 // 存入会话session
 HttpSession session = request.getSession(true);
 // 删除以前的
 session.removeAttribute("verCode");
 session.removeAttribute("codeTime");
 session.setAttribute("verCode", verifyCode.toLowerCase());
 session.setAttribute("codeTime", LocalDateTime.now());
 // 生成图片
 int w = 100, h = 30;
 OutputStream out = response.getOutputStream();
 VerifyCodeUtils.outputImage(w, h, out, verifyCode);
 }

1.4 核对验证码 

 @RequestMapping(value="validImage",method=RequestMethod.GET)
 public String validImage(HttpServletRequest request,HttpSession session){
 String code = request.getParameter("code");
 Object verCode = session.getAttribute("verCode");
 if (null == verCode) {
 request.setAttribute("errmsg", "验证码已失效,请重新输入");
 return "验证码已失效,请重新输入";
 }
 String verCodeStr = verCode.toString();
 LocalDateTime localDateTime = (LocalDateTime)session.getAttribute("codeTime");
 long past = localDateTime.atZone(ZoneId.systemDefault()).toInstant().toEpochMilli();
 long now = LocalDateTime.now().atZone(ZoneId.systemDefault()).toInstant().toEpochMilli();
 if(verCodeStr == null || code == null || code.isEmpty() || !verCodeStr.equalsIgnoreCase(code)){
 request.setAttribute("errmsg", "验证码错误");
 return "验证码错误";
 } else if((now-past)/1000/60>5){
 request.setAttribute("errmsg", "验证码已过期,重新获取");
 return "验证码已过期,重新获取";
 } else {
 //验证成功,删除存储的验证码
 session.removeAttribute("verCode");
 return "200";
 }
 }

2、VerifyCodeUtils的工具类

package com.example.springboot.demo.util.varcode;
 
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.geom.AffineTransform;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Arrays;
import java.util.Random;
 
import javax.imageio.ImageIO;
 
public class VerifyCodeUtils{
 
 //使用到Algerian字体,系统里没有的话需要安装字体,字体只显示大写,去掉了1,0,i,o几个容易混淆的字符
 public static final String VERIFY_CODES = "23456789ABCDEFGHJKLMNPQRSTUVWXYZ";
 private static Random random = new Random();
 
 
 /**
 * 使用系统默认字符源生成验证码
 * @param verifySize 验证码长度
 * @return
 */
 public static String generateVerifyCode(int verifySize){
 return generateVerifyCode(verifySize, VERIFY_CODES);
 }
 /**
 * 使用指定源生成验证码
 * @param verifySize 验证码长度
 * @param sources 验证码字符源
 * @return
 */
 public static String generateVerifyCode(int verifySize, String sources){
 if(sources == null || sources.length() == 0){
  sources = VERIFY_CODES;
 }
 int codesLen = sources.length();
 Random rand = new Random(System.currentTimeMillis());
 StringBuilder verifyCode = new StringBuilder(verifySize);
 for(int i = 0; i < verifySize; i++){
  verifyCode.append(sources.charAt(rand.nextInt(codesLen-1)));
 }
 return verifyCode.toString();
 }
 
 /**
 * 生成随机验证码文件,并返回验证码值
 * @param w
 * @param h
 * @param outputFile
 * @param verifySize
 * @return
 * @throws IOException
 */
 public static String outputVerifyImage(int w, int h, File outputFile, int verifySize) throws IOException{
 String verifyCode = generateVerifyCode(verifySize);
 outputImage(w, h, outputFile, verifyCode);
 return verifyCode;
 }
 
 /**
 * 输出随机验证码图片流,并返回验证码值
 * @param w
 * @param h
 * @param os
 * @param verifySize
 * @return
 * @throws IOException
 */
 public static String outputVerifyImage(int w, int h, OutputStream os, int verifySize) throws IOException{
 String verifyCode = generateVerifyCode(verifySize);
 outputImage(w, h, os, verifyCode);
 return verifyCode;
 }
 
 /**
 * 生成指定验证码图像文件
 * @param w 
 * @param h
 * @param outputFile
 * @param code
 * @throws IOException
 */
 public static void outputImage(int w, int h, File outputFile, String code) throws IOException{
 if(outputFile == null){
  return;
 }
 File dir = outputFile.getParentFile();
 if(!dir.exists()){
  dir.mkdirs();
 }
 try{
  outputFile.createNewFile();
  FileOutputStream fos = new FileOutputStream(outputFile);
  outputImage(w, h, fos, code);
  fos.close();
 } catch(IOException e){
  throw e;
 }
 }
 
 /**
 * 输出指定验证码图片流
 * @param w
 * @param h
 * @param os
 * @param code
 * @throws IOException
 */
 public static void outputImage(int w, int h, OutputStream os, String code) throws IOException{
 int verifySize = code.length();
 BufferedImage image = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
 Random rand = new Random();
 Graphics2D g2 = image.createGraphics();
 g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,RenderingHints.VALUE_ANTIALIAS_ON);
 Color[] colors = new Color[5];
 Color[] colorSpaces = new Color[] { Color.WHITE, Color.CYAN,
  Color.GRAY, Color.LIGHT_GRAY, Color.MAGENTA, Color.ORANGE,
  Color.PINK, Color.YELLOW };
 float[] fractions = new float[colors.length];
 for(int i = 0; i < colors.length; i++){
  colors[i] = colorSpaces[rand.nextInt(colorSpaces.length)];
  fractions[i] = rand.nextFloat();
 }
 Arrays.sort(fractions);
  
 g2.setColor(Color.GRAY);// 设置边框色
 g2.fillRect(0, 0, w, h);
  
 Color c = getRandColor(200, 250);
 g2.setColor(c);// 设置背景色
 g2.fillRect(0, 2, w, h-4);
  
 //绘制干扰线
 Random random = new Random();
 g2.setColor(getRandColor(160, 200));// 设置线条的颜色
 for (int i = 0; i < 20; i++) {
  int x = random.nextInt(w - 1);
  int y = random.nextInt(h - 1);
  int xl = random.nextInt(6) + 1;
  int yl = random.nextInt(12) + 1;
  g2.drawLine(x, y, x + xl + 40, y + yl + 20);
 }
  
 // 添加噪点
 float yawpRate = 0.05f;// 噪声率
 int area = (int) (yawpRate * w * h);
 for (int i = 0; i < area; i++) {
  int x = random.nextInt(w);
  int y = random.nextInt(h);
  int rgb = getRandomIntColor();
  image.setRGB(x, y, rgb);
 }
  
 shear(g2, w, h, c);// 使图片扭曲
 
 g2.setColor(getRandColor(100, 160));
 int fontSize = h-4;
 Font font = new Font("Algerian", Font.ITALIC, fontSize);
 g2.setFont(font);
 char[] chars = code.toCharArray();
 for(int i = 0; i < verifySize; i++){
  AffineTransform affine = new AffineTransform();
  affine.setToRotation(Math.PI / 4 * rand.nextDouble() * (rand.nextBoolean() ? 1 : -1), (w / verifySize) * i + fontSize/2, h/2);
  g2.setTransform(affine);
  g2.drawChars(chars, i, 1, ((w-10) / verifySize) * i + 5, h/2 + fontSize/2 - 10);
 }
  
 g2.dispose();
 ImageIO.write(image, "jpg", os);
 }
 
 private static Color getRandColor(int fc, int bc) {
 if (fc > 255)
  fc = 255;
 if (bc > 255)
  bc = 255;
 int r = fc + random.nextInt(bc - fc);
 int g = fc + random.nextInt(bc - fc);
 int b = fc + random.nextInt(bc - fc);
 return new Color(r, g, b);
 }
 
 private static int getRandomIntColor() {
 int[] rgb = getRandomRgb();
 int color = 0;
 for (int c : rgb) {
  color = color << 8;
  color = color | c;
 }
 return color;
 }
 
 private static int[] getRandomRgb() {
 int[] rgb = new int[3];
 for (int i = 0; i < 3; i++) {
  rgb[i] = random.nextInt(255);
 }
 return rgb;
 }
 
 private static void shear(Graphics g, int w1, int h1, Color color) {
 shearX(g, w1, h1, color);
 shearY(g, w1, h1, color);
 }
 
 private static void shearX(Graphics g, int w1, int h1, Color color) {
 
 int period = random.nextInt(2);
 
 boolean borderGap = true;
 int frames = 1;
 int phase = random.nextInt(2);
 
 for (int i = 0; i < h1; i++) {
  double d = (double) (period >> 1)
   * Math.sin((double) i / (double) period
    + (6.2831853071795862D * (double) phase)
    / (double) frames);
  g.copyArea(0, i, w1, 1, (int) d, 0);
  if (borderGap) {
  g.setColor(color);
  g.drawLine((int) d, i, 0, i);
  g.drawLine((int) d + w1, i, w1, i);
  }
 }
 
 }
 
 private static void shearY(Graphics g, int w1, int h1, Color color) {
 
 int period = random.nextInt(40) + 10; // 50;
 
 boolean borderGap = true;
 int frames = 20;
 int phase = 7;
 for (int i = 0; i < w1; i++) {
  double d = (double) (period >> 1)
   * Math.sin((double) i / (double) period
    + (6.2831853071795862D * (double) phase)
    / (double) frames);
  g.copyArea(i, 0, 1, h1, 0, (int) d);
  if (borderGap) {
  g.setColor(color);
  g.drawLine(i, (int) d, i, 0);
  g.drawLine(i, (int) d + h1, i, h1);
  }
 
 }
 
 }
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Java中Minio的基本使用详解

    Java中Minio的基本使用详解

    这篇文章主要介绍了Java中Minio的基本使用详解,MinIO 是一个基于Apache License v2.0开源协议的对象存储服务,它兼容亚马逊S3云存储服务接口,非常适合于存储大容量非结构化的数据,例如图片、视频、日志文件、备份数据和容器/虚拟机镜像等,需要的朋友可以参考下
    2024-01-01
  • Mybatis-Plus通用枚举的使用详解

    Mybatis-Plus通用枚举的使用详解

    这篇文章主要介绍了Mybatis-Plus通用枚举的使用详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-08-08
  • Java 数据结构与算法系列精讲之排序算法

    Java 数据结构与算法系列精讲之排序算法

    排序算法是《数据结构与算法》中最基本的算法之一。排序算法可以分为内部排序和外部排序,内部排序是数据记录在内存中进行排序,而外部排序是因排序的数据很大,一次不能容纳全部的排序记录,在排序过程中需要访问外存
    2022-02-02
  • Java微服务Filter过滤器集成Sentinel实现网关限流过程详解

    Java微服务Filter过滤器集成Sentinel实现网关限流过程详解

    这篇文章主要介绍了Java微服务Filter过滤器集成Sentinel实现网关限流过程,首先Sentinel规则的存储默认是存储在内存的,应用重启之后规则会丢失。因此我们通过配置中心Nacos保存规则,然后通过定时拉取Nacos数据来获取规则配置,可以做到动态实时的刷新规则
    2023-02-02
  • 邮件收发原理你了解吗? 邮件发送基本过程与概念详解(一)

    邮件收发原理你了解吗? 邮件发送基本过程与概念详解(一)

    你真的了解邮件收发原理吗?这篇文章主要为大家详细介绍了邮件发送基本过程与概念,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-10-10
  • Mybatis实现一对一、一对多关联查询的方法(示例详解)

    Mybatis实现一对一、一对多关联查询的方法(示例详解)

    这篇文章主要介绍了Mybatis实现一对一、一对多关联查询的方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2023-04-04
  • 基于SSM实现学生管理系统

    基于SSM实现学生管理系统

    这篇文章主要为大家详细介绍了基于SSM实现学生管理系统,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-12-12
  • JAVA中实现链式操作(方法链)的简单例子

    JAVA中实现链式操作(方法链)的简单例子

    这篇文章主要介绍了JAVA中实现链式操作的例子,模仿jQuery的方法链实现,需要的朋友可以参考下
    2014-04-04
  • java中实体类和JSON对象之间相互转化

    java中实体类和JSON对象之间相互转化

    Java中关于Json格式转化Object,Map,Collection类型和String类型之间的转化在我们实际项目中应用的很是普遍和广泛。最近工作的过程中也是经常有,因此,自己封装了一个类分享给大家。
    2015-05-05
  • 深入理解java自旋锁

    深入理解java自旋锁

    这篇文章主要介绍了如何深入理解java自旋锁,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,下面和小编来一起学习下吧
    2019-05-05

最新评论