真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

使用SpringMVC怎么實(shí)現(xiàn)對(duì)數(shù)據(jù)進(jìn)行校驗(yàn)

使用SpringMVC怎么實(shí)現(xiàn)對(duì)數(shù)據(jù)進(jìn)行校驗(yàn)?針對(duì)這個(gè)問題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問題的小伙伴找到更簡單易行的方法。

專注于為中小企業(yè)提供成都做網(wǎng)站、成都網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)惠城免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了千余家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

一、導(dǎo)入jar包

若要實(shí)現(xiàn)數(shù)據(jù)校驗(yàn)功能,需要導(dǎo)入必要的jar包,主要包括以下幾個(gè):

classmate-1.3.1.jar

hibernate-vapdator-5.4.1.Final.jar

hibernate-vapdator-annotation-processor-5.4.1.Final.jar

hibernate-vapdator-cdi-5.4.1.Final.jar

jboss-logging-3.3.0.Final.jar

vapdation-api-1.1.0.Final.jar

二、常用的校驗(yàn)注解

注解功能
@Null驗(yàn)證對(duì)象是否為 null
@NotNull驗(yàn)證對(duì)象是否不為 null
@AssertTrue驗(yàn)證 Boolean 對(duì)象是否為 true
@AssertTrue驗(yàn)證 Boolean 對(duì)象是否為 false
@Max(value)驗(yàn)證 Number 和 String 對(duì)象是否小于等于指定值
@Min(value)驗(yàn)證 Number 和 String 對(duì)象是否大于等于指定值
@DecimalMax(value)驗(yàn)證注解的元素值小于等于 @DecimalMax 指定的 value 值
@DecimalMin(value)驗(yàn)證注解的元素值大于等于 @DecimalMin 指定的 value 值
@Digits(integer,fraction)驗(yàn)證字符串是否符合指定格式的數(shù)字,integer 指定整數(shù)精度,fraction 指定小數(shù)精度
@Size(min,max)驗(yàn)證對(duì)象長度是否在給定的范圍內(nèi)
@Past驗(yàn)證 Date 和 Calendar 對(duì)象是否在當(dāng)前時(shí)間之前
@Future驗(yàn)證 Date 和 Calendar 對(duì)象是否在當(dāng)前時(shí)間之后
@Pattern驗(yàn)證 String 對(duì)象是否符合正則表達(dá)式的規(guī)則
@NotBlank檢查字符串是不是 Null,被 Trim 的長度是否大于0,只對(duì)字符串,且會(huì)去掉前后空格
@URL驗(yàn)證是否是合法的 url
@Email驗(yàn)證是否是合法的郵箱
@CreditCardNumber驗(yàn)證是否是合法的信用卡號(hào)
@Length(min,max)驗(yàn)證字符串的長度必須在指定范圍內(nèi)
@NotEmpty檢查元素是否為 Null 或 Empty
@Range(min,max,message)驗(yàn)證屬性值必須在合適的范圍內(nèi)

三、修改實(shí)體類

在類的屬性上進(jìn)行標(biāo)注,如:

public class User {
  @NotBlank(message = "Username can not be empty")
  private String username;
  @NotBlank(message = "password can not be blank")
  @Length(min = 6, max = 16, message = "The length of the password must be between 6 and 16 bits")
  private String password;
  @Range(min = 18, max = 60, message = "Age must be between 18 and 60 years old")
  private Integer age;
  @Pattern(regexp = "^1[3|4|5|7|8][0-9]{9}$", message = "Please enter the correct format of the phone number")
  private String phone;
  @Email(message = "Please enter a valid email address")
  private String email;

  // other...  
}

四、修改相應(yīng)的處理方法

@RequestMapping(value = "/register")
public String register(@Valid @ModelAttribute("user") User user, Errors errors,Model model) {
  if(errors.hasErrors()){
    return "register";
  }
  model.addAttribute("user", user);
  return "success";
}

五、視圖輸出

校驗(yàn)之后,我們通常需要在表單的輸入框后進(jìn)行文字反饋:


  
register

...

然而,有些時(shí)候并不推薦直接將錯(cuò)誤信息寫在注解的message屬性里,這樣不方便國際化。因此可以做以下幾處修改:

1. 新建validatemessages.properties

username.not.blank = "username cannot be empty..."
password.not.blank = "password cannot be empty"
password.not.length = "password should be in 6-10"
age.not.range = "age should be in 10-70"
phone.not.pattern = "phone should be in format"
email.not.format = "email should be in format"

2. 實(shí)體類中的注解使用相對(duì)引用

public class User {
  
  @NotBlank(message = "{username.not.blank}")
  private String username;
  
  @NotBlank(message = "{password.not.blank}")
  @Length(min = 6, max = 10, message = "{password.not.length}")
  private String password;
  
  @Range(min = 10, max = 70, message = "{age.not.range}")
  private Integer age;
  
  @Pattern(regexp = "^1[3|4|5|7|8][0-9]{9}$", message = "{phone.not.pattern}")
  private String phone;
  
  @Email(message = "{email.not.format}")
  private String email;
  
  // other...
}

3. 修改配置文件

 
  
  
  
    
    
    
  
  
   
     
     
     
  

特別注意:value="classpath:validatemessages",文件名不加后綴!

至此,數(shù)據(jù)校驗(yàn)的整個(gè)過程就結(jié)束了。

最后還要特別強(qiáng)調(diào)的重點(diǎn)是:

視圖中的modelAttribute="xxx"后面的名稱xxx必須與對(duì)應(yīng)的@Valid @ModelAttribute("xxx") 中的xxx名稱一致,否則模型數(shù)據(jù)和錯(cuò)誤信息都綁定不到。

即會(huì)顯示模型對(duì)應(yīng)屬性的錯(cuò)誤信息,當(dāng)path="*"時(shí)則顯示模型全部屬性的錯(cuò)誤信息。

關(guān)于使用SpringMVC怎么實(shí)現(xiàn)對(duì)數(shù)據(jù)進(jìn)行校驗(yàn)問題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。


名稱欄目:使用SpringMVC怎么實(shí)現(xiàn)對(duì)數(shù)據(jù)進(jìn)行校驗(yàn)
分享網(wǎng)址:http://weahome.cn/article/jopjsh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部