本文主要是介绍使用kaptcha验证码生成工具生成验证码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- maven引入jar包
- 配置
- 使用
- 前端
maven引入jar包
<!--验证码生成工具-->
<dependency><groupId>com.github.penggle</groupId><artifactId>kaptcha</artifactId><version>2.3.2</version>
</dependency>
配置
/*** Kaptcha验证码生成器* @return*/
@Bean
public Producer producer() {Properties properties=new Properties();properties.setProperty("kaptcha.border","no");properties.setProperty("kaptcha.textproducer.font.color","black");properties.setProperty("kaptcha.textproducer.char.space","4");properties.setProperty("kaptcha.textproducer.char.length","4");properties.setProperty("kaptcha.textproducer.char.string","123456789");Config config=new Config(properties);DefaultKa
这篇关于使用kaptcha验证码生成工具生成验证码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!