java-自定义一个注解

自定义一个注解

  • 自定义注解
    下面展示一些 内联代码片
//注解类
import java.lang.annotation.*;

@Target({ElementType.PARAMETER,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface RecordUpdateNumberMethod {
    String type()  default "操作类型";
}
//实现类
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.Signature;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.aspectj.lang.reflect.MethodSignature;
import org.springframework.stereotype.Component;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;

import javax.servlet.http.HttpServletRequest;
import java.lang.reflect.Method;
import java.util.Map;

@Component
@Aspect
public class RecordUpdateNumberAop extends BaseClass {

    //配置接入点,如果不知道怎么配置,可以百度一下规则
    @Pointcut("execution(* com.cn.controller..*.*(..))")
    private void controllerAspect(){

    }//定义一个切入点

    @Before("controllerAspect()")
    public void AfterReturning(JoinPoint pjp){
		System.out.println("---------------------执行前通知----------------------");
        HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
        //String name=request.getParameter("user_id");
        //String name = (String) request.getSession().getAttribute("token");
        //System.out.println("-----------"+name);
        // 拦截的实体类,就是当前正在执行的controller
        Object target = pjp.getTarget();
        System.out.println("拦截的实体类,就是当前正在执行的controller------"+target);
        // 拦截的方法名称。当前正在执行的方法
        String methodName = pjp.getSignature().getName();
        System.out.println("拦截的方法名称。当前正在执行的方法-------"+methodName);
        // 拦截的方法参数
        Object[] args = pjp.getArgs();
        System.out.println("-------拦截的方法参数--------");
        for(int i=0;i<args.length;i++){
            System.out.println("======"+args[i]);
        }
        System.out.println("-------拦截的方法参数--------");
        // 拦截的放参数类型
        Signature sig = pjp.getSignature();
        System.out.println("拦截的参数类型---------"+sig);
        MethodSignature msig = null;
        if (!(sig instanceof MethodSignature)) {
            throw new IllegalArgumentException("该注解只能用于方法");
        }
        msig = (MethodSignature) sig;
        Class[] parameterTypes = msig.getMethod().getParameterTypes();

        Object object = null;
        // 获得被拦截的方法
        Method method = null;
        try {
            method = target.getClass().getMethod(methodName, parameterTypes);
        } catch (NoSuchMethodException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        } catch (SecurityException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }
        System.out.println("method----"+method);
        if(null!=method){
            if(method.isAnnotationPresent(RecordUpdateNumberMethod.class)){
                RecordUpdateNumberMethod log = method.getAnnotation(RecordUpdateNumberMethod.class);
                //获取参数
                String type=log.type();
                //业务代码执行
            }
        }
	}
// 注解调用
..这是一个接口
	@PostMapping(value = "")
    @RecordUpdateNumberMethod(type="")
    public Object addUploadFileManagement(){}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值