springMVC实现图形验证码(kaptcha)代码实例
程序员文章站
2022-06-21 08:12:52
springmvc项目中实现图形验证码功能,可以使用kaptcha来实现,下面是步骤
一、引入架包,pom.xml
...
springmvc项目中实现图形验证码功能,可以使用kaptcha来实现,下面是步骤
一、引入架包,pom.xml
<dependency> <groupid>com.google.code</groupid> <artifactid>kaptcha</artifactid> <version>2.3.2</version> </dependency>
二、kaptchaproducer配置,需要在spring-mvc.xml中对kaptchaproducer的bean进行配置,可以对验证码图形的属性进行配置,网上也有很多可以参考的,我这是放我项目中的相关代码
<!-- 使用kaptcha生成验证码 --> <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> <prop key="kaptcha.textproducer.font.color">blue</prop> <prop key="kaptcha.image.width">125</prop> <prop key="kaptcha.image.height">60</prop> <prop key="kaptcha.textproducer.font.size">40</prop> <prop key="kaptcha.session.key">code</prop> <prop key="kaptcha.textproducer.char.length">4</prop> <prop key="kaptcha.textproducer.font.names">宋体,楷体,微软雅黑</prop> </props> </constructor-arg> </bean> </property> </bean>
三、kaptchaproducer配置完毕后,就只可以写生成验证码的方法了。
@autowired private producer captchaproducer = null; /** * 生成验证码 * @param request * @param response * @throws ioexception */ @requestmapping("/yzmimg") public void yzmimg(httpservletrequest request,httpservletresponse response) throws ioexception{ log.info("-----生成验证码-----"); httpsession session = request.getsession(); string precode = (string)session.getattribute(constants.kaptcha_session_key); log.info("-----生成验证码-----前一个验证码:"+precode); system.out.println("-----生成验证码-----前一个验证码:"+precode); //生成验证码 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(); system.err.println(captext); // store the text in the session session.setattribute(constants.kaptcha_session_key, captext); session.setattribute(constants.kaptcha_session_date, new date()); // 存放到缓存服务器上,并把key记录到cookie //codeutils.creatcode(captext, response, request); // 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(); } }
四、生成验证码的方法写完后,前端可以使用img标签作为图形验证码的容器
jsp代码
<img src="yzmimg.htm" onclick="getyzmimg()" id="yzmimg">
javascript代码
function getyzmimg(){ $("#yzmimg").attr("src","yzmimg.htm"); }
img作为图形的容器,src写生成验证码的映射,如果需要换一个验证码,点击图片,onclick事件重新调用生成验证码的方法,即可达到更换验证码。
下面说下我遇到的几个问题
一、异常,异常信息
caused by: org.springframework.beans.factory.nosuchbeandefinitionexception: no qualifying bean of type 'com.google.code.kaptcha.producer' available: expected at least 1 bean which qualifies as autowire candidate. dependency annotations: {@org.springframework.beans.factory.annotation.autowired(required=true)}
我说下具体的情况,代码我写完了之后,就启动服务,可是报了上面的异常,可是我仔细检查了,代码都没有问题,但就是抛异常,最后在类的前面加了两个注解
@controller @scope("prototype") @suppresswarnings("all") public class indexcontroller { }
其中scope和suppresswarnings两个注解加上之后,启动服务就不会抛这个异常了。
二、异常,上面的异常解决之后,又出现了下面这个异常
java.lang.noclassdeffounderror: com/jhlabs/image/ripplefilter] with root cause java.lang.classnotfoundexception: com.jhlabs.image.ripplefilter
提示ripplefilter类找不到,所以加入filter架包,我是直接加入的架包,架包名为:filters-2.0.235-1.jar,加入这个架包就不会抛异常了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 网站建设对于企业有哪些意义?