Springmvc 数据校验和国际化
程序员文章站
2022-05-24 14:44:44
...
1.spring4.0整合了validation验证功能
2.SpringMVC 使用验证框架 Bean Validation(上)
对于任何一个应用而言在客户端做的数据有效性验证都不是安全有效的,这时候就要求我们在开发的时候在服务端也对数据的有效性进行验证。 SpringMVC 自身对数据在服务端的校验(Hibernate Validator)有一个比较好的支持,它能将我们提交到服务端的数据按照我们事先的约定进行数据有效性验证,对于不合格的数据信息 SpringMVC 会把它保存在错误对象中(Errors接口的子类),这些错误信息我们也可以通过 SpringMVC 提供的标签(form:errors)在前端JSP页面上进行展示。或者使用拦截器 after 方法对处理错误信息进行处理后传递给页面(我们使用JSON请求的时候就需要这样做)。
- 引入包
//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;
}
- 配置验证器和国际化
<mvc:annotation-driven conversion-service="conversionService" validator="validator1"/>
<!-- 验证配置,告知srpingmvc,我使用的是Hibernate验证框架来完成的验证 -->
<bean id="validator1" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean">
<property name="providerClass" value="org.hibernate.validator.HibernateValidator"/>
<!--不设置则默认为classpath下的ValidationMessages.properties -->
<property name="validationMessageSource" ref="messageSource"/>
</bean>
<!-- 国际化的消息资源文件(本系统中主要用于显示/错误消息定制) -->
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basenames" >
<list>
<!-- 在web环境中一定要定位到classpath 否则默认到当前web应用下找 -->
<value>classpath:message/errormessage</value>
<!--<value>/WEB-INF/resource/message/errormessage</value>-->
</list>
</property>
<property name="useCodeAsDefaultMessage" value="false"/>
<property name="defaultEncoding" value="UTF-8"/>
<property name="cacheSeconds" value="60"/>
</bean>
- src\main\resources\message\errormessage_zh_CN.properties
product.dateisnull=创建时间不能为空!
product.detailisnull = 描述不能为空!
product.priceisnull=商品价格不能为空!
product.pricenotillegue=商品价格不合法!
product.creattimeerror=日期必须为将来时刻!
- 输入几个空值输出验证结果
日期必须为将来时刻!
商品价格不能为空!
部分页面: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 + "/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>修改商品信息</title>
<script type="text/javascript" src="<%=basePath%>js/jquery.min.js"></script>
<script type="text/javascript">
$(function(){
// alert(1);
var params = '{"id": 1,"name": "测试商品","price": 99.9,"detail": "测试商品描述","pic": "123456.jpg","more":{"one":"one"}}';
// $.post(url,params,function(data){
//回调
// },"json");//
$.ajax({
url : "${pageContext.request.contextPath }/json.action",
data : params,
contentType : "application/json;charset=UTF-8",//发送数据的格式
type : "post",
dataType : "json",//回调
success : function(data){
// alert(data.more.one);
alert(data[0].username);
},
});
});
</script>
</head>
<body>
<!-- 上传图片是需要指定属性 enctype="multipart/form-data" -->
<form id="itemForm" action="${pageContext.request.contextPath }/updateitem.action" method="post" >
<%--<form id="itemForm" action="${pageContext.request.contextPath }/updateitem.action" method="post" enctype="multipart/form-data">--%>
<input type="hidden" name="id" value="${item.id }" /> 修改商品信息:
<table width="100%" border=1>
<tr>
<td>商品名称</td>
<td><input type="text" name="name" value="${item.name }" /></td>
</tr>
<tr>
<td>商品价格</td>
<td><input type="text" name="price" value="${item.price }" /></td>
</tr>
<tr>
<td>商品日期</td>
<td><input type="text" name="createtime" value="${item.createtime }" /></td>
</tr>
<tr>
<td>商品图片</td>
<td>
<c:if test="${item.pic != null}">
![](/pic/${item.pic})
<br/>
</c:if>
<input type="file" name="pic"/>
</td>
</tr>
<tr>
<td>商品简介</td>
<td><textarea rows="3" cols="30" name="detail">${item.detail }</textarea>
</td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="提交" />
</td>
</tr>
</table>
</form>
</body>
</html>
error.jsp
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<!DOCTYPE HTML >
<html>
<head>
<title>Java验证框架测试</title>
</head>
<body>
${items.toString()}
${errors.toString()}
<form:form method="post" modelAttribute="items" action="${pageContext.request.contextPath }/validator/updateitem.action">
<h1><form:errors path="price" /></h1><!-- path的值可以为 * ,表示显示所有错误 -->
<h1><form:errors path="*" /></h1>
<%--<form:input path="username" /><br/>--%>
<%--<form:input path="password" /><br/>--%>
<input type="submit" value="提交"/>
</form:form>
</body>
</html>
<%--<%@ 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" %>--%>
<%--<c:if test="${empty errorPosition}">--%>
<%--<c:set var="errorPosition" value="topRight"/>--%>
<%--</c:if>--%>
<%--<spring:hasBindErrors name="${commandName}">--%>
<%--<c:if test="${errors.fieldErrorCount > 0}">--%>
<%--<c:forEach items="${errors.fieldErrors}" var="error">--%>
<%--<spring:message var="message" code="${error.code}" arguments="${error.arguments}" text="${error.defaultMessage}"/>--%>
<%--<c:if test="${not empty message}">--%>
<%--$("[name='${error.field}']")--%>
<%--.validationEngine("showPrompt", "${message}", "error", "${errorPosition}", true)--%>
<%--.validationEngine("updatePromptsPosition");--%>
<%--</c:if>--%>
<%--</c:forEach>--%>
<%--</c:if>--%>
<%--</spring:hasBindErrors>--%>
推荐阅读
-
springmvc的validator数据校验的实现示例代码
-
荐 BAT高频面试系列:设计模式+Spring源码+MyBatis+SpringMVC多线程+MySQL+Redis+框架使用+数据结构算法答案和总结
-
荐 SpringMVC进行数据格式化以及数据校验
-
Nest.js参数校验和自定义返回数据格式详解
-
SpringBoot自定义注解API数据加密和签名校验
-
SpringMVC的校验和国际化3
-
SpringMVC 校验及国际化
-
Springmvc 数据校验和国际化
-
springmvc国际化,分别在页面上和controller中获取国际化资源
-
Struts2 中Action的数据传递问题和国际化问题