如果不想將冗長的邏輯處理給到框架內(nèi)部處理阶女,或者不想使用原生處理痘煤,可以試用spring-intercepter進行請求捕捉输瓜,然后自定義Filter進行處理瓦胎。
這樣的好處是,整個邏輯看起來很立體尤揣,可以滿足自己特定的業(yè)務(wù)需求搔啊,摸清了框架內(nèi)部的套路,再也不是將相應(yīng)的請求扔到內(nèi)部北戏,而自己只是寫一堆正則表達式就完事了负芋。
在springmvc中定義:
<!-- 自定義普通用戶攔截器 -->
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**"/>
<!-- 不需要攔截的請求 -->
<mvc:exclude-mapping path="/login"/>
<!-- 自定義Filter -->
<bean class="org.liao.filter.AutoLoginFilter" />
</mvc:interceptor>
</mvc:interceptors>
在自定義Filter中實現(xiàn)HandlerInterceptor,然后重寫相關(guān)的方法嗜愈,在preHandle()中編寫相應(yīng)的邏輯代碼旧蛾。
類似:
public class ManageLoginFilter implements HandlerInterceptor {
@Resource
private UserService userService;
public void afterCompletion(HttpServletRequest httpServletRequest,
HttpServletResponse httpServletResponse,
Object o, Exception e) throws Exception {
}
public boolean preHandle(HttpServletRequest request,
HttpServletResponse response,
Object o) throws Exception {
Cookie[] cookies = request.getCookies();
int isAuto = -1;
User temp = new User();
for (Cookie c:cookies) {
if (c.getName().equals("autoLoginUser")) {
temp = userService.findByUserName(c.getValue());
isAuto = 1;
}
}
System.out.println(isAuto+","+temp.getIsAdmin());
if (isAuto == -1 || temp.getIsAdmin() != 1) {
//請用管理員用戶重新登錄
//退出到登錄頁面
response.sendRedirect(request.getContextPath()+"/login");
return false;
}
for (Cookie c:cookies) {
if (c.getName().equals("sessionId")) {
if (!c.getValue().equals(temp.getSessionId())) {
//退出到登錄頁面
response.sendRedirect(request.getContextPath()+"/login");
return false;
}
}
}
return true;
}
public void postHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o, ModelAndView modelAndView) throws Exception {
}
}