spring 拦截器

简介:   /selfhelp...

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context"
	xmlns:oxm="http://www.springframework.org/schema/oxm"
	xsi:schemaLocation="
	            http://www.springframework.org/schema/beans  http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
				http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd  
				http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm-3.0.xsd
				http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
				http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">
	<!-- 激活Spring注解方式:自动扫描,并注入bean -->
	<context:component-scan base-package="com.cmcc.aoi.selfhelp.action" /> 
	<context:component-scan base-package="com.cmcc.aoi.selfhelp.wuxiancity.action" />

	
	<!-- 配置视图解析 -->
    <bean
		class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/WEB-INF/jsp/" />
		<property name="suffix" value=".jsp" />
	</bean>
	 <!-- 默认的注解映射的支持 -->
	<mvc:annotation-driven/>
	
	
	
	
	<bean id="authInterceptor" class="com.cmcc.aoi.selfhelp.interceptor.AuthInterceptor" /> 
	<bean
		class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping">
		<property name="interceptors"> 
			<list>
			</list>
		</property>
	</bean> 
	
	<mvc:interceptors>
		<mvc:interceptor>
			<mvc:mapping path="/selfhelp/**" />
			<bean class="com.aoi.selfhelp.interceptor.AoiLoginAuthInterceptor" >
				<property name="excludeUrls">
					<list> 
					    <value>/selfhelp/sysUser/create</value>
						<value>/selfhelp/sysUser/checkLoginName</value>
						<value>/selfhelp/sysUser/checkEmail</value>
						<value>/selfhelp/sysUser/save</value>
						<value>/selfhelp/email/sendActivationEmail</value>
						<value>/selfhelp/email/sendRetrievePasswordEmail</value>
						<value>/selfhelp/activation/prepareActivation</value>
						<value>/selfhelp/activation/activate</value>
						<value>/selfhelp/retrievePassword/retrievePassword</value>
						<value>/selfhelp/retrievePassword/sendEmail</value>
						<value>/selfhelp/retrievePassword/rePassword</value> 
						<value>/selfhelp/tag/report</value>
					</list>
				</property>
			</bean>
		</mvc:interceptor>
		<!-- 
		<mvc:interceptor>
			<mvc:mapping path="/selfhelp/deliverWebRequest/**" />
			<bean class="com.aoi.selfhelp.interceptor.AoiAuthInterceptor" />
		</mvc:interceptor>
		<mvc:interceptor>
			<mvc:mapping path="/selfhelp/multiple/**" />
			<bean class="com.aoi.selfhelp.interceptor.AoiAuthInterceptor" />
		</mvc:interceptor>
		 -->
	</mvc:interceptors>

	<bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"> 
		<property name="exceptionMappings">
			<props>
				<prop key="com.aoi.selfhelp.exception.AuthException">redirect:/user/login.action</prop>
				<prop key="com.aoi.selfhelp.exception.SelfHelpException">redirect:/user/staticPageAction.action?action=error</prop>
			</props>
		</property>
		<property name="defaultErrorView" value="../../common/error"></property>
	</bean>
	 
	
</beans>

 

 

package com.aoi.selfhelp.interceptor;

import java.util.List;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.servlet.ServletContext;

import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;

import com.aoi.selfhelp.entity.SysUser;

public class AoiLoginAuthInterceptor implements HandlerInterceptor
{
	private List<String> excludeUrls;

	public List<String> getExcludeUrls()
	{
		return excludeUrls;
	}

	public void setExcludeUrls(List<String> excludeUrls)
	{
		this.excludeUrls = excludeUrls;
	}

	@Override
	public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object arg2) throws Exception
	{
		String requestUri = request.getRequestURI();
		String contextPath = request.getContextPath();
		String url = requestUri.substring(contextPath.length());

		if (excludeUrls != null && excludeUrls.contains(url))
		{
			return true;
		}
		else if (request.getSession().getAttribute("user") == null)
		{
			response.sendRedirect("/user/login.action");
			return false;
		}
		// System.out.println("preHandle " + arg2);
		return true;
	}

	@Override
	public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object arg2, Exception arg3)
			throws Exception
	{
		// System.out.println("afterCompletion " + arg2);
	}

	@Override
	public void postHandle(HttpServletRequest request, HttpServletResponse response, Object arg2, ModelAndView arg3)
			throws Exception
	{
		// System.out.println("postHandle " + arg2);
	}
}

 

 

 

 

 

 

 

 

 

 

 

 

 

 

捐助开发者

在兴趣的驱动下,写一个免费的东西,有欣喜,也还有汗水,希望你喜欢我的作品,同时也能支持一下。 当然,有钱捧个钱场(右上角的爱心标志,支持支付宝和PayPal捐助),没钱捧个人场,谢谢各位。



 
 
 谢谢您的赞助,我会做的更好!

 

 

目录
相关文章
|
1月前
|
Java API Spring
springboot学习七:Spring Boot2.x 拦截器基础入门&实战项目场景实现
这篇文章是关于Spring Boot 2.x中拦截器的入门教程和实战项目场景实现的详细指南。
28 0
springboot学习七:Spring Boot2.x 拦截器基础入门&实战项目场景实现
|
3月前
|
前端开发 JavaScript Java
Spring Boot中使用拦截器
本节主要介绍了 Spring Boot 中拦截器的使用,从拦截器的创建、配置,到拦截器对静态资源的影响,都做了详细的分析。Spring Boot 2.0 之后拦截器的配置支持两种方式,可以根据实际情况选择不同的配置方式。最后结合实际中的使用,举了两个常用的场景,希望读者能够认真消化,掌握拦截器的使用。
|
4月前
|
监控 前端开发 Java
Spring Boot中的拦截器配置
Spring Boot中的拦截器配置
|
5月前
|
监控 前端开发 Java
Spring Boot中的拦截器配置
Spring Boot中的拦截器配置
|
6月前
|
前端开发 Java 程序员
Spring Boot统一功能处理(拦截器, 统一数据返回格式, 统一异常处理)
Spring Boot统一功能处理(拦截器, 统一数据返回格式, 统一异常处理)
110 1
|
5月前
|
前端开发 JavaScript Java
【Spring Boot】 深入理解Spring Boot拦截器:自定义设计与实现全攻略
【Spring Boot】 深入理解Spring Boot拦截器:自定义设计与实现全攻略
90 0
|
6月前
|
前端开发 Java Spring
[AIGC] Spring Interceptor 拦截器详解
[AIGC] Spring Interceptor 拦截器详解
|
6月前
|
前端开发 Java 数据安全/隐私保护
Spring Boot使用拦截器:概念与实战
【4月更文挑战第29天】拦截器(Interceptors)在Spring Boot应用中常用于在请求处理的前后执行特定的代码,如日志记录、认证校验、权限控制等。本篇博客将详细介绍Spring Boot中拦截器的概念及其实战应用,帮助开发者理解和利用拦截器来增强应用的功能。
103 0
|
6月前
|
缓存 前端开发 Java
【Spring底层原理高级进阶】轻松掌握 Spring MVC 的拦截器机制:深入理解 HandlerInterceptor 接口和其实现类的用法
【Spring底层原理高级进阶】轻松掌握 Spring MVC 的拦截器机制:深入理解 HandlerInterceptor 接口和其实现类的用法
|
6月前
spring-state-machine拦截器
spring-state-machine拦截器
50 0
下一篇
无影云桌面