2017-03-17 63 views
0

我嘗試運行我簡單的「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> 

我在做什麼錯?我試圖改變我的項目結構,玩弄依賴關係,沒有任何幫助。有人可以啓發我嗎?

+0

其中是您的html模板位於您的項目結構?此外,你訪問什麼網址給你的錯誤頁面? – Gregg

+0

你的主類在哪裏=>應用程序?主要的spring引導類只掃描並行類和內部包註釋類(默認行爲),而不描述路徑,以及您的html模板應放置在資源文件夾中的位置。也請發佈你的application.properties文件 –

+0

@Gregg html在'src/main/resources/templates /'中,我嘗試'localhost:8080/basket' – crooked

回答

0

你的家()方法是最有可能不被彈簧註冊,因爲沒有@方法之上的RequestMapping()。

如果您想要將家註冊到/,您有兩種選擇。您可以將當前處於類級別的家用方法,像這樣@RequestMapping ...

@Controller 
public class HomeController { 
    @RequestMapping("/") 
    public String home(Model model){ 
     String welcome = new String("Witam"); 
     model.addAttribute("welcome", welcome); 
     return "home"; 
    } 
} 

或者你可以添加上面的家()方法的另外註解,讓它空。

@Controller 
@RequestMapping("/") 
public class HomeController { 
    @RequestMapping() 
    public String home(Model model){ 
     String welcome = new String("Witam"); 
     model.addAttribute("welcome", welcome); 
     return "home"; 
    } 
} 
-1

根據您的意見,您正在訪問錯誤的網址。既然你已經映射你的控制器/,你只需要1點的方法,你應該訪問它想:

​​

+0

試過。沒有工作:/ – crooked

+0

需要知道你的白標籤錯誤是什麼。 – Gregg

+0

'有一個意外的錯誤(type = Not Found,status = 404).' – crooked