34 lines
988 B
Java
34 lines
988 B
Java
|
|
|
|
package com.zcloud.config;
|
|
|
|
import com.google.code.kaptcha.impl.DefaultKaptcha;
|
|
import com.google.code.kaptcha.util.Config;
|
|
import org.apache.kafka.clients.consumer.ConsumerConfig;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import java.util.Properties;
|
|
|
|
|
|
/**
|
|
* 生成验证码配置
|
|
*
|
|
*/
|
|
@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.font.names", "Arial,Courier,cmr10,宋体,楷体,微软雅黑");
|
|
Config config = new Config(properties);
|
|
DefaultKaptcha defaultKaptcha = new DefaultKaptcha();
|
|
defaultKaptcha.setConfig(config);
|
|
return defaultKaptcha;
|
|
}
|
|
}
|