update 优化代码与注释
parent
73eb9cc7d7
commit
3e7dd75f6d
@ -1,62 +1,62 @@
|
|||||||
package com.ruoyi.gateway.config;
|
package com.ruoyi.gateway.config;
|
||||||
|
|
||||||
import cn.hutool.captcha.CaptchaUtil;
|
import cn.hutool.captcha.CaptchaUtil;
|
||||||
import cn.hutool.captcha.CircleCaptcha;
|
import cn.hutool.captcha.CircleCaptcha;
|
||||||
import cn.hutool.captcha.LineCaptcha;
|
import cn.hutool.captcha.LineCaptcha;
|
||||||
import cn.hutool.captcha.ShearCaptcha;
|
import cn.hutool.captcha.ShearCaptcha;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
import org.springframework.context.annotation.Lazy;
|
import org.springframework.context.annotation.Lazy;
|
||||||
|
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 验证码配置
|
* 验证码配置
|
||||||
*
|
*
|
||||||
* @author Lion Li
|
* @author Lion Li
|
||||||
*/
|
*/
|
||||||
@Configuration
|
@Configuration
|
||||||
public class CaptchaConfig {
|
public class CaptchaConfig {
|
||||||
|
|
||||||
private final int width = 160;
|
private static final int WIDTH = 160;
|
||||||
private final int height = 60;
|
private static final int HEIGHT = 60;
|
||||||
private final Color background = Color.PINK;
|
private static final Color BACKGROUND = Color.PINK;
|
||||||
private final Font font = new Font("Arial", Font.BOLD, 48);
|
private static final Font FONT = new Font("Arial", Font.BOLD, 48);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 圆圈干扰验证码
|
* 圆圈干扰验证码
|
||||||
*/
|
*/
|
||||||
@Lazy
|
@Lazy
|
||||||
@Bean
|
@Bean
|
||||||
public CircleCaptcha circleCaptcha() {
|
public CircleCaptcha circleCaptcha() {
|
||||||
CircleCaptcha captcha = CaptchaUtil.createCircleCaptcha(width, height);
|
CircleCaptcha captcha = CaptchaUtil.createCircleCaptcha(WIDTH, HEIGHT);
|
||||||
captcha.setBackground(background);
|
captcha.setBackground(BACKGROUND);
|
||||||
captcha.setFont(font);
|
captcha.setFont(FONT);
|
||||||
return captcha;
|
return captcha;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 线段干扰的验证码
|
* 线段干扰的验证码
|
||||||
*/
|
*/
|
||||||
@Lazy
|
@Lazy
|
||||||
@Bean
|
@Bean
|
||||||
public LineCaptcha lineCaptcha() {
|
public LineCaptcha lineCaptcha() {
|
||||||
LineCaptcha captcha = CaptchaUtil.createLineCaptcha(width, height);
|
LineCaptcha captcha = CaptchaUtil.createLineCaptcha(WIDTH, HEIGHT);
|
||||||
captcha.setBackground(background);
|
captcha.setBackground(BACKGROUND);
|
||||||
captcha.setFont(font);
|
captcha.setFont(FONT);
|
||||||
return captcha;
|
return captcha;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 扭曲干扰验证码
|
* 扭曲干扰验证码
|
||||||
*/
|
*/
|
||||||
@Lazy
|
@Lazy
|
||||||
@Bean
|
@Bean
|
||||||
public ShearCaptcha shearCaptcha() {
|
public ShearCaptcha shearCaptcha() {
|
||||||
ShearCaptcha captcha = CaptchaUtil.createShearCaptcha(width, height);
|
ShearCaptcha captcha = CaptchaUtil.createShearCaptcha(WIDTH, HEIGHT);
|
||||||
captcha.setBackground(background);
|
captcha.setBackground(BACKGROUND);
|
||||||
captcha.setFont(font);
|
captcha.setFont(FONT);
|
||||||
return captcha;
|
return captcha;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue