Configurei para liberar além do get, o post e o delete so para testar e mesmo configurando para liberar, só liberou o get, o post e o delete continuam dando forbiden.
Já mudei o q ue está entre aspas para todas as opções imagináveis e também ja testei deixando só o (HttpMethod.DELETE).permitAll() e também não funcionou, alguma ideia do que possa ser ?
protected void configure(HttpSecurity http) throws Exception {
http.authorizeHttpRequests()
.antMatchers(HttpMethod.GET, "/videos/*").permitAll()
.antMatchers(HttpMethod.DELETE, "/videos/delete/*").permitAll()
.antMatchers(HttpMethod.POST, "/videos/cadastrar").permitAll()
.anyRequest().authenticated();
}