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

溫馨提示×

溫馨提示×

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

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

Kaptcha 驗證碼在springMVC中的使用

發布時間:2020-08-05 23:29:14 來源:網絡 閱讀:1826 作者:愛笑DE朝 欄目:開發技術

項目中配置 Kaptcha 驗證碼分一下幾步:

        1,添加Maven依賴

          <dependency>
            <groupId>com.github.axet</groupId>
            <artifactId>kaptcha</artifactId>
            <version>0.0.9</version>
        </dependency>

       2,spring容器中注入kaptcha,自定義其相關屬性

          <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.p_w_picpath.width">150</prop>
                        <!-- 驗證碼高度 -->
                        <prop key="kaptcha.p_w_picpath.height">60</prop>
                        <!-- 生成驗證碼內容范圍 -->
                        <prop key="kaptcha.textproducer.char.string">abcde2345678gfynmnpwx</prop>
                        <!-- 驗證碼個數 -->
                        <prop key="kaptcha.textproducer.char.length">5</prop>
                        <!-- 是否有邊框 -->
                        <prop key="kaptcha.border">no</prop>
                        <!-- 驗證碼字體顏色 -->
                        <prop key="kaptcha.textproducer.font.color">red</prop>
                        <!-- 驗證碼字體大小 -->
                        <prop key="kaptcha.textproducer.font.size">35</prop>
                        <!-- 驗證碼所屬字體樣式 -->
                        <prop key="kaptcha.textproducer.font.names">Arial, Courier</prop>
                        <prop key="kaptcha.background.clear.from">white</prop>
                        <prop key="kaptcha.background.clear.to">white</prop>
                        <prop key="kaptcha.obscurificator.impl">com.google.code.kaptcha.impl.ShadowGimpy</prop>
                        <prop key="kaptcha.noise.impl">com.google.code.kaptcha.impl.NoNoise</prop>
                        <!-- 干擾線顏色 -->
                        <prop key="kaptcha.noise.color">red</prop>
                        <!-- 驗證碼文本字符間距 -->
                        <prop key="kaptcha.textproducer.char.space">4</prop>
                    </props>
                </constructor-arg>
            </bean>
        </property>
    </bean>

     3 在控制器中寫獲取驗證圖片的方法

   /**
     * Kaptcha 驗證碼
     */
    @Autowired
    private DefaultKaptcha captchaProducer;

    @RequestMapping(value = "captcha.htm", method = RequestMethod.GET)
    public void captcha(HttpServletRequest request, HttpServletResponse response)
            throws Exception {
        response.setDateHeader("Expires", 0);
        response.setHeader("Cache-Control",
                "no-store, no-cache, must-revalidate");
        response.addHeader("Cache-Control", "post-check=0, pre-check=0");
        response.setHeader("Pragma", "no-cache");
        response.setContentType("p_w_picpath/jpeg");
        String capText = captchaProducer.createText();
        request.getSession().setAttribute(
                com.google.code.kaptcha.Constants.KAPTCHA_SESSION_KEY, capText);
        BufferedImage bi = captchaProducer.createImage(capText);
        ServletOutputStream out = response.getOutputStream();
        ImageIO.write(bi, "jpg", out);
        try {
            out.flush();
        } finally {
            out.close();
        }
    }

   4,前臺調用

      <img   id="captcha"
                  onclick="this.src='${BASE_PATH}/admin/captcha.htm?'+Math.random();"
                  src="${BASE_PATH}/captcha.htm">

  5,后臺驗證時從Session中獲取驗證碼

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

向AI問一下細節

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

AI

蒙自县| 西城区| 大埔县| 西林县| 云阳县| 南皮县| 沭阳县| 福泉市| 策勒县| 噶尔县| 临高县| 绥德县| 武隆县| 鄱阳县| 绍兴市| 兴隆县| 易门县| 水富县| 洪湖市| 宁强县| 金山区| 吴川市| 大城县| 宿松县| 红河县| 晋中市| 稷山县| 温州市| 禹州市| 榕江县| 四川省| 芦山县| 拉萨市| 海淀区| 沧源| 平罗县| 藁城市| 颍上县| 滨海县| 山阴县| 泾川县|