package com.landtool.lanbase.config;
|
|
import java.util.Properties;
|
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
|
import com.google.code.kaptcha.impl.DefaultKaptcha;
|
import com.google.code.kaptcha.util.Config;
|
|
/**
|
* @author lanbase
|
* @Description: TODO(生成验证码配置)
|
* @date 2017-6-23 15:07
|
*/
|
@Configuration
|
public class KaptchaConfig {
|
|
@Bean
|
public DefaultKaptcha producer() {
|
Properties properties = new Properties();
|
properties.put("kaptcha.border", "no");
|
properties.put("kaptcha.textproducer.font.color", "black");
|
properties.put("kaptcha.textproducer.char.space", "5");
|
properties.put("kaptcha.textproducer.char.length", "4");
|
Config config = new Config(properties);
|
DefaultKaptcha defaultKaptcha = new DefaultKaptcha();
|
defaultKaptcha.setConfig(config);
|
return defaultKaptcha;
|
}
|
|
}
|