亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring boot使用攔截器實現訪問權限限制

發布時間:2020-10-27 21:21:00 來源:億速云 閱讀:334 作者:Leah 欄目:開發技術

這篇文章運用簡單易懂的例子給大家介紹Spring boot使用攔截器實現訪問權限限制,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

遇到一個需求是:要為用戶設置不同的菜單、數據訪問權限。對于一些特定類型的數據,有的用戶可以看有的用戶則不可以。一開始沒有太多思路,后來一想是不是可以把"特定類型"這個參數通過@PathVariable注解加到路徑上,這樣就可以通過攔截器攔截后,校驗此用戶是否可以訪問這個路徑(類型)下的數據了。

話不多說,以下為具體實踐

攔截器配置類

@Configuration
public class UserInterceptorConfig {
  //為了保證IDbnetUserService提前實例化,能在userInterceptor使用
  //ConditionalOnMissingBean可以保證只有一個IDbnetUserService的實例
  @Bean
  @ConditionalOnMissingBean(IDbnetUserService.class)
  public IDbnetUserService dbnetUserService() {
    return new DbnetUserServiceImpl();
  }
  //攔截器
  @Bean(name = "userInterceptor")
  public HandlerInterceptor userInterceptor(IDbnetUserService dbnetUserService) {
    return new HandlerInterceptor() {
      @Override
      public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
        //url = request.getRequestURI() 判斷url是否可以有權限訪問而返回true或者false
      }
    };
  }
}

注冊攔截器

//注冊攔截器
  @Bean
  public WebMvcConfigurer registerInterceptor(@Qualifier("userInterceptor") HandlerInterceptor userInterceptor) {
    return new WebMvcConfigurerAdapter() {
      @Override
      public void addInterceptors(InterceptorRegistry registry) {
        //要攔截的路徑
        List<String> path = interceptorProperties.getPath();
        //要排除的路徑
        List<String> excludePath = interceptorProperties.getExcludePath();
        registry.addInterceptor(userInterceptor).addPathPatterns(path.stream().toArray(String[]::new))
            .excludePathPatterns(excludePath.stream().toArray(String[]::new));
      }

    };
  }

配置要攔截的路徑

@Component
@ConfigurationProperties(prefix = "dbnet.interceptor")
public class InterceptorProperties {
  /**
   * 需要攔截的接口通配
   */
  private List<String> path = new ArrayList<>();
  /**
   * 需要忽略的接口通配
   */
  private List<String> excludePath = new ArrayList<>();
  public List<String> getPath() {
    return path;
  }
  public void setPath(List<String> path) {
    this.path = path;
  }
  public List<String> getExcludePath() {
    return excludePath;
  }
  public void setExcludePath(List<String> excludePath) {
    this.excludePath = excludePath;
  }
}
dbnet:
 interceptor:
  path: /dbnet/**,/datanet/**
  excludePath: /dbnet/detail,/datanet/recommend,/datanet/count,/datanet/getKeys,/datenet/metadata/**

關于Spring boot使用攔截器實現訪問權限限制就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新宾| 海盐县| 吉安县| 新安县| 南汇区| 湟源县| 沅陵县| 普陀区| 乌鲁木齐市| 安达市| 西乡县| 苏尼特左旗| 曲阳县| 句容市| 大方县| 深水埗区| 阿拉善右旗| 辽中县| 于都县| 湘乡市| 南江县| 麻江县| 汉寿县| 揭阳市| 老河口市| 阳山县| 望江县| 海盐县| 秦皇岛市| 威宁| 禄丰县| 建阳市| 广宗县| 尼玛县| 宿松县| 黄陵县| 成武县| 台东市| 苏州市| 昌宁县| 新乐市|