自定义拦截器的步骤

自定义拦截器

		1). 具体步骤

			I. 定义一个拦截器的类
				有两种方式:
					方式一: 可以实现 Interceptor 接口
					方式二: 继承 AbstractInterceptor 抽象类

			II. 在 struts.xml 文件配置.	

				
			
					
		
				
	
				
					
					
					/success.jsp
					/token-error.jsp
				
	
			III. 注意: 在自定义的拦截器中可以选择不调用 ActionInvocation 的 invoke() 方法. 那么后续的拦截器和 Action 方法将不会被调用.
		Struts 会渲染自定义拦截器 intercept 方法返回值对应的 result


你可能感兴趣的:(Struts2)