91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

spring通過aop獲取方法參數和參數值的方法

發布時間:2021-09-13 11:18:19 來源:億速云 閱讀:2011 作者:chen 欄目:開發技術

這篇文章主要介紹“spring通過aop獲取方法參數和參數值的方法”,在日常操作中,相信很多人在spring通過aop獲取方法參數和參數值的方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”spring通過aop獲取方法參數和參數值的方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

目錄
  • spring通過aop獲取方法參數和參數值

    • 自定義注解

    • 切面

  • aop切面 注解、參數獲取

    • 1、定義需要切面的注解

    • 2、在需要進行切面的方法標注注解

    • 3、定義切面

spring通過aop獲取方法參數和參數值

自定義注解

package com.xiaolc.aspect;  
import java.lang.annotation.*; 
/**
 * @author lc
 * @date 2019/9/10
 */
@Documented
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface LiCheng {
}

切面

package com.xiaolc.aspect; 
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.core.DefaultParameterNameDiscoverer;
import org.springframework.core.ParameterNameDiscoverer;
import org.springframework.stereotype.Component;
 
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;
 
/**
 * 獲取方法上的注解值
 */
@Component
@Aspect
public class AuditAnnotationAspect {
 
    @Around("@annotation(liCheng))")
    private static Map getFieldsName(ProceedingJoinPoint joinPoint,LiCheng liCheng) throws ClassNotFoundException, NoSuchMethodException {
        String classType = joinPoint.getTarget().getClass().getName();
        String methodName = joinPoint.getSignature().getName();
        // 參數值
        Object[] args = joinPoint.getArgs();
        Class<?>[] classes = new Class[args.length];
        for (int k = 0; k < args.length; k++) {
            if (!args[k].getClass().isPrimitive()) {
                // 獲取的是封裝類型而不是基礎類型
                String result = args[k].getClass().getName();
                Class s = map.get(result);
                classes[k] = s == null ? args[k].getClass() : s;
            }
        }
        ParameterNameDiscoverer pnd = new DefaultParameterNameDiscoverer();
        // 獲取指定的方法,第二個參數可以不傳,但是為了防止有重載的現象,還是需要傳入參數的類型
        Method method = Class.forName(classType).getMethod(methodName, classes);
        // 參數名
        String[] parameterNames = pnd.getParameterNames(method);
        // 通過map封裝參數和參數值
        HashMap<String, Object> paramMap = new HashMap();
        for (int i = 0; i < parameterNames.length; i++) {
            paramMap.put(parameterNames[i], args[i]);
            System.out.println("參數名:"+parameterNames[i]+"\n參數值"+args[i]);
        }
        return paramMap;
    }
    private static HashMap<String, Class> map = new HashMap<String, Class>() {
        {
            put("java.lang.Integer", int.class);
            put("java.lang.Double", double.class);
            put("java.lang.Float", float.class);
            put("java.lang.Long", Long.class);
            put("java.lang.Short", short.class);
            put("java.lang.Boolean", boolean.class);
            put("java.lang.Char", char.class);
        }
    };
}

aop切面 注解、參數獲取

在工作中會經常使用aop,這里將aop使用基本方法,獲取在切點中使用的獲取參數、注解做一個樣例。

1、定義需要切面的注解

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface AnnDemo {
    String value();
    boolean isAop() default true;
}

2、在需要進行切面的方法標注注解

@RestController
@RequestMapping("/order")
public class OrderController {
    @Autowired
    private OrderService orderService;
    @RequestMapping("/all")
    @AnnDemo(value = "all",isAop = false)
    public List<TbOrder> findAll() {
        List<TbOrder> list = orderService.getOrderList();
        return list;
    }
    @RequestMapping("/page")
    @AnnDemo(value = "page")
    public List<TbOrder> findPage(@RequestParam("username") String username) {
        List<TbOrder> listPage = orderService.getOrdersListPage();
        return listPage;
    }
}

3、定義切面

在切面中獲取切點注解,方法,參數的獲取

@Aspect
@Component
public class AspectDemo {
    @Pointcut(value = "execution(* com.yin.freemakeradd.controller..*(..))")
    public void excetionMethod() {}
    @Pointcut(value = "execution(* com.yin.freemakeradd.controller..*(..)) && @annotation(AnnDemo)")
    public void excetionNote() { }
    @Before("excetionMethod()")
    public void testBefore(JoinPoint joinPoint) {
        System.out.println("----------------------------前置通知---");
        Object[] args = joinPoint.getArgs();
        for (Object arg : args) {
            System.out.println(arg);
        }
    }
    @Around(value = "execution(* com.yin.freemakeradd.controller..*(..)) && @annotation(AnnDemo)")
    public Object  testBeforeNote(ProceedingJoinPoint joinPoint) throws Throwable {
        //用的最多通知的簽名
        Signature signature = joinPoint.getSignature();
        MethodSignature msg=(MethodSignature) signature;
        Object target = joinPoint.getTarget();
        //獲取注解標注的方法
        Method method = target.getClass().getMethod(msg.getName(), msg.getParameterTypes());
        //通過方法獲取注解
        AnnDemo annotation = method.getAnnotation(AnnDemo.class);
        Object proceed;
        //獲取參數
        Object[] args = joinPoint.getArgs();
        System.out.println(annotation.value());
        System.out.println(annotation.isAop());
        for (Object arg : args) {
            System.out.println(arg);
        }
        if (Objects.isNull(annotation) || !annotation.isAop()) {
            System.out.println("無需處理");
            proceed = joinPoint.proceed();
        }else {
            System.out.println("進入aop判斷");
            proceed = joinPoint.proceed();
            if(proceed instanceof List){
                List proceedLst = (List) proceed;
                if(!CollectionUtils.isEmpty(proceedLst)){
                    TbOrder tbOrder = new TbOrder();
                    tbOrder.setPaymentType("fffffffffffffffffff");
                    ArrayList<TbOrder> tbOrderLst = new ArrayList<>();
                    tbOrderLst.add(tbOrder);
                    return tbOrderLst;
                }
            }
            System.out.println(proceed);
        }
        return proceed;
    }
}

到此,關于“spring通過aop獲取方法參數和參數值的方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

榆树市| 奉新县| 盖州市| 无为县| 麻城市| 方城县| 南皮县| 夏津县| 高邑县| 无棣县| 灵台县| 吉林市| 加查县| 大洼县| 宜州市| 福海县| 东乌珠穆沁旗| 隆安县| 固安县| 贵溪市| 荔波县| 宣威市| 西贡区| 改则县| 江川县| 南靖县| 海门市| 无极县| 海晏县| 谷城县| 磐石市| 崇左市| 德惠市| 博白县| 五大连池市| 石河子市| 胶州市| 高陵县| 平遥县| 江永县| 秦安县|