Spring Boot: IndexController not needed
I added an IndexController.java file @Controller public class IndexController { @RequestMapping(“/”) public String index(){ return “index”; } } Because I thought I needed to map the web root path (“/”) to the index template. A common convention used in Spring […]