Spring boot 实现验证码
在Spring Boot中实现验证码功能,你可以使用spring-boot-starter-web
依赖来快速搭建一个Web应用,并使用kaptcha
库来生成验证码。以下是一个简单的例子:
- 添加依赖到
pom.xml
:
<dependencies>
<!-- Spring Boot Web Starter -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Kaptcha 验证码生成库 -->
<dependency>
<groupId>com.github.penggle</groupId>
<artifactId>kaptcha</artifactId>
<version>2.3.2</version>
</dependency>
</dependencies>
- 配置Kaptcha生成器:
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;
@Configuration
public class KaptchaConfig {
@Bean
public DefaultKaptcha kaptcha() {
DefaultKaptcha kaptcha = new DefaultKaptcha();
Properties properties = new Properties();
// 设置边框
properties.setProperty("kaptcha.border", "no");
// 设置边距
properties.setProperty("kaptcha.border.thickness", "1");
// 设置背景颜色
properties.setProperty("kaptcha.background.clear.from", "white");
properties.setProperty("kaptcha.background.clear.to", "white");
// 设置文本颜色
properties.setProperty("kaptcha.textproducer.font.color", "black");
// 设置字体大小
properties.setProperty("kaptcha.textproducer.font.size", "40");
// 设置字体
properties.setProperty("kaptcha.textproducer.font.names", "Arial,Courier");
// 设置验证码长度
properties.setProperty("kaptcha.textproducer.char.length", "4");
// 设置验证码Noise,即噪点
properties.setProperty("kaptcha.noise.impl", "com.google.code.kaptcha.impl.NoNoise");
// 设置Session Key
properties.setProperty("kaptcha.session.key", "code");
Config config = new Config(properties);
kaptcha.setConfig(config);
return kaptcha;
}
}
- 创建Controller处理验证码请求:
import com.google.code.kaptcha.Constants;
import com.google.code.kaptcha.Producer;
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.http.HttpServletRequest;
impo
评论已关闭