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; } }