2
Wanted to know how I make one @RequestMapping
for 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 not the right
@RequestMapping("autenticar")
public String confirmacao() {
System.out.println(" autenticado" );
return "usuarios/confirmacao";
}