yuanhao 2 年之前
父节点
当前提交
3a3ee6aae8

+ 26 - 0
in-cloud/src/main/java/com/jiayue/insu/incloud/config/SaTokenConfigure.java

@@ -0,0 +1,26 @@
+package com.jiayue.insu.incloud.config;
+
+import cn.dev33.satoken.interceptor.SaAnnotationInterceptor;
+import cn.dev33.satoken.interceptor.SaRouteInterceptor;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.web.servlet.config.annotation.EnableWebMvc;
+import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
+import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
+
+@Configuration
+@EnableWebMvc
+public class SaTokenConfigure implements WebMvcConfigurer {
+    // 注册Sa-Token的注解拦截器,打开注解式鉴权功能
+    @Override
+    public void addInterceptors(InterceptorRegistry registry) {
+        // 注册注解拦截器,并排除不需要注解鉴权的接口地址 (与登录拦截器无关)
+        registry.addInterceptor(new SaAnnotationInterceptor()).addPathPatterns("/**");
+
+        // 注册Sa-Token的路由拦截器
+        registry.addInterceptor(new SaRouteInterceptor())
+                .addPathPatterns("/**")
+                .excludePathPatterns("/login/doLogin");
+    }
+
+
+}

+ 162 - 0
in-cloud/src/main/java/com/jiayue/insu/incloud/exception/AjaxJson.java

@@ -0,0 +1,162 @@
+package com.jiayue.insu.incloud.exception;
+
+import java.io.Serializable;
+import java.util.List;
+
+
+/**
+ * ajax请求返回Json格式数据的封装
+ */
+public class AjaxJson implements Serializable{
+
+    private static final long serialVersionUID = 1L;	// 序列化版本号
+
+    public static final int CODE_SUCCESS = 200;			// 成功状态码
+    public static final int CODE_ERROR = 500;			// 错误状态码
+    public static final int CODE_WARNING = 501;			// 警告状态码
+    public static final int CODE_NOT_JUR = 403;			// 无权限状态码
+    public static final int CODE_NOT_LOGIN = 401;		// 未登录状态码
+    public static final int CODE_INVALID_REQUEST = 400;	// 无效请求状态码
+
+    public int code; 	// 状态码
+    public String msg; 	// 描述信息
+    public Object data; // 携带对象
+    public Long dataCount;	// 数据总数,用于分页
+
+    /**
+     * 返回code
+     * @return
+     */
+    public int getCode() {
+        return this.code;
+    }
+
+    /**
+     * 给msg赋值,连缀风格
+     */
+    public AjaxJson setMsg(String msg) {
+        this.msg = msg;
+        return this;
+    }
+    public String getMsg() {
+        return this.msg;
+    }
+
+    /**
+     * 给data赋值,连缀风格
+     */
+    public AjaxJson setData(Object data) {
+        this.data = data;
+        return this;
+    }
+
+    /**
+     * 将data还原为指定类型并返回
+     */
+    @SuppressWarnings("unchecked")
+    public <T> T getData(Class<T> cs) {
+        return (T) data;
+    }
+
+    // ============================  构建  ==================================
+
+    public AjaxJson(int code, String msg, Object data, Long dataCount) {
+        this.code = code;
+        this.msg = msg;
+        this.data = data;
+        this.dataCount = dataCount;
+    }
+
+    // 返回成功
+    public static AjaxJson getSuccess() {
+        return new AjaxJson(CODE_SUCCESS, "ok", null, null);
+    }
+    public static AjaxJson getSuccess(String msg) {
+        return new AjaxJson(CODE_SUCCESS, msg, null, null);
+    }
+    public static AjaxJson getSuccess(String msg, Object data) {
+        return new AjaxJson(CODE_SUCCESS, msg, data, null);
+    }
+    public static AjaxJson getSuccessData(Object data) {
+        return new AjaxJson(CODE_SUCCESS, "ok", data, null);
+    }
+    public static AjaxJson getSuccessArray(Object... data) {
+        return new AjaxJson(CODE_SUCCESS, "ok", data, null);
+    }
+
+    // 返回失败
+    public static AjaxJson getError() {
+        return new AjaxJson(CODE_ERROR, "error", null, null);
+    }
+    public static AjaxJson getError(String msg) {
+        return new AjaxJson(CODE_ERROR, msg, null, null);
+    }
+
+    // 返回警告
+    public static AjaxJson getWarning() {
+        return new AjaxJson(CODE_ERROR, "warning", null, null);
+    }
+    public static AjaxJson getWarning(String msg) {
+        return new AjaxJson(CODE_WARNING, msg, null, null);
+    }
+
+    // 返回未登录
+    public static AjaxJson getNotLogin() {
+        return new AjaxJson(CODE_NOT_LOGIN, "未登录,请登录后再次访问", null, null);
+    }
+
+    // 返回没有权限的
+    public static AjaxJson getNotJur(String msg) {
+        return new AjaxJson(CODE_NOT_JUR, msg, null, null);
+    }
+
+    // 返回一个自定义状态码的
+    public static AjaxJson get(int code, String msg){
+        return new AjaxJson(code, msg, null, null);
+    }
+
+    // 返回分页和数据的
+    public static AjaxJson getPageData(Long dataCount, Object data){
+        return new AjaxJson(CODE_SUCCESS, "ok", data, dataCount);
+    }
+
+    // 返回,根据受影响行数的(大于0=ok,小于0=error)
+    public static AjaxJson getByLine(int line){
+        if(line > 0){
+            return getSuccess("ok", line);
+        }
+        return getError("error").setData(line);
+    }
+
+    // 返回,根据布尔值来确定最终结果的  (true=ok,false=error)
+    public static AjaxJson getByBoolean(boolean b){
+        return b ? getSuccess("ok") : getError("error");
+    }
+
+    /* (non-Javadoc)
+     * @see java.lang.Object#toString()
+     */
+    @SuppressWarnings("rawtypes")
+    @Override
+    public String toString() {
+        String data_string = null;
+        if(data == null){
+
+        } else if(data instanceof List){
+            data_string = "List(length=" + ((List)data).size() + ")";
+        } else {
+            data_string = data.toString();
+        }
+        return "{"
+                + "\"code\": " + this.getCode()
+                + ", \"msg\": \"" + this.getMsg() + "\""
+                + ", \"data\": " + data_string
+                + ", \"dataCount\": " + dataCount
+                + "}";
+    }
+
+
+
+
+
+}

+ 59 - 0
in-cloud/src/main/java/com/jiayue/insu/incloud/exception/GlobalException.java

@@ -0,0 +1,59 @@
+package com.jiayue.insu.incloud.exception;
+
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+import org.springframework.web.bind.annotation.ControllerAdvice;
+import org.springframework.web.bind.annotation.ExceptionHandler;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+
+
+import cn.dev33.satoken.exception.DisableLoginException;
+import cn.dev33.satoken.exception.NotLoginException;
+import cn.dev33.satoken.exception.NotPermissionException;
+import cn.dev33.satoken.exception.NotRoleException;
+
+/**
+ * 全局异常处理
+ */
+@ControllerAdvice
+public class GlobalException {
+
+    // 全局异常拦截(拦截项目中的所有异常)
+    @ResponseBody
+    @ExceptionHandler
+    public AjaxJson handlerException(Exception e, HttpServletRequest request, HttpServletResponse response)
+            throws Exception {
+
+        // 打印堆栈,以供调试
+        System.out.println("全局异常---------------");
+        e.printStackTrace();
+
+        // 不同异常返回不同状态码
+        AjaxJson aj = null;
+        if (e instanceof NotLoginException) {	// 如果是未登录异常
+            NotLoginException ee = (NotLoginException) e;
+            aj = AjaxJson.getNotLogin().setMsg(ee.getMessage());
+        }
+        else if(e instanceof NotRoleException) {		// 如果是角色异常
+            NotRoleException ee = (NotRoleException) e;
+            aj = AjaxJson.getNotJur("无此角色:" + ee.getRole());
+        }
+        else if(e instanceof NotPermissionException) {	// 如果是权限异常
+            NotPermissionException ee = (NotPermissionException) e;
+            aj = AjaxJson.getNotJur("无此权限:" + ee.getPermission());
+        }
+        else if(e instanceof DisableLoginException) {	// 如果是被封禁异常
+            DisableLoginException ee = (DisableLoginException) e;
+            aj = AjaxJson.getNotJur("账号被封禁:" + ee.getDisableTime() + "秒后解封");
+        }
+        else {	// 普通异常, 输出:500 + 异常信息
+            aj = AjaxJson.getError(e.getMessage());
+        }
+
+        // 返回给前端
+        return aj;
+    }
+
+}

+ 6 - 0
in-cloud/src/main/java/com/jiayue/insu/incloud/permisson/Login.java

@@ -34,6 +34,12 @@ public class Login {
 
     }
 
+    // 查询登录状态,浏览器访问: http://localhost:8081/user/isLogin
+    @GetMapping("/getLoginId")
+    public R getLoginId() {
+        return R.ok( StpUtil.getLoginId());
+
+    }
 
 
 }