spring MVC validator

简介:

spring mVC提供了很方便的校验,如下:

 

(1)依赖包:

validation-api.jar
hibernate-validator.jar

通过maven引入

Xml代码   收藏代码
  1. <dependency>  
  2.         <groupId>javax.validation</groupId>  
  3.         <artifactId>validation-api</artifactId>  
  4.         <version>1.1.0.Final</version>  
  5.     </dependency>  
  6.     <dependency>  
  7.         <groupId>org.hibernate</groupId>  
  8.         <artifactId>hibernate-validator</artifactId>  
  9.         <version>5.1.2.Final</version>  
  10.     </dependency>  

 

(2)要验证的实体类

Java代码   收藏代码
  1. import javax.validation.constraints.AssertFalse;  
  2. import javax.validation.constraints.AssertTrue;  
  3. import javax.validation.constraints.DecimalMax;  
  4. import javax.validation.constraints.DecimalMin;  
  5. import javax.validation.constraints.Max;  
  6. import javax.validation.constraints.Min;  
  7. import javax.validation.constraints.NotNull;  
  8. import javax.validation.constraints.Pattern;  
  9. public class Person {  
  10.        
  11.      @NotNull(message = "用户名称不能为空")   
  12.      private String name;  
  13.        
  14.      @Max(value = 100, message = "年龄不能大于100岁")   
  15.      @Min(value= 18 ,message= "必须年满18岁!" )    
  16.      private int age;  
  17.        
  18.      //必须是ture     
  19.      @AssertTrue(message = "bln4 must is true")  
  20.      private boolean bln;  
  21.        
  22.         //必须是false  
  23.      @AssertFalse(message = "blnf must is falase")  
  24.      private boolean blnf;  
  25.        
  26.      @DecimalMax(value="100",message="decim最大值是100")  
  27.      private int decimax;  
  28.        
  29.      @DecimalMin(value="100",message="decim最小值是100")  
  30.      private int decimin;  
  31.        
  32.     // @Length(min=1,max=5,message="slen长度必须在1~5个字符之间")  
  33.      private String slen;  
  34.       
  35.      @NotNull(message = "身份证不能为空")   
  36.          @Pattern(regexp="^(\\d{18,18}|\\d{15,15}|(\\d{17,17}[x|X]))$", message="身份证格式错误")  
  37.      private String iDCard;  
  38.        
  39.      @NotNull(message="密码不能为空")  
  40.      private String password;  
  41.      @NotNull(message="验证密码不能为空")  
  42.      private String rpassword;  
  43.       
  44.         get/set方法  
  45. }  

 (3)构建controller如下

Java代码   收藏代码
  1. @Controller  
  2. public class SpringValidatorTest {  
  3.     @RequestMapping("/validator/springtest")  
  4.     public void  springte(@Valid Person person,BindingResult result){  
  5.         if(result.hasErrors()){  
  6.             List<ObjectError>  list = result.getAllErrors();  
  7.             for(ObjectError error: list){  
  8.                 //System.out.println(error.getObjectName());  
  9.                 //System.out.println(error.getArguments()[0]);  
  10.                 System.out.println(error.getDefaultMessage());//验证信息  
  11.             }  
  12.                       
  13.         }  
  14.       
  15.     }  
  16. }  

 

 

(4)使用场景:添加或提交修改时进行字段的校验



 登录:


 

 

注意:BindingResult一定要紧跟在实体类的后面,否则报错:

HTTP Status 400 -


type Status report

message

description The request sent by the client was syntactically incorrect.


Apache Tomcat/7.0.53

 

错误的代码:

Java代码   收藏代码
  1. @RequestMapping(value = "/add",method=RequestMethod.POST)  
  2.     public String addSaveNews(@Valid RoleLevel roleLevel, Model model, BindingResult binding) {  
  3.         if(binding.hasErrors()){  
  4.             model.addAttribute(roleLevel);  
  5.             return jspFolder+"/add";  
  6.         }  
  7.         saveCommon(roleLevel, model);  
  8.         return redirectViewAll;  
  9.     }  

 正确的代码:

Java代码   收藏代码
  1. @RequestMapping(value = "/add",method=RequestMethod.POST)  
  2.     public String addSaveNews(@Valid RoleLevel roleLevel, BindingResult binding, Model model) {  
  3.         if(binding.hasErrors()){  
  4.             model.addAttribute(roleLevel);  
  5.             return jspFolder+"/add";  
  6.         }  
  7.         saveCommon(roleLevel, model);  
  8.         return redirectViewAll;  
  9.     }  

 

官方资料

Declaring bean constraints

Constraints in Bean Validation are expressed via Java annotations. In this section you will learn how to enhance an object model with these annotations. There are the following three types of bean constraints:

  • field constraints

  • property constraints

  • class constraints

Note

Not all constraints can be placed on all of these levels. In fact, none of the default constraints defined by Bean Validation can be placed at class level. TheJava.lang.annotation.Target annotation in the constraint annotation itself determines on which elements a constraint can be placed. See Chapter 6, Creating custom constraints for more information.

2.1.1. Field-level constraints

Constraints can be expressed by annotating a field of a class. Example 2.1, “Field-level constraints”shows a field level configuration example:

Example 2.1. Field-level constraints

package org.hibernate.validator.referenceguide.chapter02.fieldlevel;

public class Car {

    @NotNull
    private String manufacturer;

    @AssertTrue
    private boolean isRegistered;

    public Car(String manufacturer, boolean isRegistered) {
        this.manufacturer = manufacturer;
        this.isRegistered = isRegistered;
    }

    //getters and setters...
}

When using field-level constraints field access strategy is used to access the value to be validated. This means the validation engine directly accesses the instance variable and does not invoke the property accessor method even if such an accessor exists.

Constraints can be applied to fields of any access type (public, private etc.). Constraints on static fields are not supported, though.

Tip

When validating byte code enhanced objects property level constraints should be used, because the byte code enhancing library won't be able to determine a field access via reflection.

2.1.2. Property-level constraints

If your model class adheres to the JavaBeans standard, it is also possible to annotate the properties of a bean class instead of its fields. Example 2.2, “Property-level constraints” uses the same entity as inExample 2.1, “Field-level constraints”, however, property level constraints are used.

Example 2.2. Property-level constraints

package org.hibernate.validator.referenceguide.chapter02.propertylevel;

public class Car {

    private String manufacturer;

    private boolean isRegistered;

    public Car(String manufacturer, boolean isRegistered) {
        this.manufacturer = manufacturer;
        this.isRegistered = isRegistered;
    }

    @NotNull
    public String getManufacturer() {
        return manufacturer;
    }

    public void setManufacturer(String manufacturer) {
        this.manufacturer = manufacturer;
    }

    @AssertTrue
    public boolean isRegistered() {
        return isRegistered;
    }

    public void setRegistered(boolean isRegistered) {
        this.isRegistered = isRegistered;
    }
}

Note

The property's getter method has to be annotated, not its setter. That way also read-only properties can be constrained which have no setter method.

When using property level constraints property access strategy is used to access the value to be validated, i.e. the validation engine accesses the state via the property accessor method.

Tip

It is recommended to stick either to field or property annotations within one class. It is not recommended to annotate a field and the accompanying getter method as this would cause the field to be validated twice.

2.1.3. Class-level constraints

Last but not least, a constraint can also be placed on the class level. In this case not a single property is subject of the validation but the complete object. Class-level constraints are useful if the validation depends on a correlation between several properties of an object.

The Car class in Example 2.3, “Class-level constraint” has the two attributes seatCount and passengersand it should be ensured that the list of passengers has not more entries than seats are available. For that purpose the @ValidPassengerCount constraint is added on the class level. The validator of that constraint has access to the complete Car object, allowing to compare the numbers of seats and passengers.

Refer to Section 6.2, “Class-level constraints” to learn in detail how to implement this custom constraint.

Example 2.3. Class-level constraint

package org.hibernate.validator.referenceguide.chapter02.classlevel;

@ValidPassengerCount
public class Car {

    private int seatCount;

    private List<Person> passengers;

    //...
}

 

 

参考:http://docs.jboss.org/hibernate/stable/validator/reference/en-US/html/

http://www.yunmasoft.com

http://blog.csdn.net/xpsharp/article/details/9366865

 

相关文章
|
1月前
|
缓存 前端开发 Java
Spring MVC 面试题及答案整理,最新面试题
Spring MVC 面试题及答案整理,最新面试题
90 0
|
1月前
|
SQL JavaScript Java
springboot+springm vc+mybatis实现增删改查案例!
springboot+springm vc+mybatis实现增删改查案例!
25 0
|
1月前
|
SQL Java 数据库连接
挺详细的spring+springmvc+mybatis配置整合|含源代码
挺详细的spring+springmvc+mybatis配置整合|含源代码
41 1
|
12天前
|
数据采集 前端开发 Java
数据塑造:Spring MVC中@ModelAttribute的高级数据预处理技巧
数据塑造:Spring MVC中@ModelAttribute的高级数据预处理技巧
23 3
|
12天前
|
存储 前端开发 Java
会话锦囊:揭示Spring MVC如何巧妙使用@SessionAttributes
会话锦囊:揭示Spring MVC如何巧妙使用@SessionAttributes
14 1
|
12天前
|
前端开发 Java Spring
数据之桥:深入Spring MVC中传递数据给视图的实用指南
数据之桥:深入Spring MVC中传递数据给视图的实用指南
29 3
|
21天前
|
前端开发 安全 Java
使用Java Web框架:Spring MVC的全面指南
【4月更文挑战第3天】Spring MVC是Spring框架的一部分,用于构建高效、模块化的Web应用。它基于MVC模式,支持多种视图技术。核心概念包括DispatcherServlet(前端控制器)、HandlerMapping(请求映射)、Controller(处理请求)、ViewResolver(视图解析)和ModelAndView(模型和视图容器)。开发流程涉及配置DispatcherServlet、定义Controller、创建View、处理数据、绑定模型和异常处理。
使用Java Web框架:Spring MVC的全面指南
|
28天前
|
敏捷开发 监控 前端开发
Spring+SpringMVC+Mybatis的分布式敏捷开发系统架构
Spring+SpringMVC+Mybatis的分布式敏捷开发系统架构
63 0
|
27天前
|
Java 应用服务中间件 Maven
SpringBoot 项目瘦身指南
SpringBoot 项目瘦身指南
40 0
|
1月前
|
缓存 安全 Java
Spring Boot 面试题及答案整理,最新面试题
Spring Boot 面试题及答案整理,最新面试题
111 0