时间:2021-05-20
kaptcha是一个开源的验证码实现库
1.添加依赖
<dependency> <groupId>com.github.axet</groupId> <artifactId>kaptcha</artifactId> <version>0.0.9</version></dependency>2.添加配置类
配置验证码的生成属性
package com.dream.road.config;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 java.util.Properties;@Configurationpublic class KaptchaConfig { @Bean public DefaultKaptcha producer() { Properties properties = new Properties(); // 设置边框 properties.put("kaptcha.border", "yes"); // 设置边框颜色 properties.put("kaptcha.border.color", "105,179,90"); // 设置字体颜色 properties.put("kaptcha.textproducer.font.color", "black"); // 设置图片宽度 properties.put("kaptcha.image.width", "160"); // 设置图片高度 properties.put("kaptcha.image.height", "50"); //设置字体尺寸 properties.put("kaptcha.textproducer.font.size", "30"); // 设置验证码长度 properties.put("kaptcha.textproducer.char.length", "5"); // 设置字体 properties.put("kaptcha.textproducer.font.names", "宋体,楷体,黑体"); Config config = new Config(properties); DefaultKaptcha defaultKaptcha = new DefaultKaptcha(); defaultKaptcha.setConfig(config); return defaultKaptcha; }}复制代码
参数:
3.生成验证码api
package com.dream.road.controller;import com.google.code.kaptcha.Constants;import com.google.code.kaptcha.Producer;import org.apache.tomcat.util.http.fileupload.IOUtils;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RestController;import javax.imageio.ImageIO;import javax.servlet.ServletException;import javax.servlet.ServletOutputStream;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import java.awt.image.BufferedImage;import java.io.IOException;@RestControllerpublic class LoginController { @Autowired private Producer producer; @GetMapping("captcha.jpg") public void captcha(HttpServletResponse response, HttpServletRequest request) throws ServletException, IOException { response.setHeader("Cache-Control", "no-store, no-cache"); response.setContentType("image/jpeg"); // 生成文字验证码 String text = producer.createText(); // 生成图片验证码 BufferedImage image = producer.createImage(text); // 保存到验证码到 session request.getSession().setAttribute(Constants.KAPTCHA_SESSION_KEY, text); ServletOutputStream out = response.getOutputStream(); ImageIO.write(image, "jpg", out); IOUtils.closeQuietly(out); }}4.测试
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
kaptcha是一个简单好用的验证码生成工具,通过配置,可以自己定义验证码大小、颜色、显示的字符等等。下面就来讲一下如何使用kaptcha生成验证码以及在服务器
前言:关于kaptcha简介以及spring整合kaptcha,我在另一篇文章中已详细讲解,请参考:spring整合kaptcha验证码。本文将介绍spring
kaptcha简介:kaptcha是一个很有用的验证码生成工具,由于它有许多可配置项,所以用它可以简单快捷的生成各式各样的验证码。开发工具及使用的核心技术:1、
介绍:kaptcha是谷歌开源的非常实用的验证码生成工具一、导入jar包com.github.pengglekaptcha2.3.2二、编写kaptcha配置类
本文实例为大家分享了SpringBoot集成kaptcha验证码的具体代码,供大家参考,具体内容如下1.kaptcha相关介绍Kaptcha是一个基于Simpl