springboot生成验证码kaptcha

本文档介绍了如何在Spring Boot项目中集成Kaptcha库来生成验证码。首先在pom.xml中添加Kaptcha依赖,然后创建配置类KaptchaConfig,配置验证码的样式如长度、高度、字体大小和颜色等。接着在Controller层编写方法,生成并输出验证码图像,并将其存储到session中,以便后续验证。最后通过运行项目并测试,确保验证码功能正常工作。
摘要由CSDN通过智能技术生成
  • 1.导入pom.xml
<!--   生成验证码     -->
        <dependency>
            <groupId>com.github.penggle</groupId>
            <artifactId>kaptcha</artifactId>
            <version>2.3.2</version>
        </dependency>

导入pom文件后开始写配置类。

  • 2.配置类代码

config包下面新建一个kaptchaProducer类。

import com.google.code.kaptcha.Producer;
import com.google.code.kaptcha.impl.DefaultKaptcha;
import com.google.code.kaptcha.util.Config;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Service;

import javax.naming.Context;
import javax.swing.text.DefaultEditorKit;
import java.util.Properties;
@Configuration
public class KaptchaConfig {
    @Bean
    public Producer kaptchaProducer(){
        Properties properties = new Properties();
        properties.setProperty("kaptcha.image.width","100");//框的长度
        properties.setProperty("kaptcha.image.height","40");//框的高度
        properties.setProperty("kaptcha.textproducer.font.size","32");//字体大小
        properties.setProperty("kaptcha.textproducer.font.color","0,0,0");//字体颜色
        properties.setProperty("kaptcha.textproducer.char.string","0123456789QWERTYUIOPASDFGHJKLZXCVBNM");//生成验证码的样本集合
        properties.setProperty("kaptcha.textproducer.char.length","4");//生成的随机字符数
        properties.setProperty("kaptcha.noise.impl","com.google.code.kaptcha.impl.NoNoise");//干扰类,噪声、阴影  默认防破解

        DefaultKaptcha kaptcha = new DefaultKaptcha();
        Config config = new Config(properties);
        kaptcha.setConfig(config);
        return kaptcha;
    }
}
  • 3.使用controller层对配置类进行测试
    @Controller
    public class kaptchaController {
	@RequestMapping(path = "/kaptcha",method = RequestMethod.GET)
    @ResponseBody
    public void getKaptcha(HttpServletResponse response, HttpSession session){
        //生成验证码
        String text = kaptchaProducer.createText();
        BufferedImage image = kaptchaProducer.createImage(text);

        //将验证码存入session
        session.setAttribute("kaptcha",text);

        //将图片输出给浏览器
        response.setContentType("image/png");
        try {
            OutputStream os = response.getOutputStream();
            ImageIO.write(image,"png",os);

        }catch (IOException e){
            logger.error("响应验证码失败:"+e.getMessage());
        }
    }
}
  • 4.运行项目进行测试:

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值