⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 authorityinterceptor.java

📁 Spring2.0宝典
💻 JAVA
字号:
package lee;

import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;

/**
 * @author  yeeku.H.lee kongyeeku@163.com
 * @version  1.0
 * <br>Copyright (C), 2005-2008, yeeku.H.Lee
 * <br>This program is protected by copyright laws.
 * <br>Program Name:
 * <br>Date: 
 */
public class AuthorityInterceptor implements MethodInterceptor
{
    private String user;

    public void setUser(String user)
    {
        this.user = user;
    }
 
    public Object invoke(MethodInvocation invocation) throws Throwable
	{
        String methodName = invocation.getMethod().getName();

        if (!user.equals("admin") && !user.equals("registedUser"))
        {
            System.out.println("您无权执行该方法");
            return null;
        }
        else if (user.equals("registedUser") && methodName.equals("modify"))
        {
            System.out.println("您不是管理员,无法修改数据");
            return null;
        }
        else
        {
            return invocation.proceed();
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -