kaptcha驗(yàn)證碼組件使用簡(jiǎn)介解析
Kaptcha是一個(gè)基于SimpleCaptcha的驗(yàn)證碼開(kāi)源項(xiàng)目。
官網(wǎng)地址:http://code.google.com/p/kaptcha/
kaptcha的使用比較方便,只需添加jar包依賴(lài)之后簡(jiǎn)單地配置就可以使用了。kaptcha所有配置都可以通過(guò)web.xml來(lái)完成,如果你的項(xiàng)目中使用了Spring MVC,那么則有另外的一種方式來(lái)實(shí)現(xiàn)。
一、簡(jiǎn)單的jsp-servlet項(xiàng)目
1.添加jar包依賴(lài)
如果你使用maven來(lái)統(tǒng)一管理jar包,則在工程的pom.xml中添加dependency
<!-- kaptcha --> <dependency> <groupId>com.google.code.kaptcha</groupId> <artifactId>kaptcha</artifactId> <version>2.3.2</version> </dependency>
如果是非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,具體如下:
<servlet> <servlet-name>Kaptcha</servlet-name> <servlet-class>com.google.code.kaptcha.servlet.KaptchaServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>Kaptcha</servlet-name> <url-pattern>/kaptcha.jpg</url-pattern> </servlet-mapping>
其中servlet的url-pattern可以自定義。
kaptcha所有的參數(shù)都有默認(rèn)的配置,如果我們不顯示配置的話(huà),會(huì)采取默認(rèn)的配置。
如果要顯示配置kaptcha,在配置kaptcha對(duì)應(yīng)的Servlet時(shí),在init-param增加響應(yīng)的參數(shù)配置即可。示例如下:
<servlet> <servlet-name>Kaptcha</servlet-name> <servlet-class>com.google.code.kaptcha.servlet.KaptchaServlet</servlet-class> <init-param> <param-name>kaptcha.image.width</param-name> <param-value>200</param-value> <description>Width in pixels of the kaptcha image.</description> </init-param> <init-param> <param-name>kaptcha.image.height</param-name> <param-value>50</param-value> <description>Height in pixels of the kaptcha image.</description> </init-param> <init-param> <param-name>kaptcha.textproducer.char.length</param-name> <param-value>4</param-value> <description>The number of characters to display.</description> </init-param> <init-param> <param-name>kaptcha.noise.impl</param-name> <param-value>com.google.code.kaptcha.impl.NoNoise</param-value> <description>The noise producer.</description> </init-param> </servlet>
具體的配置參數(shù)參見(jiàn):http://code.google.com/p/kaptcha/wiki/ConfigParameters
3.頁(yè)面調(diào)用
<form action="submit.action"> <input type="text" name="kaptcha" value="" /><img src="kaptcha.jpg" /> </form>
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)證碼刷新
<img src="kaptcha.jpg" width="200" id="kaptchaImage" title="看不清,點(diǎn)擊換一張" /> <script type="text/javascript"> $(function() { $('#kaptchaImage').click(function() {$(this).attr('src','kaptcha.jpg?' + Math.floor(Math.random() * 100));}); }); </script> <br /><small>看不清,點(diǎn)擊換一張</small>
注:為了避免瀏覽器的緩存,可以在驗(yàn)證碼請(qǐng)求url后添加隨機(jī)數(shù)
二、Spring mvc項(xiàng)目中使用kaptcha
1.添加captchaProducer bean定義
<!-- 配置kaptcha驗(yàn)證碼 --> <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.image.width">100</prop> <prop key="kaptcha.image.height">50</prop> <prop key="kaptcha.noise.impl">com.google.code.kaptcha.impl.NoNoise</prop> <prop key="kaptcha.textproducer.char.string">0123456789abcdefghijklmnopqrstuvwxyz</prop> <prop key="kaptcha.textproducer.char.length">4</prop> </props> </constructor-arg> </bean> </property> </bean>
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 <br/> * Function: 生成驗(yàn)證碼Controller. <br/> * date: 2013-12-10 上午11:37:42 <br/> * * @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 <br/> * Function: 登錄Controller. <br/> * date: 2013-12-10 上午11:41:43 <br/> * * @author chenzhou1025@126.com */ @Controller @RequestMapping("/login") public class LoginController { /** * loginCheck:ajax異步校驗(yàn)登錄請(qǐng)求. <br/> * * @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ò)返回成功 } }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
SpringBoot配置文件方式,在線(xiàn)yml文件轉(zhuǎn)properties
這篇文章主要介紹了SpringBoot配置文件方式,在線(xiàn)yml文件轉(zhuǎn)properties,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-07-07springboot+mybatis plus實(shí)現(xiàn)樹(shù)形結(jié)構(gòu)查詢(xún)
實(shí)際開(kāi)發(fā)過(guò)程中經(jīng)常需要查詢(xún)節(jié)點(diǎn)樹(shù),根據(jù)指定節(jié)點(diǎn)獲取子節(jié)點(diǎn)列表,本文主要介紹了springboot+mybatis plus實(shí)現(xiàn)樹(shù)形結(jié)構(gòu)查詢(xún),感興趣的可以了解一下2021-07-07springboot多數(shù)據(jù)源配合docker部署mysql主從實(shí)現(xiàn)讀寫(xiě)分離效果
這篇文章主要介紹了springboot多數(shù)據(jù)源配合docker部署mysql主從實(shí)現(xiàn)讀寫(xiě)分離,通過(guò)使用docker獲取mysql鏡像,具體內(nèi)容詳情跟隨小編一起看看吧2021-09-09老生常談spring boot 1.5.4 日志管理(必看篇)
下面小編就為大家?guī)?lái)一篇老生常談spring boot 1.5.4 日志管理(必看篇)。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2017-06-06java實(shí)現(xiàn)簡(jiǎn)單三子棋游戲
這篇文章主要為大家詳細(xì)介紹了java實(shí)現(xiàn)簡(jiǎn)單三子棋游戲,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-05-05SpringMvc切換Json轉(zhuǎn)換工具的操作代碼
SpringBoot切換使用goolge的Gson作為SpringMvc的Json轉(zhuǎn)換工具,本文給大家講解SpringMvc切換Json轉(zhuǎn)換工具的操作代碼,感興趣的朋友一起看看吧2024-02-02Spring boot整合mybatis實(shí)現(xiàn)過(guò)程圖解
這篇文章主要介紹了Spring boot整合mybatis實(shí)現(xiàn)過(guò)程圖解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-08-08SpringMVC接收復(fù)雜集合對(duì)象(參數(shù))代碼示例
這篇文章主要介紹了SpringMVC接收復(fù)雜集合對(duì)象(參數(shù))代碼示例,舉接收List<String>、List<User>、List<Map<String,Object>>、User[]、User(bean里面包含List)幾種較為復(fù)雜的集合參數(shù),具有一定參考價(jià)值,需要的朋友可以了解下。2017-11-11