I wanted to know how I @RequestMapping
to a large URL. In case I wanted to map the word authenticate.
http://localhost:8080/DataIdea/autenticar?email=0fS3w9wOg6WkJB%2BBdvEmlKxQxYOhF8nqt2lPx801R5M%3D
I'm trying to use the code below, but it's not right
@RequestMapping("autenticar")
public String confirmacao() {
System.out.println(" autenticado" );
return "usuarios/confirmacao";
}