Springmvc 数据校验和国际化<12>

1.spring4.0整合了validation验证功能
2.SpringMVC 使用验证框架 Bean Validation(上)

  对于任何一个应用而言在客户端做的数据有效性验证都不是安全有效的,这时候就要求我们在开发的时候在服务端也对数据的有效性进行验证。 SpringMVC 自身对数据在服务端的校验(Hibernate Validator)有一个比较好的支持,它能将我们提交到服务端的数据按照我们事先的约定进行数据有效性验证,对于不合格的数据信息 SpringMVC 会把它保存在错误对象中(Errors接口的子类),这些错误信息我们也可以通过 SpringMVC 提供的标签(form:errors)在前端JSP页面上进行展示。或者使用拦截器 after 方法对处理错误信息进行处理后传递给页面(我们使用JSON请求的时候就需要这样做)。

  1. 引入包

//https://mvnrepository.com/artifact/org.hibernate/hibernate-validator
compile group: 'org.hibernate', name: 'hibernate-validator', version: '5.4.1.Final'
//https://mvnrepository.com/artifact/javax.el/javax.el-api
compile group: 'javax.el', name: 'javax.el-api', version: '3.0.0'

2.配置验证实体

public class Items {

    private Integer id;
    private String name;

    @NotNull(message = "{product.priceisnull}")
    @Min(value = 0,message = "{product.pricenotillegue}")
    private Float price;

    private String pic;

    @Future(message="{product.creattimeerror}")
// @NotEmpty(message = "{product.dateisnull}")
    private Date createtime;

    @NotNull(message = "{product.detailisnull}")
    private String detail;
}
  1. 配置验证器和国际化
 

  
    
        
        
        
    

    
    
        
            
                
                classpath:message/errormessage
                
            
        
        
        
        
    
  1. src\main\resources\message\errormessage_zh_CN.properties
product.dateisnull=创建时间不能为空!
product.detailisnull = 描述不能为空!
product.priceisnull=商品价格不能为空!
product.pricenotillegue=商品价格不合法!
product.creattimeerror=日期必须为将来时刻!
  1. 输入几个空值输出验证结果

日期必须为将来时刻!
商品价格不能为空!

部分页面:editItem.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt"  prefix="fmt"%>
<%
    String path = request.getContextPath();
    String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
            + path + "/";
%>




修改商品信息



 
    
    
<%----%> 修改商品信息:
商品名称
商品价格
商品日期
商品图片 ![](/pic/${item.pic})
商品简介

error.jsp

<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>



  Java验证框架测试



${items.toString()}
${errors.toString()}


  

<%--
--%> <%--
--%>
<%--<%@ tag pageEncoding="UTF-8" description="显示字段错误消息" %>--%> <%--<%@ attribute name="commandName" type="java.lang.String" required="true" description="命令对象名称" %>--%> <%--<%@ attribute name="errorPosition" type="java.lang.String" required="false" description="错误消息位置,可以是 topLeft, topRight, bottomLeft, centerRight, bottomRight" %>--%> <%--<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>--%> <%--<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>--%> <%----%> <%----%> <%----%> <%----%> <%----%> <%----%> <%----%> <%----%> <%--$("[name='${error.field}']")--%> <%--.validationEngine("showPrompt", "${message}", "error", "${errorPosition}", true)--%> <%--.validationEngine("updatePromptsPosition");--%> <%----%> <%----%> <%----%> <%----%>

你可能感兴趣的:(Springmvc 数据校验和国际化<12>)