JSR303是Java规范中定义的一套用于数据校验的标准,也被称为Bean Validation。它提供了一组注解,用于验证Java对象的属性值是否满足特定的约束条件。
使用JSR303可以在服务器端对用户提交的数据进行验证,确保数据的合法性和有效性。它可以减少开发人员编写大量的校验逻辑代码,提高开发效率,并且可以在不同层次(如控制器、服务层、DAO)进行数据验证,保证数据的一致性。
常见的JSR303注解包括:
@NotNull:验证对象不为null。
@NotEmpty:验证字符串、集合、数组不为空。
@NotBlank:验证字符串不为空,并且长度必须大于0。
@Size:验证字符串、集合、数组的长度范围。
@Min:验证数字的最小值。
@Max:验证数字的最大值。
@Pattern:验证字符串是否匹配指定的正则表达式。
@Valid是Java标准的注解,用于触发对被注解对象的校验。它可以直接放在方法参数上,或者作为Spring MVC中处理请求体参数校验的一部分。
@Validated是Spring框架提供的注解,与@Valid类似,但功能更加强大。它可以用于类、方法和方法参数级别的校验,并且支持分组校验等高级特性。
1.5.1 导入依赖
在Maven项目中,需要导入javax.validation相关的依赖。
<hibernate.validator.version>6.0.7.Finalhibernate.validator.version>
<dependency>
<groupId>org.hibernategroupId>
<artifactId>hibernate-validatorartifactId>
<version>${hibernate.validator.version}version>
dependency>
通过在实体类的字段上添加不同的JSR303注解,定义校验规则。
在这里插入package com.niyin.biz.impl;
import com.niyin.biz.tyBiz;
import com.niyin.mapper.tyMapper;
import com.niyin.model.ty;
import com.niyin.utils.PageBean;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
import java.util.Map;
@Service
public class tyBizImpl implements tyBiz {
@Autowired
private tyMapper tyMapper;
@Override
public int deleteByPrimaryKey(Integer tid) {
return tyMapper.deleteByPrimaryKey(tid);
}
@Override
public int insert(ty record) {
return tyMapper.insert(record);
}
@Override
public int insertSelective(ty record) {
return tyMapper.insertSelective(record);
}
@Override
public ty selectByPrimaryKey(Integer tid) {
return tyMapper.selectByPrimaryKey(tid);
}
@Override
public int updateByPrimaryKeySelective(ty record) {
return tyMapper.updateByPrimaryKeySelective(record);
}
@Override
public int updateByPrimaryKey(ty record) {
return tyMapper.updateByPrimaryKey(record);
}
@Override
public List<ty> selectByPager(ty t, PageBean pageBean) {
return tyMapper.selectByPager(t);
}
}
在控制器中接收用户提交的数据,并使用@Validated注解进行数据校验。如果校验失败,则返回错误信息给客户端。
@RequestMapping("/valiAdd")
public String valiAdd(@Validated ty t, BindingResult result, HttpServletRequest req){
// 如果服务端验证不通过,有错误
if(result.hasErrors()){
// 服务端验证了实体类的多个属性,多个属性都没有验证通过
List<FieldError> fieldErrors = result.getFieldErrors();
Map<String,Object> map = new HashMap<>();
for (FieldError fieldError : fieldErrors) {
// 将多个属性的验证失败信息输送到控制台
System.out.println(fieldError.getField() + ":" + fieldError.getDefaultMessage());
map.put(fieldError.getField(),fieldError.getDefaultMessage());
}
req.setAttribute("errorMap",map);
}else {
this.tyBiz.insertSelective(t);
return "redirect:list";
}
return "edit";
}
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
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>
head>
<body>
<form action="${pageContext.request.contextPath }/clz/${empty ts ? 'valiAdd' : 'edit'}" method="post">
id:<input type="text" name="tid" value="${ts.tid }"><span style="color: red;">${errorMap.tid}span><br>
bname:<input type="text" name="tname" value="${ts.tname }"><span style="color: red;">${errorMap.tname}span><br>
price:<input type="text" name="tprice" value="${ts.tprice }"><span style="color: red;">${errorMap.tprice}span><br>
<input type="submit">
form>
body>
html>
拦截器(Interceptor)是在Web应用程序中常用的一种技术,用于在请求被处理前后进行拦截和处理。它可以在控制器和处理器之间进行预处理和后处理操作。
拦截器和过滤器都可以用于对请求进行处理,但它们在使用方式和功能上有一些区别。过滤器是基于Servlet规范的,可以对所有请求进行处理,而拦截器是基于Spring MVC框架的,只能对包含了拦截器配置的请求进行处理。
拦截器可以应用在各种场景下,常见的使用场景包括权限验证、日志记录、异常处理、缓存处理等。它可以对请求进行统一处理,简化开发流程,并提高代码的可维护性和重用性。
2.4.1 入门案例
package com.niyin.interceptor;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class OneInterceptor implements HandlerInterceptor {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
System.out.println("【OneInterceptor】:preHandle...");
return true;
}
@Override
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
System.out.println("【OneInterceptor】:postHandle...");
}
@Override
public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
System.out.println("【OneInterceptor】:afterCompletion...");
}
}
spring_mvc配置拦截器器
<mvc:interceptors>-->
<bean class="com.niyin.interceptor.OneInterceptor">bean>
mvc:interceptors>-->
结论:拦截器会根据preHandle()方法返回值进行拦截判断,返回了一个true值。这个返回值表示该拦截器已经处理了当前的请求,并且可以继续向下传递请求。如果返回false,则表示该拦截器不处理当前请求,请求将被终止。
如果多个拦截器能够对相同的请求进行拦截,则多个拦截器会形成一个拦截器链,主要理解拦截器链中各个拦截器的执行顺序。拦截器链中多个拦截器的执行顺序,根拦截器的配置顺序有关,先配置的先执行。
案例
package com.niyin.interceptor;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class TwoInterceptor implements HandlerInterceptor {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
System.out.println("【TwoInterceptor】:preHandle...");
return true;
}
@Override
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
System.out.println("【TwoInterceptor】:postHandle...");
}
@Override
public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
System.out.println("【TwoInterceptor】:afterCompletion...");
}
}
spring_mvc
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**"/>
<bean class="com.niyin.interceptor.OneInterceptor"/>
mvc:interceptor>
<mvc:interceptor>
<mvc:mapping path="/clz/**"/>
<bean class="com.niyin.interceptor.TwoInterceptor"/>
mvc:interceptor>
mvc:interceptors>
package com.niyin.web;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
@Controller
public class LoginController {
@RequestMapping("/login")
public String login(HttpServletRequest req){
String uname = req.getParameter("uname");
HttpSession session = req.getSession();
if ("zs".equals(uname)){
session.setAttribute("uname",uname);
}
return "redirect:/clz/list";
}
@RequestMapping("/logout")
public String logout(HttpServletRequest req){
req.getSession().invalidate();
return "redirect:/clz/list";
}
}
package com.niyin.interceptor;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class LoginInterceptor implements HandlerInterceptor {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
System.out.println("【implements】:preHandle...");
StringBuffer url = request.getRequestURL();
if (url.indexOf("/login") > 0 || url.indexOf("/logout") > 0){
// 如果是 登录、退出 中的一种
return true;
}
// 代表不是登录,也不是退出
// 除了登录、退出,其他操作都需要判断是否 session 登录成功过
String uname = (String) request.getSession().getAttribute("uname");
if (uname == null || "".equals(uname)){
response.sendRedirect("/page/login");
return false;
}
return true;
}
@Override
public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception {
}
@Override
public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception {
}
}
Sping_mvc
<mvc:interceptors>
<bean class="com.niyin.interceptor.LoginInterceptor">bean>
mvc:interceptors>
jsp
<%--
Created by IntelliJ IDEA.
User: 林墨
Date: 2023/9/12
Time: 23:14
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>登录界面title>
head>
<body>
<form action="/login" method="post">
用户<input name="uname">
<input type="submit">
form>
body>
html>