Commit 59e00e71 by xueli.xue

文案更新

parent 8fde5bed
package com.xxl.job.admin.controller.interceptor; package com.xxl.job.admin.controller.interceptor;
import javax.servlet.http.HttpServletRequest; import com.xxl.job.admin.controller.annotation.PermessionLimit;
import javax.servlet.http.HttpServletResponse; import com.xxl.job.admin.core.util.CookieUtil;
import org.springframework.web.method.HandlerMethod; import org.springframework.web.method.HandlerMethod;
import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
import com.xxl.job.admin.controller.annotation.PermessionLimit; import javax.servlet.http.HttpServletRequest;
import com.xxl.job.admin.core.util.CookieUtil; import javax.servlet.http.HttpServletResponse;
/** /**
* 权限拦截, 简易版 * 权限拦截, 简易版
...@@ -44,7 +43,7 @@ public class PermissionInterceptor extends HandlerInterceptorAdapter { ...@@ -44,7 +43,7 @@ public class PermissionInterceptor extends HandlerInterceptorAdapter {
HandlerMethod method = (HandlerMethod)handler; HandlerMethod method = (HandlerMethod)handler;
PermessionLimit permission = method.getMethodAnnotation(PermessionLimit.class); PermessionLimit permission = method.getMethodAnnotation(PermessionLimit.class);
if (permission == null || permission.limit()) { if (permission == null || permission.limit()) {
throw new Exception("登陆效"); throw new Exception("登陆效");
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment