jwt令牌抛出401未经授权的spring引导

pod7payv  于 2021-06-29  发布在  Java
关注(0)|答案(0)|浏览(164)

我的项目使用jwt令牌,它使用java11和speingboot。当我使用jwt令牌并尝试登录时,它抛出401未经授权的错误。不打我的api调用。我在我的代码配置文件中使用以下行

.antMatchers(HttpMethod.GET,"url").hasAuthority("devices:read")
      .antMatchers(HttpMethod.POST, "url").hasAuthority("devices:create")
      .antMatchers(HttpMethod.POST, "url").hasAuthority("devices:write")
      .antMatchers(HttpMethod.PUT, "url").hasAuthority("devices:write")
      .antMatchers("/h2-console/**").permitAll()
      .anyRequest().authenticated();

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题