在一个web应用中验证码是一个常见的元素。不管是防止机器人还是爬虫都有一定的作用,我们是自己编写生产验证码的工具类,也可以使用一些比较方便的验证码工具。
本文介绍 SpringBoot 和 Kaptcha 集成。
方法二、基于XML配置方式
1、在resources下创建myKaptcher.xml文件
2、然后在启动类Application中加载配置
两种配置方式在springboot中均可,这里推荐前者。
具体参数配置如下
直接访问 getKaptchaImage 就能显示图片
http://localhost:8080/forum/getKaptchaImage
在页面中显示,只需要添加下面代码
HTML
JS
最终效果如下
本文介绍 SpringBoot 和 Kaptcha 集成。
一、pom.xml
- <dependency>
- <groupId>com.github.penggle</groupId>
- <artifactId>kaptcha</artifactId>
- <version>2.3.2</version>
- </dependency>
二、配置验证码Kaptcha相关设置
- package com.liuyanzhao.forum.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;
- /**
- * @author 言曌
- * @date 2018/5/4 下午12:44
- */
- @Configuration
- public class KaptchaConfig {
- @Bean(name="captchaProducer")
- public DefaultKaptcha getKaptchaBean(){
- DefaultKaptcha defaultKaptcha=new DefaultKaptcha();
- Properties properties=new Properties();
- properties.setProperty("kaptcha.textproducer.char.string", "123456789");//验证码字符范围
- properties.setProperty("kaptcha.border.color", "245,248,249");//图片边框颜色
- properties.setProperty("kaptcha.textproducer.font.color", "black");//字体颜色
- properties.setProperty("kaptcha.textproducer.char.space", "2");//文字间隔
- properties.setProperty("kaptcha.image.width", "125");//图片宽度
- properties.setProperty("kaptcha.image.height", "45");//图片高度
- properties.setProperty("kaptcha.session.key", "code");//session的key
- properties.setProperty("kaptcha.textproducer.char.length", "4");//长度
- properties.setProperty("kaptcha.textproducer.font.names", "宋体,楷体,微软雅黑");//字体
- Config config=new Config(properties);
- defaultKaptcha.setConfig(config);
- return defaultKaptcha;
- }
- }
方法二、基于XML配置方式
1、在resources下创建myKaptcher.xml文件
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
- <bean id="captchaProducer" class="com.google.code.kaptcha.impl.DefaultKaptcha">
- <property name="config">
- <bean class="com.google.code.kaptcha.util.Config">
- <constructor-arg type="java.util.Properties">
- <props>
- <prop key = "kaptcha.border ">yes</prop>
- <prop key="kaptcha.border.color">105,179,90</prop>
- <prop key="kaptcha.textproducer.font.color">blue</prop>
- <prop key="kaptcha.image.width">100</prop>
- <prop key="kaptcha.image.height">50</prop>
- <prop key="kaptcha.textproducer.font.size">27</prop>
- <prop key="kaptcha.session.key">code</prop>
- <prop key="kaptcha.textproducer.char.length">4</prop>
- <prop key="kaptcha.textproducer.font.names">宋体,楷体,微软雅黑</prop>
- <prop key="kaptcha.textproducer.char.string">23456789ABCEFGHJKMNOPQRSTUVWXYZ</prop>
- <prop key="kaptcha.obscurificator.impl">com.google.code.kaptcha.impl.WaterRipple</prop>
- <prop key="kaptcha.noise.color">black</prop>
- <prop key="kaptcha.noise.impl">com.google.code.kaptcha.impl.NoNoise</prop>
- <!--<prop key="kaptcha.noise.impl">com.google.code.kaptcha.impl.DefaultNoise</prop>-->
- <prop key="kaptcha.background.clear.from">185,56,213</prop>
- <prop key="kaptcha.background.clear.to">white</prop>
- <prop key="kaptcha.textproducer.char.space">3</prop>
- </props>
- </constructor-arg>
- </bean>
- </property>
- </bean>
- </beans>
2、然后在启动类Application中加载配置
- @EnableTransactionManagement// 启动注解事务管理,等同于xml配置方式的 <tx:annotation-driven />
- @SpringBootApplication
- @EnableScheduling//启动注解定时任务
- @MapperScan(basePackages = "com.liuyanzhao.mapper")
- @ImportResource(locations={"classpath:mykaptcha.xml"})
- public class Application extends SpringBootServletInitializer {
- public static void main(String[] args) throws Exception {
- SpringApplication.run(Application.class, args);
- }
- }
两种配置方式在springboot中均可,这里推荐前者。
具体参数配置如下
Constant | 描述 | 默认值 |
kaptcha.border | 图片边框,合法值:yes , no | yes |
kaptcha.border.color | 边框颜色,合法值: r,g,b (and optional alpha) 或者 white,black,blue. | black |
kaptcha.border.thickness | 边框厚度,合法值:>0 | 1 |
kaptcha.image.width | 图片宽 | 200 |
kaptcha.image.height | 图片高 | 50 |
kaptcha.producer.impl | 图片实现类 | com.google.code.kaptcha.impl.DefaultKaptcha |
kaptcha.textproducer.impl | 文本实现类 | com.google.code.kaptcha.text.impl.DefaultTextCreator |
kaptcha.textproducer.char.string | 文本集合,验证码值从此集合中获取 | abcde2345678gfynmnpwx |
kaptcha.textproducer.char.length | 验证码长度 | 5 |
kaptcha.textproducer.font.names | 字体 | Arial, Courier |
kaptcha.textproducer.font.size | 字体大小 | 40px. |
kaptcha.textproducer.font.color | 字体颜色,合法值: r,g,b 或者 white,black,blue. | black |
kaptcha.textproducer.char.space | 文字间隔 | 2 |
kaptcha.noise.impl | 干扰实现类 | com.google.code.kaptcha.impl.DefaultNoise |
kaptcha.noise.color | 干扰颜色,合法值: r,g,b 或者 white,black,blue. | black |
kaptcha.obscurificator.impl | 图片样式: 水纹com.google.code.kaptcha.impl.WaterRipple 鱼眼com.google.code.kaptcha.impl.FishEyeGimpy 阴影com.google.code.kaptcha.impl.ShadowGimpy | com.google.code.kaptcha.impl.WaterRipple |
kaptcha.background.impl | 背景实现类 | com.google.code.kaptcha.impl.DefaultBackground |
kaptcha.background.clear.from | 背景颜色渐变,开始颜色 | light grey |
kaptcha.background.clear.to | 背景颜色渐变,结束颜色 | white |
kaptcha.word.impl | 文字渲染器 | com.google.code.kaptcha.text.impl.DefaultWordRenderer |
kaptcha.session.key | session key | KAPTCHA_SESSION_KEY |
kaptcha.session.date | session date | KAPTCHA_SESSION_DATE |
三、Controller
- package com.liuyanzhao.forum.controller.common;
- import java.awt.image.BufferedImage;
- import javax.imageio.ImageIO;
- import javax.servlet.ServletOutputStream;
- import lombok.extern.apachecommons.CommonsLog;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.GetMapping;
- import com.google.code.kaptcha.Constants;
- import com.google.code.kaptcha.Producer;
- /**
- * @author 言曌
- * @date 2018/5/4 下午12:36
- */
- @CommonsLog
- @Controller
- public class KaptchaController extends BaseController {
- @Autowired
- private Producer captchaProducer;
- @GetMapping("/getKaptchaImage")
- public void getKaptchaImage() throws Exception {
- response.setDateHeader("Expires", 0);
- // Set standard HTTP/1.1 no-cache headers.
- response.setHeader("Cache-Control", "no-store, no-cache, must-revalidate");
- // Set IE extended HTTP/1.1 no-cache headers (use addHeader).
- response.addHeader("Cache-Control", "post-check=0, pre-check=0");
- // Set standard HTTP/1.0 no-cache header.
- response.setHeader("Pragma", "no-cache");
- // return a jpeg
- response.setContentType("image/jpeg");
- // create the text for the image
- String capText = captchaProducer.createText();
- // store the text in the session
- //request.getSession().setAttribute(Constants.KAPTCHA_SESSION_KEY, capText);
- //将验证码存到session
- session.setAttribute(Constants.KAPTCHA_SESSION_KEY, capText);
- log.info(capText);
- // create the image with the text
- BufferedImage bi = captchaProducer.createImage(capText);
- ServletOutputStream out = response.getOutputStream();
- // write the data out
- ImageIO.write(bi, "jpg", out);
- try {
- out.flush();
- } finally {
- out.close();
- }
- }
- }
四、验证码显示
直接访问 getKaptchaImage 就能显示图片
http://localhost:8080/forum/getKaptchaImage
在页面中显示,只需要添加下面代码
HTML
- <img th:src="@{/getKaptchaImage}" width="80" height="34" class="captcha changeCaptcha pull-left margin-r-5" alt="验证码"/>
- <a href="javascript:void(0)" class="changeCaptcha">换一张</a>
JS
- //切换验证码
- $(document).on('click', '.changeCaptcha', function () {
- var url = _ctx + "/getKaptchaImage";
- $(".captcha").attr("src", url);
- })
最终效果如下
您可以选择一种方式赞助本站
支付宝扫一扫赞助
微信钱包扫描赞助
赏