I was trying to find a way to change the default welcome-page for a spring-boot application that is being deployed as a war in production but I can\'t find a way to do it wi
Following Michael's tutorial, I was able to just map / to my index.gsp file.
/
index.gsp
@Controller class Routes { @RequestMapping({ "/", "/bikes", "/milages", "/gallery", "/tracks", "/tracks/{id:\\w+}", "/location", "/about" }) public String index() { return "forward:/index.gsp"; } }