真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何正確的使用kaptcha驗(yàn)證碼組件

本篇文章為大家展示了如何正確的使用kaptcha驗(yàn)證碼組件,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。

創(chuàng)新互聯(lián)公司服務(wù)項(xiàng)目包括枝江網(wǎng)站建設(shè)、枝江網(wǎng)站制作、枝江網(wǎng)頁(yè)制作以及枝江網(wǎng)絡(luò)營(yíng)銷(xiāo)策劃等。多年來(lái),我們專(zhuān)注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,枝江網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶(hù)以成都為中心已經(jīng)輻射到枝江省份的部分城市,未來(lái)相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶(hù)的支持與信任!

一、簡(jiǎn)單的jsp-servlet項(xiàng)目

1.添加jar包依賴(lài)

如果你使用maven來(lái)統(tǒng)一管理jar包,則在工程的pom.xml中添加dependency

 
 
  com.google.code.kaptcha 
  kaptcha 
  2.3.2 

如果是非maven管理的項(xiàng)目,則直接在官網(wǎng)下載kaptcha的jar包,然后添加到項(xiàng)目lib庫(kù)中,下載地址:

http://code.google.com/p/kaptcha/downloads/list

2.配置web.xml

上面說(shuō)了,kaptcha都是在web.xml中配置,我們必須在web.xml中配置kaptcha的servlet,具體如下:

 
  Kaptcha 
  com.google.code.kaptcha.servlet.KaptchaServlet 
 
 
  Kaptcha 
  /kaptcha.jpg 

其中servlet的url-pattern可以自定義。

kaptcha所有的參數(shù)都有默認(rèn)的配置,如果我們不顯示配置的話(huà),會(huì)采取默認(rèn)的配置。

如果要顯示配置kaptcha,在配置kaptcha對(duì)應(yīng)的Servlet時(shí),在init-param增加響應(yīng)的參數(shù)配置即可。示例如下:

 
  Kaptcha 
  com.google.code.kaptcha.servlet.KaptchaServlet 
   
    kaptcha.image.width 
    200 
    Width in pixels of the kaptcha image. 
   
   
    kaptcha.image.height 
    50 
    Height in pixels of the kaptcha image. 
   
   
    kaptcha.textproducer.char.length 
    4 
    The number of characters to display. 
   
   
    kaptcha.noise.impl 
    com.google.code.kaptcha.impl.NoNoise 
    The noise producer. 
   

具體的配置參數(shù)參見(jiàn):http://code.google.com/p/kaptcha/wiki/ConfigParameters

3.頁(yè)面調(diào)用

 
   

4.在submit的action方法中進(jìn)行驗(yàn)證碼校驗(yàn)

//從session中取出servlet生成的驗(yàn)證碼text值 
String kaptchaExpected = (String)request.getSession().getAttribute(com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY); 
//獲取用戶(hù)頁(yè)面輸入的驗(yàn)證碼 
String kaptchaReceived = request.getParameter("kaptcha"); 
//校驗(yàn)驗(yàn)證碼是否正確 
if (kaptchaReceived == null || !kaptchaReceived.equalsIgnoreCase(kaptchaExpected)){ 
  setError("kaptcha", "Invalid validation code."); 
}

注:確保JDK設(shè)置了 -Djava.awt.headless=true

5.實(shí)現(xiàn)頁(yè)面驗(yàn)證碼刷新

 
 
  $(function() { 
    $('#kaptchaImage').click(function() {$(this).attr('src','kaptcha.jpg; + Math.floor(Math.random() * 100));}); 
  }); 
 
看不清,點(diǎn)擊換一張

 注:為了避免瀏覽器的緩存,可以在驗(yàn)證碼請(qǐng)求url后添加隨機(jī)數(shù)

二、Spring mvc項(xiàng)目中使用kaptcha

1.添加captchaProducer bean定義

 
 
   
     
       
         
          100 
          50 
          com.google.code.kaptcha.impl.NoNoise 
          0123456789abcdefghijklmnopqrstuvwxyz 
          4 
         
       
     
   

2.生成驗(yàn)證碼的Controller

import java.awt.image.BufferedImage;  
import javax.imageio.ImageIO; 
import javax.servlet.ServletOutputStream; 
import javax.servlet.http.HttpServletRequest; 
import javax.servlet.http.HttpServletResponse;  
import org.springframework.beans.factory.annotation.Autowired; 
import org.springframework.stereotype.Controller; 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.servlet.ModelAndView;  
import com.google.code.kaptcha.Constants; 
import com.google.code.kaptcha.Producer;  
/** 
 * ClassName: CaptchaImageCreateController 
   * Function: 生成驗(yàn)證碼Controller. 
   * date: 2013-12-10 上午11:37:42 
   *   * @author chenzhou1025@126.com   */  @Controller  public class CaptchaImageCreateController {    private Producer captchaProducer = null;     @Autowired    public void setCaptchaProducer(Producer captchaProducer){      this.captchaProducer = captchaProducer;    }     @RequestMapping("/kaptcha.jpg")    public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception{      // Set to expire far in the past.      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);       // 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();      }      return null;    }  }

3.校驗(yàn)用戶(hù)輸入的Controller

/**
 * ClassName: LoginController 
 * Function: 登錄Controller. 
 * date: 2013-12-10 上午11:41:43 
 *  * @author chenzhou1025@126.com  */ @Controller @RequestMapping("/login") public class LoginController { /**  * loginCheck:ajax異步校驗(yàn)登錄請(qǐng)求. 
 *  * @author chenzhou1025@126.com  * @param request  * @param username 用戶(hù)名  * @param password 密碼  * @param kaptchaReceived 驗(yàn)證碼  * @return 校驗(yàn)結(jié)果  * @since 2013-12-10  */ @RequestMapping(value = "check", method = RequestMethod.POST) @ResponseBody public String loginCheck(HttpServletRequest request, @RequestParam(value = "username", required = true) String username, @RequestParam(value = "password", required = true) String password, @RequestParam(value = "kaptcha", required = true) String kaptchaReceived){ //用戶(hù)輸入的驗(yàn)證碼的值 String kaptchaExpected = (String) request.getSession().getAttribute( com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY); //校驗(yàn)驗(yàn)證碼是否正確 if (kaptchaReceived == null || !kaptchaReceived.equals(kaptchaExpected)) { return "kaptcha_error";//返回驗(yàn)證碼錯(cuò)誤 } //校驗(yàn)用戶(hù)名密碼 // …… // …… return "success"; //校驗(yàn)通過(guò)返回成功 } }

上述內(nèi)容就是如何正確的使用kaptcha驗(yàn)證碼組件,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


分享題目:如何正確的使用kaptcha驗(yàn)證碼組件
網(wǎng)站路徑:http://weahome.cn/article/jpohgs.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部