您好,登錄后才能下訂單哦!
SpringMVC如何使用攔截器控制登錄?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
SpringMVC讀取Cookie判斷用戶是否登錄,對每一個action都要進行判斷。之前使用jstl標簽在頁面上判斷session如果沒有登錄就使用如下代碼跳轉到登錄頁面。
<c:if test="${sessionScope.login == null || sessionScope.login == false}"> <!-- 未登錄 --> <c:redirect url="/login"/> </c:if> <c:if test="${sessionScope.login}"> <!-- 已登錄 --> </c:if>
但是測試發現如果session過期,頁面渲染就會無故中斷并且不會跳轉到登錄頁面。故嘗試使用攔截器來進行登錄判斷。
攔截器配置文件如下
<!-- <mvc:mapping path="/**" /> 如果只寫一個*,則不能攔截類似/*/*的請求。靜態資源的請求需要判斷不進行攔截 --> <mvc:interceptors> <mvc:interceptor> <mvc:mapping path="/**" /> <bean class="com.ts.settle.tools.interceptor.LoginInterceptor"> <property name="excludedUrls"> <list> <value>/login</value> <value>/static/</value> </list> </property> </bean> </mvc:interceptor> </mvc:interceptors>
攔截器實現類如下
public class LoginInterceptor implements HandlerInterceptor { private AvatarLogger logger = AvatarLoggerFactory.getLogger(this.getClass()); private List<String> excludedUrls; /** * 在DispatcherServlet完全處理完請求后被調用 * 當攔截器拋出異常時,依然會從當前攔截器往回執行所的攔截器的afterCompletion() */ public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception exception) throws Exception { } //在業務處理器處理請求執行完成后,生成視圖之前執行的動作 public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception { } /** * 在業務處理器處理請求之前被調用 * 如果返回false 則退出本攔截器,本攔截器后面的postHandle與afterCompletion不再執行 */ public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { String requestUri = request.getRequestURI(); for (String url : excludedUrls) { if (requestUri.contains(url)) { return true; } } HttpSession session = request.getSession(); Boolean login = (Boolean) session.getAttribute("login"); if (login == null || !login) { //System.out.println(request.getContextPath()); logger.info("Pedirect to login page"); response.sendRedirect(request.getContextPath() + "/login"); } return true; } public void setExcludedUrls(List<String> excludedUrls) { this.excludedUrls = excludedUrls; } }
關于SpringMVC如何使用攔截器控制登錄問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。