Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hiwepy/kaptcha-spring-boot-starter
kaptcha for Spring boot
https://github.com/hiwepy/kaptcha-spring-boot-starter
kaptcha spring-boot spring-boot-starter
Last synced: 6 days ago
JSON representation
kaptcha for Spring boot
- Host: GitHub
- URL: https://github.com/hiwepy/kaptcha-spring-boot-starter
- Owner: hiwepy
- License: apache-2.0
- Created: 2017-11-07T08:33:38.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-06T11:27:38.000Z (3 months ago)
- Last Synced: 2024-11-24T12:53:13.595Z (29 days ago)
- Topics: kaptcha, spring-boot, spring-boot-starter
- Language: Java
- Size: 79.1 KB
- Stars: 11
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kaptcha-spring-boot-starter
### 说明
> 基于 Kaptcha 验证码开源项目实现的验证码 Spring Boot Starter 实现
1. KaptchaServlet 自动注册
2. KaptchaServlet 逻辑扩展实现,增加 CaptchaResolver 接口定义,实现基于Session、Cookie的默认验证码存储和解析实现
3. 支持自定义CaptchaResolver实现,扩展基于外部存储,如 Database、Cache的验证码存储和解析### Maven
``` xml
com.github.hiwepy
kaptcha-spring-boot-starter
${project.version}```
### Sample : CaptchaResolver Extends
[https://github.com/vindell/spring-boot-starter-samples/tree/master/spring-boot-sample-kaptcha](https://github.com/vindell/spring-boot-starter-samples/tree/master/spring-boot-sample-kaptcha "spring-boot-sample-kaptcha")