@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers(HttpMethod.GET,"/topicos").permitAll()
.antMatchers(HttpMethod.GET,"/topicos/*").permitAll()
.anyRequest().authenticated()
.and().formLogin();
}Se quiser redirecionar para um form de uma pagina e não usar o form do spring como faria isso ?