中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用springboot整合kaptcha實現生成驗證碼功能

發布時間:2020-10-26 16:25:52 來源:億速云 閱讀:427 作者:Leah 欄目:開發技術

使用springboot整合kaptcha實現生成驗證碼功能?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一、導入jar包

<!-- kaptcha驗證碼 -->
<dependency>
	<groupId>com.github.penggle</groupId>
	<artifactId>kaptcha</artifactId>
	<version>2.3.2</version>
</dependency>

二、編寫kaptcha配置類

package com.zym.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 KaptchaConfig {

  @Bean
  public DefaultKaptcha defaultKaptcha(){
    DefaultKaptcha kaptcha = new DefaultKaptcha();

    Properties properties = new Properties();
    //邊框
    properties.setProperty("kaptcha.border", "no");
    //字體顏色
    properties.setProperty("kaptcha.textproducer.font.color", "green");
    //圖片寬度
    properties.setProperty("kaptcha.image.width", "120");
    //圖片高度
    properties.setProperty("kaptcha.image.height", "30");
    //字體大小
    properties.setProperty("kaptcha.textproducer.font.size", "20");
    //session key
    properties.setProperty("kaptcha.session.key", "kaptcha");
    //驗證碼長度
    properties.setProperty("kaptcha.textproducer.char.length", "4");
    //字體
    properties.setProperty("kaptcha.textproducer.font.names", "宋體");
    //文字間隔
    properties.setProperty("kaptcha.textproducer.char.space", "10");
    //噪點實現類
    properties.setProperty("kaptcha.noise.impl", "com.google.code.kaptcha.impl.NoNoise");
    //圖片樣式-陰影
    properties.setProperty("kaptcha.obscurificator.impl", "com.google.code.kaptcha.impl.ShadowGimpy");

    Config config = new Config(properties);
    kaptcha.setConfig(config);
    return kaptcha;
  }
}

三、編寫接口

package com.zym.controller;

import com.google.code.kaptcha.impl.DefaultKaptcha;
import org.apache.tomcat.util.http.fileupload.IOUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.imageio.ImageIO;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.awt.image.BufferedImage;
import java.io.IOException;

@RestController
public class KaptchaController {

  @Autowired
  private DefaultKaptcha defaultKaptcha;

  @GetMapping("/kaptcha")
  public void getKaptcha(HttpServletRequest request, HttpServletResponse response) throws IOException {
    //設置響應頭
    response.setHeader("Cache-Control", "no-cache");
    response.setHeader("Pragma", "no-cache");
    response.setContentType("image/jpeg");

    String text = defaultKaptcha.createText();
    HttpSession session = request.getSession();
    //將驗證碼存入session
    session.setAttribute("code", text);
    //創建驗證碼圖片
    BufferedImage image = defaultKaptcha.createImage(text);
    ServletOutputStream os = response.getOutputStream();
    ImageIO.write(image, "jpg", os);
    IOUtils.closeQuietly(os);
  }
}

四、測試接口

使用PostMan:
輸入url:localhost:8080/kaptcha
成功得到驗證碼圖片,大功告成!

使用springboot整合kaptcha實現生成驗證碼功能

關于使用springboot整合kaptcha實現生成驗證碼功能問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

拜泉县| 腾冲县| 磐石市| 河曲县| 汪清县| 尖扎县| 饶平县| 黄梅县| 新营市| 台前县| 柞水县| 浦江县| 敦煌市| 富川| 潼南县| 土默特左旗| 永胜县| 芷江| 吐鲁番市| 铅山县| 龙南县| 黄石市| 利川市| 龙游县| 濉溪县| 永康市| 东辽县| 巴马| 元谋县| 宁南县| 梧州市| 铜陵市| 黔东| 汶川县| 武宁县| 准格尔旗| 静乐县| 武宣县| 池州市| 天水市| 呼图壁县|