我的主要应用类:
package com.sopra.springBoot;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application {
public static void main(String[] args){
SpringApplication.run(Application.class, args);
}
}
我的控制器:
package com.sopra.springBoot;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class HomeController {
@RequestMapping("/")
public String viewHome() {
return "welcome";
}
}
我的welcome.html文件:位于 / resources / templates /
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org"
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<body>First Spring Boot application
</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.sopra.springBoot</groupId>
<artifactId>sopra.springBoot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.3.6.RELEASE</version>
<relativePath/>
</parent>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<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>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Package as an executable jar/war -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
我尝试了互联网上的所有内容,但仍无法找到模板文件夹并在浏览器上收到此错误并 Whitelabel错误页面:
2018-01-23 16:08:38.878 WARN 2904 --- [ restartedMain] o.s.b.a.t.ThymeleafAutoConfiguration : Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)
请检查我在哪里做错了。仍然无法显示welcome.html。 关于 ThymeleafAutoconfiguration 的任何想法?
答案 0 :(得分:2)
我知道这是第一个答案之后的三年。但是@xingbin的回答确实对我有很大帮助。
通过mvn clean
和mvn spring-boot:run
运行项目肯定可以正常工作。
但是将上面的代码添加到application.properties的类路径中对我没有用。所以我想通了,我只需要删除
spring.thymeleaf.prefix=classpath*:/templates/
中的星号*
这是我的代码:
spring.thymeleaf.check-template-location=true
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
spring.thymeleaf.cache=false
答案 1 :(得分:1)
您的代码在我的计算机上正常运行。我认为这是因为你的IDE can not resolve your classpath.
IntelliJ IDEA根据您的方式对类路径进行不同的排序 运行你的应用程序通过main在IDE中运行应用程序 方法将导致您运行时的顺序不同 使用Maven或Gradle或其包装的jar应用程序。这个可以 导致Spring Boot无法在类路径中找到模板。如果 你受这个问题的影响,你可以重新排序 IDE首先放置模块的类和资源。或者, 您可以配置模板前缀以搜索每个模板 类路径上的目录:classpath *:/ templates /.
这可以通过
解决将resources文件夹添加到类路径,请参阅this,然后在文件夹资源下创建名为application.properties的文件,在其下面添加config以包含所有类路径:
spring.thymeleaf.prefix=classpath*:/templates/
spring.thymeleaf.check-template-location=true
spring.thymeleaf.suffix=.html
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html
spring.thymeleaf.mode=HTML5
或
mvn clean
和mvn spring-boot:run
。答案 2 :(得分:0)