我的项目使用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();
暂无答案!
目前还没有任何答案,快来回答吧!