I get the error:
org.thymeleaf.exceptions.TemplateInputException: Error resolving template [index], template might not exist or might not be accessible by any of the configured Template Resolvers
This project contains only an IndexController and the index.html which is located resources/templates/index.html
Here's an image of the resource folder structure:
This is the method within the controller:
@RequestMapping(value = {"/", "/home", "/index"})
public String index(){
return "index";
}