91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

springMVC中怎么實現一個圖形驗證碼

發布時間:2021-08-07 14:43:06 來源:億速云 閱讀:172 作者:Leah 欄目:編程語言

這篇文章將為大家詳細講解有關springMVC中怎么實現一個圖形驗證碼,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

一、引入架包,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 causejava.lang.ClassNotFoundException: com.jhlabs.image.RippleFilter

關于springMVC中怎么實現一個圖形驗證碼就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

成安县| 兴国县| 将乐县| 贵德县| 双江| 宜阳县| 莱西市| 岢岚县| 通渭县| 莱阳市| 府谷县| 涡阳县| 大埔区| 邯郸县| 浦县| 基隆市| 石柱| 长阳| 赤城县| 漯河市| 那坡县| 青海省| 靖州| 江华| 金塔县| 饶平县| 禹城市| 温州市| 砀山县| 司法| 独山县| 京山县| 通化市| 朝阳区| 湘潭市| 方山县| 泸西县| 长宁区| 瓮安县| 崇明县| 耒阳市|