springboot验证码整合

1.验证码调用

/**
     * 用于生成带六位数字验证码并发送邮件
     */
    @ApiOperation("用于生成带六位数字验证码并发送邮件")
    @PostMapping(value = "/captcha")
    public AjaxResult captchacode(HttpSession session,@RequestBody CaptchaReqDto captchaReqDto) throws Exception {
        //返回验证码和图片的map
        String strEnsure = Captcha.getImageCode();
        session.setAttribute("simpleCaptcha", strEnsure);
        session.setAttribute("codeTime",System.currentTimeMillis());
        if(StringUtils.isBlank(captchaReqDto.getUsername())){
            return AjaxResult.error("请输入用户名");
        }
        User user = userService.selectUserByUserid(captchaReqDto.getUsername());
        if(user == null){
            return AjaxResult.error("用户不存在");
        }
        if(StringUtils.isBlank(user.getEmail())){
            return AjaxResult.error("请联系管理员维护邮箱信息");
        }
        MailLog mailLog = new MailLog();
        mailLog.setContent(strEnsure);
        mailLog.setCreateTime(new Date());
        mailLog.setEmail(user.getEmail());
        mailLog.setToMan(captchaReqDto.getUsername());
        return mailLogService.loginMail(mailLog);
    }

2.验证

/**
     * 前端用户输入返回的验证码
     */
    @ApiOperation("前端用户输入返回的验证码")
    @PostMapping(value = "/verify")
    public AjaxResult checkcode(HttpSession session,
                                @RequestBody CaptchaReqDto captchaReqDto) throws Exception {

        String checkCode = captchaReqDto.getCaptcha();
        // 获得验证码对象
        Object cko = session.getAttribute("simpleCaptcha");
        if (cko == null) {
            return AjaxResult.error("请输入验证码!");
        }
        String captcha = cko.toString();
        // 判断验证码输入是否正确
        if (StringUtils.isEmpty(checkCode) || captcha == null || !(checkCode.equalsIgnoreCase(captcha))) {
            return AjaxResult.error("验证码错误,请重新输入!");
        } else {
            Long codeTime = Long.valueOf(session.getAttribute("codeTime") + "");
            if ((System.currentTimeMillis() - codeTime) / 1000 / 60 > Long.valueOf(minutes)-1) {
                return AjaxResult.error("验证码已失效,请重新输入!");
            }
            return AjaxResult.success("验证通过!");
        }
    }

3. application.yml增加验证码有效期

spring: 
  # 发送邮件配置
  mail:
   minutes: 2 # 邮件验证码失效时间,单位为分钟

4.工具类


/**
 *
 * Description: 验证码生成器
 */
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.OutputStream;import java.util.HashMap;
import java.util.Map;import java.util.Random;

public class Captcha {
    private static char mapTable[] = {
            '0', '1', '2', '3', '4', '5',
            '6', '7', '8', '9', '0', '1',
            '2', '3', '4', '5', '6', '7',
            '8', '9'};
    public static Map<String, Object> getImageCode(int width, int height, OutputStream os) {
        Map<String,Object> returnMap = new HashMap<String, Object>();
        if (width <= 0) {
            width = 60;
        }
        if (height <= 0) {
            height = 20;
        }
        BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
        // 获取图形上下文
        Graphics g = image.getGraphics();
        //生成随机类
        Random random = new Random();
        // 设定背景色
        g.setColor(getRandColor(200, 250));
        g.fillRect(0, 0, width, height);
        //设定字体
        g.setFont(new Font("Times New Roman", Font.PLAIN, 18));
        // 随机产生168条干扰线,使图象中的认证码不易被其它程序探测到
        g.setColor(getRandColor(160, 200));
        for (int i = 0; i < 168; i++) {
            int x = random.nextInt(width);
            int y = random.nextInt(height);
            int xl = random.nextInt(12);
            int yl = random.nextInt(12);
            g.drawLine(x, y, x + xl, y + yl);
        }
        //取随机产生的码
        String strEnsure = "";
        //6代表6位验证码,如果要生成更多位的认证码,则加大数值
        for (int i = 0; i < 6; ++i) {
            strEnsure += mapTable[(int) (mapTable.length * Math.random())];
            // 直接生成
            String str = strEnsure.substring(i, i + 1);
            // 设置随便码在背景图图片上的位置
            g.drawString(str, 13 * i + 20, 25);
        }
        // 释放图形上下文
        g.dispose();
        returnMap.put("image",image);
        returnMap.put("strEnsure",strEnsure);
        return returnMap;
    }
    public static String getImageCode() {
        //生成随机类
        Random random = new Random();
        //取随机产生的码
        String strEnsure = "";
        //6代表6位验证码,如果要生成更多位的认证码,则加大数值
        for (int i = 0; i < 6; ++i) {
            strEnsure += mapTable[(int) (mapTable.length * Math.random())];
            // 直接生成
            String str = strEnsure.substring(i, i + 1);
        }
        return strEnsure;
    }
    //给定范围获得随机颜色
    static Color getRandColor(int fc, int bc) {
        Random random = new Random();
        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);
    }
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值