I want to handle all the address which I didn't make a specific function for.
For example,
@GetMapping({"/"}) // handles "/"
public String main(Model model) {
return "homepage";
}
@GetMapping({"/admin"}) // handles "/admin"
public String main(Model model) {
return "admin";
}
How can I handle all the other address, such as "/asdf" etc and send them all to a specific page?