最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

SpringMVC實(shí)現(xiàn)Validation校驗(yàn)過程詳解

 更新時(shí)間:2019年11月29日 09:24:50   作者:這個(gè)世界~  
這篇文章主要介紹了SpringMVC實(shí)現(xiàn)Validation校驗(yàn)過程詳解,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

這篇文章主要介紹了SpringMVC實(shí)現(xiàn)Validation校驗(yàn)過程詳解,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下

一、概述

對(duì)前端的校驗(yàn)大多數(shù)通過js在頁(yè)面校驗(yàn),這種方法比較簡(jiǎn)單,如果對(duì)安全性考慮,還要在后臺(tái)校驗(yàn)。

springmvc使用JSR-303(javaEE6規(guī)范的一部分)校驗(yàn)規(guī)范,springmvc使用的是Hibernate Validator(和Hibernate的ORM)

二、步驟

2.1 引入 Hibernate Validator

<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-validator -->
<dependency>
  <groupId>org.hibernate</groupId>
  <artifactId>hibernate-validator</artifactId>
  <version>5.4.1.Final</version>
</dependency>

2.2 配置

<!-- 校驗(yàn)器 -->
  <bean id="validator"
    class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean">
    <!-- 校驗(yàn)器 -->
    <property name="providerClass" value="org.hibernate.validator.HibernateValidator" />
    <!-- 指定校驗(yàn)使用的資源文件,如果不指定則默認(rèn)使用classpath下的ValidationMessages.properties -->
    <property name="validationMessageSource" ref="messageSource" />
  </bean>
  <!-- 校驗(yàn)錯(cuò)誤信息配置文件 -->
  <bean id="messageSource"
    class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
    <!-- 資源文件名 -->
    <property name="basenames">
      <list>
        <value>classpath:CustomValidationMessages</value>
      </list>
    </property>
    <!-- 資源文件編碼格式 -->
    <property name="fileEncodings" value="utf-8" />
    <!-- 對(duì)資源文件內(nèi)容緩存時(shí)間,單位秒 -->
    <property name="cacheSeconds" value="120" />
  </bean>

<!-- 自定義webBinder -->
  <bean id="customBinder"
    class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer">
    <!-- 使用converter進(jìn)行參數(shù)轉(zhuǎn) -->
    <property name="conversionService" ref="conversionService" />
    <!-- 配置validator -->
    <property name="validator" ref="validator" />

    <!-- propertyEditorRegistrars用于屬性編輯器 -->
    <!-- <property name="propertyEditorRegistrars"> <list> <ref bean="customPropertyEditor" 
      /> </list> </property> -->
  </bean>
<!-- 注解適配器 -->
  <bean
    class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
    <!-- 在webBindingInitializer中注入自定義屬性編輯器、自定義轉(zhuǎn)換器 -->
    <property name="webBindingInitializer" ref="customBinder"></property>
    <!-- 加入 json數(shù)據(jù)的消息轉(zhuǎn)換器 MappingJacksonHttpMessageConverter依賴Jackson的包 -->
    <property name="messageConverters">
      <list>
        <bean
          class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter"></bean>
      </list>
    </property>

  </bean>

2.3 創(chuàng)建CustomValidationMessages

在classpath下創(chuàng)建CustomValidationMessages.properties

# 校驗(yàn)提示信息:還需要在java中配置
items.name.length.error=商品長(zhǎng)度請(qǐng)限制在1-30之間items.createtime.is.notnull=請(qǐng)輸入商品生產(chǎn)日期

2.4 校驗(yàn)規(guī)則

商品信息提交時(shí)校驗(yàn) ,商品生產(chǎn)日期不能為空,商品名稱長(zhǎng)度在1到30字符之間

public class Items {
  private Integer id;
  
  //商品名稱的長(zhǎng)度請(qǐng)限制在1到30個(gè)字符
  @Size(min=1,max=30,message="{items.name.length.error}")
  private String name;

  private Float price;

  private String pic;
  
  //請(qǐng)輸入商品生產(chǎn)日期
  @NotNull(message="{items.createtime.is.notnull}")
  private Date createtime;

  private String detail;
}

2.5 捕獲錯(cuò)誤

需要修改controller方法,在要校驗(yàn)的pojo前邊加上@Validated,

public String editItemSubmit(Model model,Integer id,
        @Validated @ModelAttribute(value="itemsCustom") ItemsCustom itemsCustom,
        BindingResult bindingResult,
      //上傳圖片
      MultipartFile pictureFile
      )throws Exception{
    
    //輸出校驗(yàn)錯(cuò)誤信息
    //如果參數(shù)綁定時(shí)有錯(cuò)
    //輸出校驗(yàn)錯(cuò)誤信息
    //如果參數(shù)綁定時(shí)有錯(cuò)
    if(bindingResult.hasErrors()){
      
      //獲取錯(cuò)誤 
      List<ObjectError> errors = bindingResult.getAllErrors();
      //準(zhǔn)備在頁(yè)面輸出errors,頁(yè)面使用jstl遍歷
      model.addAttribute("errors", errors);
      for(ObjectError error:errors){
        //輸出錯(cuò)誤信息
        System.out.println(error.getDefaultMessage());
      }
      //如果校驗(yàn)錯(cuò)誤,回到商品修改頁(yè)面
      return "editItem";
    }

}

2.6 在頁(yè)面上展示錯(cuò)誤

<!-- 錯(cuò)誤信息 -->
<c:forEach items="${errors }" var="error">
 ${error.defaultMessage }<br/>
</c:forEach>

2.7 分組校驗(yàn)

需求

針對(duì)不同的controller方法通過分組校驗(yàn)達(dá)到個(gè)性化校驗(yàn)的目的,修改商品修改功能,只校驗(yàn)生產(chǎn)日期不能為空。

第一步:創(chuàng)建分組接口

public interface ValidGroup1 {
  //接口不定義方法,就是只標(biāo)識(shí) 哪些校驗(yàn) 規(guī)則屬于該 ValidGroup1分組
}

第二步:定義校驗(yàn)規(guī)則屬于哪個(gè)分組

//請(qǐng)輸入商品生產(chǎn)日期
//通過groups指定此校驗(yàn)屬于哪個(gè)分組,可以指定多個(gè)分組 @NotNull(message="{items.createtime.is.notnull}",groups={ValidGroup1.class})
  private Date createtime;

第三步:在controller方法定義使用校驗(yàn)的分組

public String editItemSubmit(Model model,Integer id,
        @Validated(value={ValidGroup1.class}) @ModelAttribute(value="itemsCustom") ItemsCustom itemsCustom,
        BindingResult bindingResult,
      //上傳圖片
      MultipartFile pictureFile
      )throws Exception{
      
  //...其他代碼省略...
      
}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論

河南省| 墨竹工卡县| 胶南市| 金沙县| 安陆市| 福建省| 鹤岗市| 南宫市| 武定县| 泰安市| 望都县| 克拉玛依市| 共和县| 汕尾市| 宁波市| 澄江县| 泗阳县| 延长县| 汶上县| 大邑县| 故城县| 新密市| 左贡县| 额尔古纳市| 阿坝| 深州市| 堆龙德庆县| 百色市| 手游| 元阳县| 新郑市| 长沙县| 德安县| 喀什市| 博罗县| 泊头市| 怀宁县| 三亚市| 栖霞市| 南乐县| 安徽省|