码迷,mamicode.com
首页 > 编程语言 > 详细

springboot最简单的AOP

时间:2018-12-12 17:34:09      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:exec   ati   boot   execution   oid   pac   切面   nbsp   对象   

package com.yitiantec.ecommerce.admin.config;


import java.lang.reflect.Method;
import org.aspectj.lang.JoinPoint;
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.context.annotation.Configuration;

import com.yitiantec.ecommerce.admin.util.XinyuanJSONUtil;

import lombok.extern.slf4j.Slf4j;

@Aspect //一个切面
@Configuration // spring boot 配置类
@Slf4j
public class RequestParamValidAspect {

 

@Pointcut("execution(* com.yitiantec.demo.pay.controller.*.*(..))")
public void soaServiceBefore(){}

/* * 通过连接点切入 */
@Before("soaServiceBefore()")
public void twiceAsOld1(JoinPoint point) {
// 获得切入目标对象
Object target = point.getThis();
// 获得切入方法参数
Object [] args = point.getArgs();
// 获得切入的方法
Method method = ((MethodSignature)point.getSignature()).getMethod();

log.info("AOP 进入方法"+method);
log.info("APO 收到参数="+XinyuanJSONUtil.gSonString(args));
}
}

springboot最简单的AOP

标签:exec   ati   boot   execution   oid   pac   切面   nbsp   对象   

原文地址:https://www.cnblogs.com/laixin09/p/10109191.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!