2021
05-23
05-23
SpringBoot使用Captcha生成验证码
1.基本结构使用Captcha生成验证码,利用Redis存储验证码Redis中的结构为,Key是32位的UUID,Value为Captcha的4位随机字母以及数字的集合设定Redis过期时间为1min,即可实现过期验证码的自动失效2.Kaptcha的依赖基本的依赖这里不再叙述,主要说一下要导入Captcha的依赖<!--Kaptcha--><dependency><groupId>com.github.penggle</groupId><artifactId>kaptcha</artifactId><version>2.3.2</version></dependency>所有的...
继续阅读 >