SpringMVC拦截器

2021-01-24 22:15

阅读:727

标签:except   res   ring   false   dir   als   定向   end   ESS   

1.实现HandlerInterceptor接口

@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;
	}

2.配置springmvc.xml

  

SpringMVC拦截器

标签:except   res   ring   false   dir   als   定向   end   ESS   

原文地址:https://www.cnblogs.com/zhang20190701/p/12863614.html


评论


亲,登录后才可以留言!