久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

Spring Security3源碼分析-ExceptionTranslationFilter分析

 BlazerOfIT 2012-07-12
ExceptionTranslationFilter過濾器對應(yīng)的類路徑為
org.springframework.security.web.access.ExceptionTranslationFilter
從類名就看出這個過濾器用于異常翻譯的,。但是從這個過濾器在filterchain中的位置來看,它僅僅處于倒數(shù)第三的位置(這個filter后面分為是FilterSecurityInterceptor,、SwitchUserFilter),,所以ExceptionTranslationFilter只能捕獲到后面兩個過濾器所拋出的異常,。
這里需要強調(diào)一下,,spring security中的異常類基本上都繼承RuntimeException。

接著看ExceptionTranslationFilter執(zhí)行過程
Java代碼 復(fù)制代碼 收藏代碼
  1. //doFilter攔截到請求時,,不做處理,。僅僅處理后面filter所拋出的異常  
  2. public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain)  
  3.         throws IOException, ServletException {  
  4.     HttpServletRequest request = (HttpServletRequest) req;  
  5.     HttpServletResponse response = (HttpServletResponse) res;  
  6.   
  7.     try {  
  8.         chain.doFilter(request, response);  
  9.     }  
  10.     catch (IOException ex) {  
  11.         throw ex;  
  12.     }  
  13.     catch (Exception ex) {  
  14.         //這里主要是從異常堆棧中提取SpringSecurityException  
  15.         Throwable[] causeChain = throwableAnalyzer.determineCauseChain(ex);  
  16.         RuntimeException ase = (AuthenticationException)  
  17.                 throwableAnalyzer.getFirstThrowableOfType(AuthenticationException.class, causeChain);  
  18.   
  19.         if (ase == null) {  
  20.             ase = (AccessDeniedException)throwableAnalyzer.getFirstThrowableOfType(AccessDeniedException.class, causeChain);  
  21.         }  
  22.         //如果提取到安全異常,則進行處理  
  23.         if (ase != null) {  
  24.             handleException(request, response, chain, ase);  
  25.         } else {  
  26.             //沒有安全異常,,繼續(xù)拋出  
  27.             // Rethrow ServletExceptions and RuntimeExceptions as-is  
  28.             if (ex instanceof ServletException) {  
  29.                 throw (ServletException) ex;  
  30.             }  
  31.             else if (ex instanceof RuntimeException) {  
  32.                 throw (RuntimeException) ex;  
  33.             }  
  34.             throw new RuntimeException(ex);  
  35.         }  
  36.     }  
  37. }  
  38. //處理安全異常  
  39. private void handleException(HttpServletRequest request, HttpServletResponse response, FilterChain chain,  
  40.         RuntimeException exception) throws IOException, ServletException {  
  41.     //如果是認證異常,,由sendStartAuthentication處理  
  42.     if (exception instanceof AuthenticationException) {  
  43.         sendStartAuthentication(request, response, chain, (AuthenticationException) exception);  
  44.     }  
  45.     //如果是訪問拒絕異常,由訪問拒絕處理類的handle處理  
  46.     else if (exception instanceof AccessDeniedException) {  
  47.         if (authenticationTrustResolver.isAnonymous(SecurityContextHolder.getContext().getAuthentication())) {  
  48.             sendStartAuthentication(request, response, chain, new InsufficientAuthenticationException(  
  49.                     "Full authentication is required to access this resource"));  
  50.         }  
  51.         else {  
  52.             accessDeniedHandler.handle(request, response, (AccessDeniedException) exception);  
  53.         }  
  54.     }  
  55. }  

先分析如何處理認證異常
Java代碼 復(fù)制代碼 收藏代碼
  1. //處理認證異常  
  2. protected void sendStartAuthentication(HttpServletRequest request, HttpServletResponse response, FilterChain chain,  
  3.         AuthenticationException reason) throws ServletException, IOException {  
  4.     // SEC-112: Clear the SecurityContextHolder's Authentication, as the  
  5.     // existing Authentication is no longer considered valid  
  6.     //首先把SecurityContext中的認證實體置空  
  7.     SecurityContextHolder.getContext().setAuthentication(null);  
  8.     //通過cache保存當(dāng)前的請求信息(分析RequestCacheAwareFilter時再深入)  
  9.     requestCache.saveRequest(request, response);  
  10.     logger.debug("Calling Authentication entry point.");  
  11.     //由認證入口點開始處理  
  12.     authenticationEntryPoint.commence(request, response, reason);  
  13. }  

這里補充一下
authenticationEntryPoint是由配置http標(biāo)簽時,,通過什么認證入口來決定注入相應(yīng)的入口點bean的,。請看下面的對應(yīng)關(guān)系列表
form-login認證:LoginUrlAuthenticationEntryPoint
http-basic認證:BasicAuthenticationEntryPoint
openid-login認證:LoginUrlAuthenticationEntryPoint
x509認證:Http403ForbiddenEntryPoint


就不一一分析每個EntryPoint了,,著重看一下LoginUrlAuthenticationEntryPoint
Java代碼 復(fù)制代碼 收藏代碼
  1. //主要目的是完成跳轉(zhuǎn)任務(wù)  
  2.  //創(chuàng)建該bean時,,只注入了loginFormUrl屬性,其他類變量均為默認值  
  3. public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException)  
  4.         throws IOException, ServletException {  
  5.     HttpServletRequest httpRequest = (HttpServletRequest) request;  
  6.     HttpServletResponse httpResponse = (HttpServletResponse) response;  
  7.   
  8.     String redirectUrl = null;  
  9.     //默認為false  
  10.     if (useForward) {  
  11.         if (forceHttps && "http".equals(request.getScheme())) {  
  12.             redirectUrl = buildHttpsRedirectUrlForRequest(httpRequest);  
  13.         }  
  14.   
  15.         if (redirectUrl == null) {  
  16.             String loginForm = determineUrlToUseForThisRequest(httpRequest, httpResponse, authException);  
  17.             RequestDispatcher dispatcher = httpRequest.getRequestDispatcher(loginForm);  
  18.             dispatcher.forward(request, response);  
  19.             return;  
  20.         }  
  21.     } else {  
  22.         //返回的url為loginFormUrl配置的值,,如果未配置,,跳轉(zhuǎn)到默認登錄頁面/spring_security_login  
  23.         redirectUrl = buildRedirectUrlToLoginPage(httpRequest, httpResponse, authException);  
  24.   
  25.     }  
  26.     redirectStrategy.sendRedirect(httpRequest, httpResponse, redirectUrl);  
  27. }  


接著分析訪問拒絕類異常的處理過程,看AccessDeniedHandlerImpl的handle方法
Java代碼 復(fù)制代碼 收藏代碼
  1. public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException accessDeniedException)  
  2.         throws IOException, ServletException {  
  3.     if (!response.isCommitted()) {  
  4.         //如果配置了access-denied-page屬性,,跳轉(zhuǎn)到指定的url  
  5.         if (errorPage != null) {  
  6.             // Put exception into request scope (perhaps of use to a view)  
  7.             request.setAttribute(SPRING_SECURITY_ACCESS_DENIED_EXCEPTION_KEY, accessDeniedException);  
  8.   
  9.             // Set the 403 status code.  
  10.             response.setStatus(HttpServletResponse.SC_FORBIDDEN);  
  11.   
  12.             // forward to error page.  
  13.             RequestDispatcher dispatcher = request.getRequestDispatcher(errorPage);  
  14.             dispatcher.forward(request, response);  
  15.         //如果沒有配置,,則直接響應(yīng)403禁止訪問的錯誤信息到瀏覽器端  
  16.         } else {  
  17.             response.sendError(HttpServletResponse.SC_FORBIDDEN, accessDeniedException.getMessage());  
  18.         }  
  19.     }  
  20. }  


通過以上分析,可以大體上認識到ExceptionTranslationFilter主要攔截兩類安全異常:認證異常,、訪問拒絕異常,。而且僅僅是捕獲FilterSecurityInterceptor,、SwitchUserFilter以及自定義攔截器的異常,。所以在自定義攔截器時,,需要注意在鏈中的順序。

在上面分析過程中,,有requestCache.saveRequest(request, response);的語句,,具體requestCache的用途下篇分析。

    本站是提供個人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點,。請注意甄別內(nèi)容中的聯(lián)系方式,、誘導(dǎo)購買等信息,,謹防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊一鍵舉報,。
    轉(zhuǎn)藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多