package com.miaxis.config;
import com.google.code.kaptcha.impl.DefaultKaptcha;
import com.google.code.kaptcha.util.Config;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.util.Properties;
/**
* Kaptcha配置类
* 用于生成图形验证码
*/
@Configuration
public class KaptchaConfig {
/**
* 边框
*/
@Value("${kaptcha.border}")
private String border;
/**
* 边框颜色
*/
@Value("${kaptcha.border.color}")
private String borderColor;
/**
* 字体颜色
*/
@Value("${kaptcha.textproducer.font.color}")
private String textproducerFontColor;
/**
* 字体大小
*/
@Value("${kaptcha.textproducer.font.size}")
private String textproducerFontSize;
/**
* 字体样式
*/
@Value("${kaptcha.textproducer.font.names}")
private String textproducerFontNames;
/**
* 验证码长度
*/
@Value("${kaptcha.textproducer.char.length}")
private String textproducerCharLength;
/**
* 图片宽度
*/
@Value("${kaptcha.image.width}")
private String imageWidth;
/**
* 图片高度
*/
@Value("${kaptcha.image.height}")
private String imageHeight;
/**
* 存储的 Session Key
*/
@Value("${kaptcha.session.key}")
private String sessionKey;
/**
* 配置 Kapcha 参数
* @return
*/
@Bean
public DefaultKaptcha getDefaultKapcha() {
DefaultKaptcha defaultKaptcha = new DefaultKaptcha();
Properties properties = new Properties();
properties.setProperty("kaptcha.border", border);
properties.setProperty("kaptcha.border.color", borderColor);
properties.setProperty("kaptcha.textproducer.font.color", textproducerFontColor);
properties.setProperty("kaptcha.textproducer.font.size", textproducerFontSize);
properties.setProperty("kaptcha.textproducer.font.names", textproducerFontNames);
properties.setProperty("kaptcha.textproducer.char.length", textproducerCharLength);
properties.setProperty("kaptcha.image.width", imageWidth);
properties.setProperty("kaptcha.image.height", imageHeight);
properties.setProperty("kaptcha.session.key", sessionKey);
//图片的干扰样式:默认存在无规则划线干扰
//无干扰:com.google.code.kaptcha.impl.NoNoise
//properties.setProperty("kaptcha.noise.impl","com.google.code.kaptcha.impl.NoNoise");
//图片干扰颜色:默认为黑色
properties.setProperty("kaptcha.noise.color", "black");
//图片渲染效果:默认水纹
// 水纹com.google.code.kaptcha.impl.WaterRipple
// 鱼眼com.google.code.kaptcha.impl.FishEyeGimpy
// 阴影com.google.code.kaptcha.impl.ShadowGimpy
properties.setProperty("kaptcha.obscurificator.impl",
"com.google.code.kaptcha.impl.ShadowGimpy");
Config config = new Config(properties);
defaultKaptcha.setConfig(config);
return defaultKaptcha;
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
spring_boot_kaptcha.zip (14个子文件)
spring_boot_kaptcha
pom.xml 2KB
spring_boot_kaptcha.iml 81B
src
test
java
main
resources
templates
code.html 311B
application.yml 736B
java
com
miaxis
Application.java 312B
controller
ImgController.java 3KB
util
CodeUtil.java 704B
config
KaptchaConfig.java 3KB
.idea
jarRepositories.xml 887B
workspace.xml 4KB
misc.xml 526B
compiler.xml 799B
.gitignore 268B
encodings.xml 191B
共 14 条
- 1
资源评论
mickey0380
- 粉丝: 2120
- 资源: 83
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功