我嘗試運行我簡單的「hello world」Spring Boot web應用程序,但它不工作,我總是得到「白標籤錯誤頁面」。簡單的春季啓動webapp不工作,whitelabel錯誤頁面
我的控制器
package com.packt.webapp.controller;
@Controller
@RequestMapping("/")
public class HomeController {
public String home(Model model){
String welcome = new String("Witam");
model.addAttribute("welcome", welcome);
return "home";
}
}
Application.java
package com.packt.webapp.controller;
@Configuration
@EnableAutoConfiguration
@ComponentScan
public class Application {
public static void main(String[] args) throws Exception {
SpringApplication.run(Application.class, args);
}
}
home.html的
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Test</title>
<link rel="stylesheet" th:href="@{/css/style.css}" />
</head>
<body>
<h1>Hello</h1>
<span th:text="'Message: ' + ${welcome}"></span>
</body>
</html>
的pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.packt.webapp</groupId>
<artifactId>basket</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.1.4.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
我在做什麼錯?我試圖改變我的項目結構,玩弄依賴關係,沒有任何幫助。有人可以啓發我嗎?
其中是您的html模板位於您的項目結構?此外,你訪問什麼網址給你的錯誤頁面? – Gregg
你的主類在哪裏=>應用程序?主要的spring引導類只掃描並行類和內部包註釋類(默認行爲),而不描述路徑,以及您的html模板應放置在資源文件夾中的位置。也請發佈你的application.properties文件 –
@Gregg html在'src/main/resources/templates /'中,我嘗試'localhost:8080/basket' – crooked