springboot生成验证码

本文介绍如何使用Spring框架集成Google Kaptcha组件来生成验证码图片,并详细展示了配置过程及代码实现细节。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

import java.awt.image.BufferedImage;
import java.io.IOException;

import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;

import com.google.code.kaptcha.Producer;

@Controller
public class UserHandler {
@Autowired
private Producer kaptcha;

@GetMapping("/validcode")
public void getKaptcha(HttpServletResponse response,HttpSession session) {
	//生成验证码字符串和图片
	String code = kaptcha.createText(); 
	BufferedImage image = kaptcha.createImage(code);
	//保存到session
	session.setAttribute("code", code);
	try {
		//响应图片到浏览器
		response.setContentType("image/png");
		ImageIO.write(image, "png", response.getOutputStream());
	} catch (IOException e) {
		e.printStackTrace();
	}
}

}

import com.google.code.kaptcha.Producer;
import com.google.code.kaptcha.impl.DefaultKaptcha;
import com.google.code.kaptcha.util.Config;

配合该文件
@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”, “0123456789ABCDEFGHIJKLMNOPQRSTUVWXYAZ”);
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;
}

}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值