Bom dia, estou tentando começar a estudar spring e estou com dificuldade em chamar um template simples através do spring, o código está bem simples mesmo e não entendo porque está dando 404, alguém pode me ajudar por favor? Segue o código:
Controller:
package com.teste.teste;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class testeController {
@GetMapping("/teste")
public String teste() {
return "teste.html";
}
}
Template HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Teste</title>
</head>
<body>
<h1>Teste</h1>
</body>
</html>
Caminho:
Erro: