首页>代码>基于SpringBoot+Vue实现的小区物业管理系统>/em_server/src/main/java/com/kum/config/CaptchaConfig.java
package com.kum.config;

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 CaptchaConfig {

    @Bean(name = "captchaProducer")
    public DefaultKaptcha getKaptcheCode() {
        DefaultKaptcha defaultKaptcha = new DefaultKaptcha();
        Properties properties = new Properties();
        properties.setProperty("kaptcha.border", "no");
        properties.setProperty("kaptcha.textproducer.font.color", "black");
        properties.setProperty("kaptcha.image.width", "100");
        properties.setProperty("kaptcha.image.height", "36");
        properties.setProperty("kaptcha.textproducer.font.size", "30");
        properties.setProperty("kaptcha.obscurificator.impl", "com.google.code.kaptcha.impl.ShadowGimpy");
        properties.setProperty("kaptcha.session.key", "code");
        properties.setProperty("kaptcha.noise.impl", "com.google.code.kaptcha.impl.NoNoise");
        properties.setProperty("kaptcha.background.clear.from", "232,240,254");
        properties.setProperty("kaptcha.background.clear.to", "232,240,254");
        properties.setProperty("kaptcha.textproducer.char.length", "4");
        properties.setProperty("kaptcha.textproducer.font.names", "彩云,宋体,楷体,微软雅黑");
        Config config = new Config(properties);
        defaultKaptcha.setConfig(config);
        return defaultKaptcha;
    }

}
最近下载更多
陈小灏  LV18 2月25日
102404426  LV8 2月24日
qq970040477  LV24 2024年12月5日
citybird  LV4 2024年11月18日
sodkj123  LV16 2024年10月8日
ma406805131  LV19 2024年5月7日
jsjsjsjsbdbshns  LV1 2024年4月27日
860421  LV3 2024年4月18日
YhXyHx523  LV6 2024年4月13日
denglu123321  LV4 2024年4月11日
最近浏览更多
tongguan00  LV2 4月1日
暂无贡献等级
YonderSkey 3月18日
暂无贡献等级
yangctz  LV25 3月15日
可是不知道么  LV23 3月8日
PLVAE_514  LV2 3月7日
orang801  LV2 3月4日
102404426  LV8 2月24日
qwerty11 2月20日
暂无贡献等级
陈小灏  LV18 2月18日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友