亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

spring boot攔截器如何使用spring AOP實現

發布時間:2020-11-16 16:21:30 來源:億速云 閱讀:180 作者:Leah 欄目:編程語言

本篇文章為大家展示了spring boot攔截器如何使用spring AOP實現,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

在spring boot中,簡單幾步,使用spring AOP實現一個攔截器:

1、引入依賴:

<dependency> 
  <groupId>org.springframework.boot</groupId> 
  <artifactId>spring-boot-starter-aop</artifactId> 
</dependency> 

2、創建攔截器類(在該類中,定義了攔截規則:攔截com.xjj.web.controller包下面的所有類中,有@RequestMapping注解的方法。):

/** 
 * 攔截器:記錄用戶操作日志,檢查用戶是否登錄…… 
 * @author XuJijun 
 */ 
@Aspect 
@Component 
public class ControllerInterceptor { 
  private static final Logger logger = LoggerFactory.getLogger(ControllerInterceptor.class); 
   
  @Value("${spring.profiles}") 
  private String env; 
   
  /** 
   * 定義攔截規則:攔截com.xjj.web.controller包下面的所有類中,有@RequestMapping注解的方法。 
   */ 
  @Pointcut("execution(* com.xjj.web.controller..*(..)) and @annotation(org.springframework.web.bind.annotation.RequestMapping)") 
  public void controllerMethodPointcut(){} 
   
  /** 
   * 攔截器具體實現 
   * @param pjp 
   * @return JsonResult(被攔截方法的執行結果,或需要登錄的錯誤提示。) 
   */ 
  @Around("controllerMethodPointcut()") //指定攔截器規則;也可以直接把“execution(* com.xjj.........)”寫進這里 
  public Object Interceptor(ProceedingJoinPoint pjp){ 
    long beginTime = System.currentTimeMillis(); 
    MethodSignature signature = (MethodSignature) pjp.getSignature(); 
    Method method = signature.getMethod(); //獲取被攔截的方法 
    String methodName = method.getName(); //獲取被攔截的方法名 
     
    Set<Object> allParams = new LinkedHashSet<>(); //保存所有請求參數,用于輸出到日志中 
     
    logger.info("請求開始,方法:{}", methodName); 
     
    Object result = null; 
 
    Object[] args = pjp.getArgs(); 
    for(Object arg : args){ 
      //logger.debug("arg: {}", arg); 
      if (arg instanceof Map<&#63;, &#63;>) { 
        //提取方法中的MAP參數,用于記錄進日志中 
        @SuppressWarnings("unchecked") 
        Map<String, Object> map = (Map<String, Object>) arg; 
 
        allParams.add(map); 
      }else if(arg instanceof HttpServletRequest){ 
        HttpServletRequest request = (HttpServletRequest) arg; 
        if(isLoginRequired(method)){ 
          if(!isLogin(request)){ 
            result = new JsonResult(ResultCode.NOT_LOGIN, "該操作需要登錄!去登錄嗎?\n\n(不知道登錄賬號?請聯系老許。)", null); 
          } 
        } 
         
        //獲取query string 或 posted form data參數 
        Map<String, String[]> paramMap = request.getParameterMap(); 
        if(paramMap!=null && paramMap.size()>0){ 
          allParams.add(paramMap); 
        } 
      }else if(arg instanceof HttpServletResponse){ 
        //do nothing... 
      }else{ 
        //allParams.add(arg); 
      } 
    } 
     
    try { 
      if(result == null){ 
        // 一切正常的情況下,繼續執行被攔截的方法 
        result = pjp.proceed(); 
      } 
    } catch (Throwable e) { 
      logger.info("exception: ", e); 
      result = new JsonResult(ResultCode.EXCEPTION, "發生異常:"+e.getMessage()); 
    } 
     
    if(result instanceof JsonResult){ 
      long costMs = System.currentTimeMillis() - beginTime; 
      logger.info("{}請求結束,耗時:{}ms", methodName, costMs); 
    } 
     
    return result; 
  } 
   
  /** 
   * 判斷一個方法是否需要登錄 
   * @param method 
   * @return 
   */ 
  private boolean isLoginRequired(Method method){ 
    if(!env.equals("prod")){ //只有生產環境才需要登錄 
      return false; 
    } 
     
    boolean result = true; 
    if(method.isAnnotationPresent(Permission.class)){ 
      result = method.getAnnotation(Permission.class).loginReqired(); 
    } 
     
    return result; 
  } 
   
  //判斷是否已經登錄 
  private boolean isLogin(HttpServletRequest request) { 
    return true; 
    /*String token = XWebUtils.getCookieByName(request, WebConstants.CookieName.AdminToken); 
    if("1".equals(redisOperator.get(RedisConstants.Prefix.ADMIN_TOKEN+token))){ 
      return true; 
    }else { 
      return false; 
    }*/ 
  } 
} 

3、測試

瀏覽器中輸入:http://localhost:8082/api/admin/login

測試結果:

2016-07-26 11:58:12,057:INFO http-nio-8082-exec-1 (ControllerInterceptor.java:58) - 請求開始,方法:login 
2016-07-26 11:58:12,061:INFO http-nio-8082-exec-1 (ControllerInterceptor.java:103) - login請求結束,耗時:8ms 

證明攔截器已經生效。

上述內容就是spring boot攔截器如何使用spring AOP實現,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

高密市| 井陉县| 承德县| 宽城| 海宁市| 珲春市| 宣汉县| 十堰市| 邵阳县| 江城| 沾益县| 新余市| 星座| 牡丹江市| 大埔县| 嘉义县| 铁岭县| 公安县| 泽库县| 张北县| 泊头市| 柳林县| 长丰县| 安阳市| 蒙城县| 黑水县| 曲靖市| 台州市| 河津市| 乐亭县| 奈曼旗| 伊宁市| 彭山县| 治多县| 阳信县| 瑞丽市| 乌恰县| 江华| 泌阳县| 大埔区| 菏泽市|