java checkpermission_Java Subject.checkPermission方法代码示例

import org.apache.shiro.subject.Subject; //导入方法依赖的package包/类

/**

* 前置通知 用于拦截Controller层是否有某种权限操作

* @param joinPoint 切点

* @throws InterruptedException

* @throws IOException

*/

/*

@Before("controllerAspect()")

public void doBefore(JoinPoint joinPoint) throws InterruptedException, IOException{

//读取session中的用户

HttpSession session = request.getSession();

User user = (User) session.getAttribute("userInfo");

if(user != null){

String permissionInfo = getControllerMethodPemissionInfo(joinPoint);

Subject currentUser = SecurityUtils.getSubject();

try{

currentUser.checkPermission(permissionInfo);

}catch (Exception e) {

System.out.println("没有"+permissionInfo+"权限");

//throw new UnauthorizedException(permissionInfo);

}

}

}*/

@Around("controllerAspect()")

public Object doAround(ProceedingJoinPoint pjp) throws Throwable{

String permissionInfo = getControllerMethodPemissionInfo(pjp);

Subject currentUser = SecurityUtils.getSubject();

try{

if(currentUser!=null){

currentUser.checkPermission(permissionInfo);

SystemContext.setAuthStatus(3);//-- 享有授权

}

}catch (Exception e) {

System.out.println("没有"+permissionInfo+"权限");

SystemContext.setAuthStatus(2);//-- 无授权

return "{message:unauthorized}";//-- 这种写法相当于给MV.setViewName(); 如何写成"redirect:/exception/unauthorized"相当于调用Controller

}

return pjp.proceed();

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值