I try to load the index.html using Spring. But when I load it in localhost instead of getting my HTML page I just get a string that says index.
I try to load the index with the IndexController
@Controller
public class IndexController {
@RequestMapping("/")
@ResponseBody
public String welcome() {
return "index";
}
}