Your Name
2023-07-03 2b919980a8c70554a64cb3d03cc95679af4d817f
springboot/src/main/java/com/java110/boot/filter/JwtFilter.java
@@ -79,6 +79,7 @@
        } catch (Exception e) {
            //response.sendRedirect("/flow/login");
            logger.error("业务处理失败", e);
            noLogin(request,response);
        }
    }
@@ -117,7 +118,6 @@
        if(StringUtil.isEmpty(token) && !StringUtil.isEmpty(authorization)){
            token = authorization.substring("Bearer ".length());
            System.out.printf(">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>token="+token);
        }
        if (StringUtil.isNullOrNone(token)) {