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

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • 解決Springboot全局異常處理與AOP日志處理中@AfterThrowing失效問題的方法

解決Springboot全局異常處理與AOP日志處理中@AfterThrowing失效問題的方法

發布時間:2023-06-09 09:17:06 來源:億速云 閱讀:384 作者:栢白 欄目:開發技術

本篇文章和大家了解一下解決Springboot全局異常處理與AOP日志處理中@AfterThrowing失效問題的方法。有一定的參考價值,有需要的朋友可以參考一下,希望對大家有所幫助。

目錄
  • 一、前言

  • 二、問題

  • 三、失效場景

一、前言

  • 在實際業務場景中,我們通常會使用全局異常處理機制,也就是在業務代碼發生異常的時候,攔截異常并進行統一的處理,然后以Json格式返回給前端。

  • 同時我們也會使用AOP進行操作日志記錄,在不發生異常時,可以使用四種advice方式記錄操作日志:@Before(“”),@After(“”)、 @AfterReturning(“”)、 @Around(“”)。當發生異常時,使用@AfterThrowing(value = “”,throwing = “e”)進行日志記錄。

二、問題

同時使用上述兩種方式,可能出現某一種失效的場景。

三、失效場景

失效場景一: 如果采用前后端不分離架構,采用下屬代碼返回前端響應結果,如果統一異常處理執行順序在@AfterThrowing之前,就會出現@AfterThrowing中不執行情況。前后端分離架構不會出現此問題。

String xRequestedWith = request.getHeader("x-requested-with");
if ("XMLHttpRequest".equals(xRequestedWith)) {
    response.setContentType("application/plain;charset=utf-8");
    PrintWriter writer = response.getWriter();
    writer.write(CommunityUtil.getJSONString(1, "服務器異常!"));
} else {
    response.sendRedirect(request.getContextPath() + "/error");
}

解決方案:讓AOP日志處理類實現Ordered 接口,并重寫getOrder()方法,使其返回值為1,返回值越小,執行的順序越靠前,使其執行順序優先于全部異常處理類。

@Component
@Aspect
public class LogAspectTest implements Ordered {
    @Override
    public int getOrder() {
        return 1;
    }
        @AfterThrowing(value = "pointcut()",throwing = "e")
    public void afterThrowing(JoinPoint joinPoint,Exception e){
        String className = joinPoint.getTarget().getClass().getName();
        String methodName = joinPoint.getSignature().getName();
        System.out.println("className is : " + className + ". methodName is : " + methodName);
        System.out.println("afterThrowing excute········" + e.getMessage());
        e.printStackTrace();
    }
}

失效場景二:如果使用了 @Around(“”),在執行 joinPoint.proceed()方法時,捕獲了異常,會導致全局異常處理無法收到異常,因此失效。

@Around("pointcut()")
public void around(ProceedingJoinPoint joinPoint) throws Throwable {
    String className = joinPoint.getTarget().getClass().getName();
    String methodName = joinPoint.getSignature().getName();
    System.out.println("className is : " + className + ". methodName is : " + methodName);
    System.out.println("around excute before ········");
    Object obj = null;
    try {
        obj = joinPoint.proceed();
    } catch (Throwable e) {
        System.out.println("我捕獲了異常");
    }
    System.out.println("obj 對象: " + obj);
    System.out.println("around excute after ········");
}

解決方案:不要進行異常捕獲,或者捕獲后重新拋出異常。

@Around("pointcut()")
public void around(ProceedingJoinPoint joinPoint) throws Throwable {
    String className = joinPoint.getTarget().getClass().getName();
    String methodName = joinPoint.getSignature().getName();
    System.out.println("className is : " + className + ". methodName is : " + methodName);
    System.out.println("around excute before ········");
    Object obj = null;
    try {
        obj = joinPoint.proceed();
    } catch (Throwable e) {
        System.out.println("我捕獲了異常");
        throw new RuntimeException("執行失敗",e);
    }
    System.out.println("obj 對象: " + obj);
    System.out.println("around excute after ········");
}

4、測試全部代碼

package com.nowcoder.community.aspect;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.core.Ordered;
import org.springframework.stereotype.Component;
import org.springframework.web.context.request.RequestAttributes;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;
/**
 * @Description aop 日志記錄
 */
@Component
@Aspect
public class LogAspectTest implements Ordered {
    /**
     * 定義執行順序的優先級,值越小,優先級越高
     * @return
     */
    @Override
    public int getOrder() {
        return 1;
    }
    /**
     * 定義切點(織入點)
     *  execution(* com.nowcoder.community.controller.*.*(..))
     *      - 第一個 * 表示 支持任意類型返回值的方法
     *      - com.nowcoder.community.controller 表示這個包下的類
     *      - 第二個 * 表示 controller包下的任意類
     *      - 第三個 * 表示 類中的任意方法
     *      - (..) 表示方法可以擁有任意參數
     *   可以根據自己的需求替換。
     *
     */
    @Pointcut("execution(* com.nowcoder.community.controller.*.*(..))")
    public void pointcut(){
    }
    /**
     * 定義 advice 通知
     *    - 1. @Before 目標方法執行之前
     *    - 2. @After  目標方法執行之后
     *    - 3. @AfterReturning 目標方法返回執行結果之后
     *    - 4. @AfterThrowing 目標方法拋出異常后
     *    - 5. @Around 可以使用ProceedingJoinPoint joinPoint,獲取目標對象,通過動態代理,代理目標類執行,在目標對象執行前后均可
     */
    @Before("pointcut()")
    public void before(JoinPoint joinPoint){
        String className = joinPoint.getTarget().getClass().getName();
        String methodName = joinPoint.getSignature().getName();
        ServletRequestAttributes attributes = (ServletRequestAttributes)RequestContextHolder.getRequestAttributes();
        if (attributes == null){
            return;
        }
        // 請求ip
        String ip = attributes.getRequest().getRemoteHost();
        // 請求路徑
        String requestURI = attributes.getRequest().getRequestURI();
        // 請求方法
        String requestMethod = attributes.getRequest().getMethod();
        System.out.println(String.format("用戶: [%s] 的請求路徑為:[%s], 請求方式為: [%s],請求類名為: [%s], 請求方法名為: [%s]", ip,requestURI,
                requestMethod,className,methodName));
        System.out.println("before excute········");
    }
    @After("pointcut()")
    public void after(JoinPoint joinPoint){
        String className = joinPoint.getTarget().getClass().getName();
        String methodName = joinPoint.getSignature().getName();
        ServletRequestAttributes attributes = (ServletRequestAttributes)RequestContextHolder.getRequestAttributes();
        if (attributes == null){
            return;
        }
        // 請求ip
        String ip = attributes.getRequest().getRemoteHost();
        // 請求路徑
        String requestURI = attributes.getRequest().getRequestURI();
        // 請求方法
        String requestMethod = attributes.getRequest().getMethod();
        System.out.println(String.format("用戶: [%s] 的請求路徑為:[%s], 請求方式為: [%s],請求類名為: [%s], 請求方法名為: [%s]", ip,requestURI,
                                         requestMethod,className,methodName));
        System.out.println("after excute········");
    }
    @AfterReturning("pointcut()")
    public void afterReturning(JoinPoint joinPoint){
        String className = joinPoint.getTarget().getClass().getName();
        String methodName = joinPoint.getSignature().getName();
        ServletRequestAttributes attributes = (ServletRequestAttributes)RequestContextHolder.getRequestAttributes();
        if (attributes == null){
            return;
        }
        // 請求ip
        String ip = attributes.getRequest().getRemoteHost();
        // 請求路徑
        String requestURI = attributes.getRequest().getRequestURI();
        // 請求方法
        String requestMethod = attributes.getRequest().getMethod();
        System.out.println(String.format("用戶: [%s] 的請求路徑為:[%s], 請求方式為: [%s],請求類名為: [%s], 請求方法名為: [%s]", ip,requestURI,
                                         requestMethod,className,methodName));
        System.out.println("afterReturning excute········");
    }
    @AfterThrowing(value = "pointcut()",throwing = "e")
    public void afterThrowing(JoinPoint joinPoint,Exception e){
        String className = joinPoint.getTarget().getClass().getName();
        String methodName = joinPoint.getSignature().getName();
        ServletRequestAttributes attributes = (ServletRequestAttributes)RequestContextHolder.getRequestAttributes();
        if (attributes == null){
            return;
        }
        // 請求ip
        String ip = attributes.getRequest().getRemoteHost();
        // 請求路徑
        String requestURI = attributes.getRequest().getRequestURI();
        // 請求方法
        String requestMethod = attributes.getRequest().getMethod();
        System.out.println(String.format("用戶: [%s] 的請求路徑為:[%s], 請求方式為: [%s],請求類名為: [%s], 請求方法名為: [%s],請求失敗原因: [%s]", ip,
                                         requestURI, requestMethod,className,methodName,e.getMessage()+e.getCause()));
        System.out.println("afterThrowing excute········" + e.getMessage());
        e.printStackTrace();
    }
    @Around("pointcut()")
    public void around(ProceedingJoinPoint joinPoint) throws Throwable {
        String className = joinPoint.getTarget().getClass().getName();
        String methodName = joinPoint.getSignature().getName();
        System.out.println("className is : " + className + ". methodName is : " + methodName);
        ServletRequestAttributes attributes = (ServletRequestAttributes)RequestContextHolder.getRequestAttributes();
        if (attributes == null){
            return;
        }
        // 請求ip
        String ip = attributes.getRequest().getRemoteHost();
        // 請求路徑
        String requestURI = attributes.getRequest().getRequestURI();
        // 請求方法
        String requestMethod = attributes.getRequest().getMethod();
        System.out.println(String.format("用戶: [%s] 的請求路徑為:[%s], 請求方式為: [%s],請求類名為: [%s], 請求方法名為: [%s]", ip,requestURI,
                                         requestMethod,className,methodName));
        Object obj = null;
        try {
            obj = joinPoint.proceed();
        } catch (Throwable e) {
            System.out.println("我捕獲了異常");
            throw new RuntimeException("執行失敗",e);
        }
        System.out.println(String.format("用戶: [%s] 的請求路徑為:[%s], 請求方式為: [%s],請求類名為: [%s], 請求方法名為: [%s]", ip,requestURI,
                                         requestMethod,className,methodName));
        System.out.println("around excute after ········");
    }
}

以上就是解決Springboot全局異常處理與AOP日志處理中@AfterThrowing失效問題的方法的簡略介紹,當然詳細使用上面的不同還得要大家自己使用過才領會。如果想了解更多,歡迎關注億速云行業資訊頻道哦!

向AI問一下細節

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

AI

丹寨县| 武宣县| 兴安县| 淮南市| 威海市| 辉县市| 宁都县| 军事| 资中县| 淮北市| 海晏县| 桂林市| 岱山县| 雅江县| 额济纳旗| 壤塘县| 五家渠市| 定陶县| 渝中区| 维西| 定西市| 临江市| 孟州市| 垫江县| 万盛区| 长葛市| 肥东县| 青阳县| 嘉荫县| 德庆县| 荆门市| 盐城市| 黑山县| 隆化县| 丰宁| 红河县| 榆林市| 定陶县| 兴城市| 汉中市| 嘉祥县|