SSH-Struts2简单的自定义拦截器MethodFilterInterceptor

简介:


SSH-Struts2简单的自定义拦截器MethodFilterInterceptor

 

   最近业余时间工作之余也在学习SSH相关的知识,今天刚刚尝试写了一个基础的Struts2拦截器通过继承MethodFilterInterceptor方法。


   一、什么是拦截器


拦截器是动态拦截Action调用的对象。它提供了一种机制可以使开发者可以定义在一个action执行的前后执行的代码,也可以在一个action执行前阻止其执行,同时也提供了一种可以提取action中可重用部分的方式。


二、本文的实现


1、定义一个拦截器

import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.interceptor.MethodFilterInterceptor;

/**
 *权限校验的拦截器
 * @author CodyLee
 *
 */
public class PrivilegeInterceptor extends MethodFilterInterceptor{
	@Override
	//执行拦截的方法
	protected String doIntercept(ActionInvocation actionInvocation) throws Exception{
		//判断是否登陆,如果登陆,放行;如果没有登陆,跳转到登陆页面
		AdminUser adminUser = (AdminUser)ServletActionContext.getRequest().getSession().getAttribute("existAdminUser");
		if(adminUser != null){
			//已经登陆过
			return actionInvocation.invoke();
		}else{
			//跳转到登陆页面
			ActionSupport support = (ActionSupport)actionInvocation.getAction();
			support.addActionError("您还没有登陆!没有权限访问!");
			return ActionSupport.LOGIN;
		}
	} 
}

2、配置自定义拦截器

<!-- 配置自定义拦截器 -->
<interceptors>
		<interceptor name="privilegeInterceptor" class="cn.itcast.shop.interceptor.PrivilegeInterceptor"/>			
</interceptors>

   3Action中添加拦截器

<action name="adminCategory_*" class="adminCategoryAction" method="{1}">
			<result name="findAll">/admin/category/list.jsp</result>
			<interceptor-ref name="privilegeInterceptor"/>
			<interceptor-ref name="defaultStack"/> 
</action>


三、注意事项


Struts2中拦截器的接口是Interceptor而其实现类AbstractInterceptorInterceptor的实现类,接口中的一般方法都实现了;本文中所用到的MethodFilterInterceptor又继承了AbstractInterceptor



目录
相关文章
|
网络安全
【ssh】Struts2自定义拦截器
【ssh】Struts2自定义拦截器
64 0
|
7月前
|
安全 Linux Shell
Linux中SSH命令介绍
Linux中SSH命令介绍
172 2
|
2月前
|
监控 Ubuntu Linux
使用VSCode通过SSH远程登录阿里云Linux服务器异常崩溃
通过 VSCode 的 Remote - SSH 插件远程连接阿里云 Ubuntu 22 服务器时,会因高 CPU 使用率导致连接断开。经排查发现,VSCode 连接根目录 ".." 时会频繁调用"rg"(ripgrep)进行文件搜索,导致 CPU 负载过高。解决方法是将连接目录改为"root"(或其他具体的路径),避免不必要的文件检索,从而恢复正常连接。
|
5月前
|
监控 安全 Ubuntu
在Linux中,如何进行SSH服务配置?
在Linux中,如何进行SSH服务配置?
|
5月前
|
安全 Linux 网络安全
在Linux中,如何配置SSH以确保远程连接的安全?
在Linux中,如何配置SSH以确保远程连接的安全?
|
5月前
|
安全 Linux Shell
SSH 命令完整实用指南 | Linux SSH 服务
【8月更文挑战第20天】
566 0
|
5月前
|
安全 Linux Shell
如何在 Linux 服务器上配置基于 SSH 密钥的身份验证
如何在 Linux 服务器上配置基于 SSH 密钥的身份验证
333 0
|
5月前
|
Linux 网络安全 数据安全/隐私保护
Linux——配置SSH免密登录
Linux——配置SSH免密登录
117 0
|
7月前
|
Shell Linux 网络安全
Linux怎样在使用ssh 链接时就指定gcc 的版本
Linux怎样在使用ssh 链接时就指定gcc 的版本
68 7

热门文章

最新文章