zqy
2025-09-21 bd2df0a3e0634bb5469472f10315797365748559
ruoyi-admin/src/main/java/com/ruoyi/web/controller/common/CaptchaController.java
@@ -74,7 +74,7 @@
            capStr = code = captchaProducer.createText();
            image = captchaProducer.createImage(capStr);
        }
        System.out.println(code);
        redisCache.setCacheObject(verifyKey, code, Constants.CAPTCHA_EXPIRATION, TimeUnit.MINUTES);
        // 转换流信息写出
        FastByteArrayOutputStream os = new FastByteArrayOutputStream();
@@ -89,6 +89,8 @@
        ajax.put("uuid", uuid);
        ajax.put("img", Base64.encode(os.toByteArray()));
        ajax.put("imgCode", code);
        return ajax;
    }
}