91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

使用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

缙云县| 潼南县| 新竹市| 海盐县| 阿瓦提县| 大荔县| 琼海市| 防城港市| 安吉县| 道孚县| 济南市| 奎屯市| 京山县| 富顺县| 留坝县| 三台县| 安徽省| 神木县| 哈巴河县| 喀喇| 临夏市| 岳池县| 武功县| 宁南县| 扬州市| 耿马| 上蔡县| 邵武市| 衡水市| 塔城市| 阳西县| 阿尔山市| 东阳市| 高邑县| 蒲江县| 通渭县| 彭州市| 平顺县| 名山县| 白沙| 安丘市|