Estou tentando rodar o exercício mas aparece o seguinte erro:
Error resolving template "index", template might not exist or might not be accessible by any of the configured Template Resolvers
Classe Configuração:
package br.com.alura.listavip;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Controller;
@SpringBootApplication
@Controller
public class Configuracao {
public static void main(String[] args) {
SpringApplication.run(Configuracao.class, args);
}
}
Classe ConvidadeController
@Controller
public class ConvidadeController {
@RequestMapping("/")
public String index(){
return "index";
}
}
Alguém pode mim ajudar?