详解使用Spring AOP和自定义注解进行参数检查

作者:liaosilzu2007 时间:2021-11-27 00:06:49 

引言

使用SpringMVC作为Controller层进行Web开发时,经常会需要对Controller中的方法进行参数检查。本来SpringMVC自带@Valid和@Validated两个注解可用来检查参数,但只能检查参数是bean的情况,对于参数是String或者Long类型的就不适用了,而且有时候这两个注解又突然失效了(没有仔细去调查过原因),对此,可以利用Spring的AOP和自定义注解,自己写一个参数校验的功能。

代码示例

注意:本节代码只是一个演示,给出一个可行的思路,并非完整的解决方案。

本项目是一个简单Web项目,使用到了:Spring、SpringMVC、Maven、JDK1.8

项目结构:

详解使用Spring AOP和自定义注解进行参数检查

自定义注解:

ValidParam.java:


package com.lzumetal.ssm.paramcheck.annotation;

import java.lang.annotation.*;

/**
* 标注在参数bean上,表示需要对该参数校验
*/
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ValidParam {

}

NotNull.java:


package com.lzumetal.ssm.paramcheck.annotation;

import java.lang.annotation.*;

@Target({ElementType.FIELD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface NotNull {

String msg() default "字段不能为空";

}

NotEmpty.java:


package com.lzumetal.ssm.paramcheck.annotation;

import java.lang.annotation.*;

@Target({ElementType.FIELD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface NotEmpty {

String msg() default "字段不能为空";

}

切面类

ParamCheckAspect.java:


package com.lzumetal.ssm.paramcheck.aspect;
import com.lzumetal.ssm.paramcheck.annotation.NotEmpty;
import com.lzumetal.ssm.paramcheck.annotation.NotNull;
import com.lzumetal.ssm.paramcheck.annotation.ValidParam;
import org.apache.commons.lang3.StringUtils;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.reflect.MethodSignature;
import org.springframework.stereotype.Component;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.lang.reflect.Field;
import java.lang.reflect.Parameter;
import java.util.Arrays;
/**
* 参数检查切面类
*/
@Aspect
@Component
public class ParamCheckAspect {

@Before("execution(* com.lzumetal.ssm.paramcheck.controller.*.*(..))")
 public void paramCheck(JoinPoint joinPoint) throws Exception {
   //获取参数对象
   Object[] args = joinPoint.getArgs();
   //获取方法参数
   MethodSignature signature = (MethodSignature) joinPoint.getSignature();
   Parameter[] parameters = signature.getMethod().getParameters();
   for (int i = 0; i < parameters.length; i++) {
     Parameter parameter = parameters[i];
     //Java自带基本类型的参数(例如Integer、String)的处理方式
     if (isPrimite(parameter.getType())) {
       NotNull notNull = parameter.getAnnotation(NotNull.class);
       if (notNull != null && args[i] == null) {
         throw new RuntimeException(parameter.toString() + notNull.msg());
       }
       //TODO
       continue;
     }
     /*
      * 没有标注@ValidParam注解,或者是HttpServletRequest、HttpServletResponse、HttpSession时,都不做处理
     */
     if (parameter.getType().isAssignableFrom(HttpServletRequest.class) || parameter.getType().isAssignableFrom(HttpSession.class) ||
         parameter.getType().isAssignableFrom(HttpServletResponse.class) || parameter.getAnnotation(ValidParam.class) == null) {
       continue;
     }
     Class<?> paramClazz = parameter.getType();
     //获取类型所对应的参数对象,实际项目中Controller中的接口不会传两个相同的自定义类型的参数,所以此处直接使用findFirst()
     Object arg = Arrays.stream(args).filter(ar -> paramClazz.isAssignableFrom(ar.getClass())).findFirst().get();
     //得到参数的所有成员变量
     Field[] declaredFields = paramClazz.getDeclaredFields();
     for (Field field : declaredFields) {
       field.setAccessible(true);
       //校验标有@NotNull注解的字段
       NotNull notNull = field.getAnnotation(NotNull.class);
       if (notNull != null) {
         Object fieldValue = field.get(arg);
         if (fieldValue == null) {
           throw new RuntimeException(field.getName() + notNull.msg());
         }
       }
       //校验标有@NotEmpty注解的字段,NotEmpty只用在String类型上
       NotEmpty notEmpty = field.getAnnotation(NotEmpty.class);
       if (notEmpty != null) {
         if (!String.class.isAssignableFrom(field.getType())) {
           throw new RuntimeException("NotEmpty Annotation using in a wrong field class");
         }
         String fieldStr = (String) field.get(arg);
         if (StringUtils.isBlank(fieldStr)) {
           throw new RuntimeException(field.getName() + notEmpty.msg());
         }
       }
     }
   }
 }
 /**
  * 判断是否为基本类型:包括String
  * @param clazz clazz
  * @return true:是;   false:不是
  */
 private boolean isPrimite(Class<?> clazz){
   return clazz.isPrimitive() || clazz == String.class;
 }
}

参数JavaBean

StudentParam.java:


package com.lzumetal.ssm.paramcheck.requestParam;
import com.lzumetal.ssm.paramcheck.annotation.NotEmpty;
import com.lzumetal.ssm.paramcheck.annotation.NotNull;
public class StudentParam {
 @NotNull
 private Integer id;
 private Integer age;
 @NotEmpty
 private String name;
 //get、set方法省略...
}

验证参数校验的Controller

TestController.java:


package com.lzumetal.ssm.paramcheck.controller;
import com.google.gson.Gson;
import com.lzumetal.ssm.paramcheck.annotation.NotNull;
import com.lzumetal.ssm.paramcheck.annotation.ValidParam;
import com.lzumetal.ssm.paramcheck.requestParam.StudentParam;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class TestController {
 private static Gson gson = new Gson();
 @ResponseBody
 @RequestMapping(value = "/test", method = RequestMethod.POST)
 public StudentParam checkParam(@ValidParam StudentParam param, @NotNull Integer limit) {
   System.out.println(gson.toJson(param));
   System.out.println(limit);
   return param;
 }
}

本节示例代码已上传至GitHub:https://github.com/liaosilzu2007/ssm-parent.git

来源:https://segmentfault.com/a/1190000014454607

标签:Spring,AOP,注解
0
投稿

猜你喜欢

  • 深入学习java中的Groovy 和 Scala 类

    2023-04-09 10:51:29
  • 如何在Android中实现左右滑动的指引效果

    2023-06-23 09:08:47
  • RocketMQ4.5.X 实现修改生产者消费者日志保存路径

    2021-05-24 23:58:37
  • C# cmd中修改显示(显示进度变化效果)的方法

    2023-11-02 13:55:34
  • Android recyclerview实现纵向虚线时间轴的示例代码

    2023-08-23 07:03:39
  • Spring Cloud Gateway入门解读

    2023-03-14 12:01:00
  • Java8中LocalDateTime与时间戳timestamp的互相转换

    2023-11-10 05:20:21
  • Spring Boot静态资源路径的配置与修改详解

    2022-09-15 19:27:08
  • Java集合TreeSet用法详解

    2023-11-10 22:53:34
  • Android利用传感器仿微信摇一摇功能

    2022-09-10 18:18:18
  • Android实现excel/pdf/word/odt/图片相互转换

    2021-12-05 23:08:16
  • 详解Android使用CoordinatorLayout+AppBarLayout实现拉伸顶部图片功能

    2023-04-27 16:55:29
  • Java maven详细介绍

    2022-10-12 06:45:31
  • MyBatis @Select注解介绍:基本用法与动态SQL拼写方式

    2023-07-17 05:56:43
  • Java中逆序遍历List集合的实现

    2022-04-03 23:48:13
  • android开发环境遇到adt无法启动的问题分析及解决方法

    2023-12-11 13:13:23
  • Java设计模式的事件模型详解

    2023-11-29 04:47:08
  • Android编程调用Camera和相册功能详解

    2023-12-15 00:09:23
  • Android实现WebView点击拦截跳转原生

    2023-01-06 23:47:38
  • Android SDK Manager更新、下载速度慢问题解决办法

    2023-10-25 06:03:18
  • asp之家 软件编程 m.aspxhome.com