Need help on the basics - I have integrated Angular and Spring Boot. I made production build of the Angular app and copied the 6 files in the Spring boot static resource fo
// the perfect solution(from jhipster) @Controller public class ClientForwardController { @GetMapping(value = "/**/{path:[^\\.]*}") public String forward() { return "forward:/"; } }