美文网首页
Springboot AOP实现身份验证

Springboot AOP实现身份验证

作者: 水调歌头_eb1d | 来源:发表于2019-08-26 02:29 被阅读0次

    我们希望每个用户访问的url都进行一个用户信息的验证,所以适应AOP这中方式 ,拦截与用户相关的所有url,SellerUserController 里面的登陆登出进行排除 ,下面判断完cookie,不直接跳转,选择拋异常是为了以后的异常统一处理 ,projectUrlConfig是一个配置类    http://****.**.**,拼接起来就是一条绝对路径 ,


    ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();

    HttpServletRequest request = attributes.getRequest();  

    //获取到request,就直接可以拿到Cookie

    SellExceptionHandler异常的捕获 Redis 常量

    相关文章

      网友评论

          本文标题:Springboot AOP实现身份验证

          本文链接:https://www.haomeiwen.com/subject/wbutectx.html