Spring Boot引入第三方工具EasyCaptcha,生成图形验证码(包含中文验证码和算数验证码)
在Spring Boot项目中引入EasyCaptcha库,可以通过以下步骤生成图形验证码:
- 添加EasyCaptcha依赖到
pom.xml
文件中:
<dependency>
<groupId>com.github.whvcse</groupId>
<artifactId>easy-captcha</artifactId>
<version>1.6.2</version>
</dependency>
- 创建一个Controller来处理验证码的请求:
import com.wf.captcha.*;
import com.wf.captcha.base.Captcha;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletResponse;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
@RestController
public class CaptchaController {
@GetMapping("/captcha")
public void captcha(HttpServletResponse response) throws IOException {
// 设置响应头
response.setHeader("Pragma", "no-cache");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 0);
response.setContentType("image/png");
// 创建图形验证码
SpecCaptcha captcha = new SpecCaptcha(130, 48, 5);
// 设置验证码的字符集
captcha.setCharType(Captcha.TYPE_DEFAULT); // 默认为数字和大写字母
// 或者设置为中文验证码
// captcha.setCharType(Captcha.TYPE_DEFAULT_CHINESE);
// 或者设置为算数验证码
// captcha.setArithmeticCaptcha(true);
// 生成验证码
String code = captcha.text().toLowerCase(); // 转换为小写,如果是算数验证码,则不需要转换
// 存储验证码到session中
// request.getSession().setAttribute("captcha", code);
// 将验证码画到图片中
BufferedImage image = captcha.getImage();
// 将图片输出到response中,显示在客户端
try (ByteArrayOutputStream bos = new ByteArrayOutputStream()) {
ImageIO.write(image, "png", bos);
response.getOutputStream().write(bos.toByteArray());
}
}
}
- 在需要显示验证码的地方,通过前端代码或者直接在浏览器访问
http://your-server/captcha
即可看到生成的验证码。
确保你的Spring Boot应用已经正确配置了Web MVC,并且CaptchaController
能够被Spring容器扫描和管理。
以上代码实现了生成图形验证码的功能,你可以根据需要设置验证码的类型(数字和字母、中文或算数)。在实际应用中,还需要添加验证验证码的逻辑,以确保用户输入正确的验证码来通过验证。
评论已关闭