当前位置:首页 > 智能硬件 > 人工智能AI
[导读] Kaptcha是一个基于SimpleCaptcha的验证码开源项目。 kaptcha的使用比较方便,只需添加jar包依赖之后简单地配置就可以使用了。kaptcha所有配置都可以通过web

Kaptcha是一个基于SimpleCaptcha的验证码开源项目。

kaptcha的使用比较方便,只需添加jar包依赖之后简单地配置就可以使用了。kaptcha所有配置都可以通过web.xml来完成,如果你的项目中使用了Spring MVC,那么则有另外的一种方式来实现。

一、简单的jsp-servlet项目 1.添加jar包依赖

如果你使用maven来统一管理jar包,则在工程的pom.xml中添加dependency

Xml代码

《!-- kaptcha --》

《dependency》

《groupId》com.google.code.kaptcha《/groupId》

《arTIfacTId》kaptcha《/arTIfacTId》

《version》2.3.2《/version》

《/dependency》

《!-- kaptcha --》

《dependency》

《groupId》com.google.code.kaptcha《/groupId》

《artifactId》kaptcha《/artifactId》

《version》2.3.2《/version》

《/dependency》

如果是非maven管理的项目,则直接在官网下载kaptcha的jar包,然后添加到项目lib库中。

2.配置web.xml

上面说了,kaptcha都是在web.xml中配置,我们必须在web.xml中配置kaptcha的servlet,具体如下:

Xml代码

《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》

《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所有的参数都有默认的配置,如果我们不显示配置的话,会采取默认的配置。

如果要显示配置kaptcha,在配置kaptcha对应的Servlet时,在init-param增加响应的参数配置即可。示例如下:

Xml代码

《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》

《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》

3.页面调用

Html代码

《formaction=“submit.action”》

《inputtype=“text”name=“kaptcha”value=“”/》《imgsrc=“kaptcha.jpg”/》

《/form》

《form action=“submit.action”》

《input type=“text” name=“kaptcha” value=“” /》《img src=“kaptcha.jpg” /》

《/form》

4.在submit的action方法中进行验证码校验

Java代码

//从session中取出servlet生成的验证码text值

String kaptchaExpected = (String)request.getSession().getAttribute(com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY);

//获取用户页面输入的验证码

String kaptchaReceived = request.getParameter(“kaptcha”);

//校验验证码是否正确

if (kaptchaReceived == null || !kaptchaReceived.equalsIgnoreCase(kaptchaExpected)){

setError(“kaptcha”, “Invalid validation code.”);

}

//从session中取出servlet生成的验证码text值

String kaptchaExpected = (String)request.getSession().getAttribute(com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY);

//获取用户页面输入的验证码

String kaptchaReceived = request.getParameter(“kaptcha”);

//校验验证码是否正确

if (kaptchaReceived == null || !kaptchaReceived.equalsIgnoreCase(kaptchaExpected)){

setError(“kaptcha”, “Invalid validation code.”);

}

注:确保JDK设置了 -Djava.awt.headless=true

本站声明: 本文章由作者或相关机构授权发布,目的在于传递更多信息,并不代表本站赞同其观点,本站亦不保证或承诺内容真实性等。需要转载请联系该专栏作者,如若文章内容侵犯您的权益,请及时联系本站删除( 邮箱:macysun@21ic.com )。
换一批
延伸阅读
关闭