溫馨提示×

溫馨提示×

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

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

怎么在Spring中利用Kaptcha開發(fā)一個(gè)谷歌驗(yàn)證碼工具

發(fā)布時(shí)間:2021-01-11 14:57:33 來源:億速云 閱讀:238 作者:Leah 欄目:開發(fā)技術(shù)

今天就跟大家聊聊有關(guān)怎么在Spring中利用Kaptcha開發(fā)一個(gè)谷歌驗(yàn)證碼工具,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

開發(fā)步驟:

1、加入依賴

<dependency>
  <groupId>com.google.code.kaptcha</groupId>
  <artifactId>kaptcha</artifactId>
  <version>2.3</version>
</dependency>

國內(nèi)鏡像無法下載該依賴,需要手動(dòng)通過jar包在本地倉庫安裝一個(gè)依賴。

安裝命令

mvn install:install-file -Dfile=jar文件的位置 -DgroupId=目標(biāo)安裝的groupid -DartifactId=目標(biāo)安裝的artifactId

-Dpackaging=jar -Dversion=版本號

2、創(chuàng)建xml配置文件

spring-context-kaptcha.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>
          <props>
            <!-- 是否顯示邊框 -->
            <prop key="kaptcha.border">yes</prop>
            <!-- 邊框顏色 -->
            <prop key="kaptcha.border.color">105,179,90</prop>
            <!-- 驗(yàn)證碼字體顏色 -->
            <prop key="kaptcha.textproducer.font.color">blue</prop>
            <!-- 驗(yàn)證碼的寬 -->
            <prop key="kaptcha.image.width">125</prop>
            <!-- 驗(yàn)證碼的高 -->
            <prop key="kaptcha.image.height">45</prop>
            <!-- 驗(yàn)證碼的字體大小 -->
            <prop key="kaptcha.textproducer.font.size">45</prop>
            <!-- 驗(yàn)證碼的session key -->
            <prop key="kaptcha.session.key">code</prop>
            <!-- 驗(yàn)證碼個(gè)數(shù) -->
            <prop key="kaptcha.textproducer.char.length">4</prop>
            <!-- 驗(yàn)證碼的字體 -->
            <prop key="kaptcha.textproducer.font.names">宋體,楷體,微軟雅黑</prop>
          </props>
        </constructor-arg>
      </bean>
    </property>
  </bean>
</beans>

注意:別忘記加載這個(gè)配置文件

3、Controller層代碼

import com.google.code.kaptcha.Constants;
import com.google.code.kaptcha.Producer;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;

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

@Controller
public class KaptchaController {

  @Autowired
  private Producer captchaProducer;

  @RequestMapping(value = "verification", method = RequestMethod.GET)
  public ModelAndView verification(HttpServletRequest request, HttpServletResponse response) throws IOException {
    System.out.println("進(jìn)入生成驗(yàn)證碼控制層");
    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");

    // 返回一個(gè)圖片
    response.setContentType("image/jpeg");

    // 創(chuàng)建text文本在圖片中
    String capText = captchaProducer.createText();

    // 將文本內(nèi)容存儲在session中
    request.getSession().setAttribute(Constants.KAPTCHA_SESSION_KEY, capText);

    // 用文本創(chuàng)建圖像
    BufferedImage bi = captchaProducer.createImage(capText);
    //servlet輸出流
    ServletOutputStream out = response.getOutputStream();
    // 寫出數(shù)據(jù)
    ImageIO.write(bi, "jpg", out);

    try {
      // 提交
      out.flush();
    } finally {
      // 提交后將輸出流關(guān)閉
      out.close();
    }
    return null;
  }
}

4、JSP代碼

將驗(yàn)證碼顯示在該圖片中。

<img id="verification" src="/verification"  title="看不清?換一張" />

5、給圖片綁定點(diǎn)擊刷新驗(yàn)證碼事件

//換驗(yàn)證碼事件
$("#verification").click(function () {
  $(this).attr("src","verification");
})

6、驗(yàn)證輸入驗(yàn)證碼

//比較驗(yàn)證碼
//Constants.KAPTCHA_SESSION_KEY 是之前生成驗(yàn)證碼存在session中的
//code是用戶點(diǎn)擊提交后,通過name屬性發(fā)送到控制層的內(nèi)容,為用戶輸入的內(nèi)容
if(!(code.equals(session.getAttribute(Constants.KAPTCHA_SESSION_KEY)))){
  //如果用戶輸入的內(nèi)容與session中的內(nèi)容不一致返回登錄頁面
  return "login";
}

看完上述內(nèi)容,你們對怎么在Spring中利用Kaptcha開發(fā)一個(gè)谷歌驗(yàn)證碼工具有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI