spring AOP 注解实现登录权限拦截

强烈推荐

分享一个大神的人工智能教程。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到人工智能的队伍中来!http://www.captainbed.net

使用spring AOP实现登录的权限拦截,项目使用Maven进行依赖管理,spring+springMVC+Mybatis框架进行项目的开发。现在主要使用的是Spring的AOP切面编程使用环绕通知进行对方法的监听来实现用户是否登录和权限的管理。

本次使用的AOP注解来实现的

1.springAOP依赖的jar包(spring的AOP jar包是必须的):

        
		    aopalliance
		    aopalliance
		    1.0
		 
		
		    org.aspectj
		    aspectjrt
		    1.7.4
		
		
		    org.aspectj
		    aspectjweaver
		    1.7.4
		

2.需要在springMVC.xml中加入AOP注解的配置


		  
package com.cn.winter.utils;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;

import com.cn.winter.pojo.User;

/**
 * 权限拦截AOP
 * @author Administrator
 *
 */
@Component
@Aspect
public class BeanHelper {

	private final Logger log = LoggerFactory.getLogger(BeanHelper.class);
	
	@Pointcut("within(com.cn.winter.controller..*) && !within(com.cn.winter.controller.login.LoginController)")
	public void pointCut(){}
	
	@Around("pointCut()")
	public Object trackInfo(ProceedingJoinPoint pjp) throws Throwable {
		User user = (User) SysContent.getSession().getAttribute("userInfo");
		String userRole = (String) SysContent.getSession().getAttribute("userRole");
		if(user == null || userRole == null) {
			log.info("-------------没有登录-------------");
			return "redirect:/login";
		}
		return pjp.proceed();
	}
	
	
}

这样就可以是用切面对controller的方法进行拦截并跳转。

你可能感兴趣的:(SpringMVC,Spring,aop,权限管理)