easy_captcha算术验证码请求与验证,只保留“+”,“*”

请求方法:

	@GetMapping(value = "/validateCodeLatest")
    public void validateCodeLatest(HttpServletRequest request, HttpServletResponse response) throws ScriptException, IOException {
    	response.setHeader("Cache-Control", "no-cache");
        //算术验证码
        ArithmeticCaptcha arithmeticCaptcha = userService.checkResult();
        String verifyCode = arithmeticCaptcha.getArithmeticString();  // 获取运算的公式:3+2*7=?
        log.info("validateCode1:"+verifyCode);
        verifyCode=verifyCode.replaceAll("x","*");
        ScriptEngine jse = new ScriptEngineManager().getEngineByName("JavaScript");
        Session session = SecurityUtils.getSubject().getSession();
        session.removeAttribute("validateCode");
        session.setAttribute("validateCode", jse.eval(verifyCode.substring(0, verifyCode.length() - 2)).toString());
        response.setContentType("image/jpeg");
        arithmeticCaptcha.out(response.getOutputStream());
    }

验证方法:

public void isValidateCode(HttpServletRequest request, User user) {
        Session session = SecurityUtils.getSubject().getSession();
        String code = (String) session.getAttribute("validateCode");
        String submitCode =user.getValidateCode();
        log.info("用户输入的验证码:"+submitCode+" session中的验证码:"+code);
        String sysValidateCode = sysSettingMapper.getSettingByName("sys_validate_code");
        if(!StringUtils.equals(sysValidateCode, submitCode.toLowerCase())){
            if (StringUtils.isEmpty(submitCode) || !StringUtils.equals(code, submitCode.toLowerCase())) {
           return ResponseEntity.ok(new JsonResult(false, "验证码失效或者输入不正确,请重新输入验证码或者刷新验证码再输入!"));
                }
        }
    }
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值