After redirecting url is http://localhost:8080/signup, but there is Whitelabel Error Page with this message
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Wed Jan 11 22:20:52 PST 2017 There was an unexpected error (type=Not Found, status=404). No message available
@Controller
public class SignUp {
@RequestMapping(value="/")
public String goMainPage(){
return "redirect:/signup";
}
}