Estou tendo o seguinte erro: This application has no explicit mapping for /error, so you are seeing this as a fallback
na página.
Minha Controller: @Controller
public class TestController {
@GetMapping("/welcome.html")
public String show() {
return "Welcome to Mudi!";
}
}
Minha application: @SpringBootApplication
public class MudiApplication {
public static void main(String[] args) {
SpringApplication.run(MudiApplication.class, args);
}
}
E por fim, meu html: