Minha classe controller:
@Controller
public class HelloController {
@GetMapping("/hello")
public String hello(Model model) {
model.addAttribute("nome", "Mundo");
return "hello";
}
}
Meu arquivo html esta como hello.html também, idêntico ao cod da aula, o springBoot diz que iniciou na porta 8080 mas ao acessar ele aparece o 404 "This application has no explicit mapping for /error, so you are seeing this as a fallback."