SpringMVC拦截器
2021-01-24 22:15
标签:except res ring false dir als 定向 end ESS 1.实现HandlerInterceptor接口 2.配置springmvc.xml SpringMVC拦截器 标签:except res ring false dir als 定向 end ESS 原文地址:https://www.cnblogs.com/zhang20190701/p/12863614.html@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object obj) throws Exception {
// 获取HttpSession对象
HttpSession session = request.getSession();
// 判断session中是否有登录信息
if (session.getAttribute("id") == null) {
// 没有登录信息,则重定向到登录页
System.err.println("拦截器启动+重定向");
response.sendRedirect("../");
// 执行拦截
return false;
}
// 放行
return true;
}
上一篇:归并排序