Я хотел бы сделать «пользователей» с ролью «Администратор» доступными для конечной точки «/ admin / **», к сожалению, в настоящее время никто не имеет доступа к этому API. Что я делаю не так
@Configuration
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/api/login/").permitAll()
.antMatchers("/api/books/*").authenticated()
.antMatchers("/api/admin/**").hasAuthority("Administrator")
.and()
.addFilter(new JwtFilter(authenticationManager()))
.csrf().disable();
}
}