springboot集成验证码

        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>5.8.16</version>
        </dependency>
   @GetMapping(value = "/code")
    public void code(HttpServletRequest request, HttpServletResponse response) throws IOException {
        CircleCaptcha captcha = CaptchaUtil.createCircleCaptcha(200, 100, 4, 5);
        String code = captcha.getCode();
        captcha.write(response.getOutputStream());
    }

 

posted @ 2024-04-15 14:36  _Lawrence  阅读(7)  评论(0)    收藏  举报