Я изучаю Spring Framework.Я добавил home.html
в resources/templates/home.html
.Но это не видно, когда я посещаю http://localhost:8080. У меня есть следующая структура:
taco-cloud \ src \ main \ java \ tacos \ TacoCloudApplication.java
package tacos;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class TacoCloudApplication {
public static void main(String[] args) {
SpringApplication.run(TacoCloudApplication.class, args);
}
}
taco-cloud \ src \ main \ java \ tacos \ HomeController.java
package tacos;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class HomeController
{
@GetMapping("/")
public String home()
{
return "home.html";
}
}
taco-cloud \ src \ main \ resources \ static\ home.html
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head>
<title>Taco Cloud</title>
</head>
<body>
<h1>Welcome to...</h1>
<img th:src="@{/images/TacoCloud.png}"/>
</body>
</html>
Вывод
Страница ошибки белого цвета
localhost: 8080 / home.html show home.html