我正在用thymeleaf设置spring boot项目,但是我的视图没有显示,并且在浏览器中出现以下错误。
Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. Fri May 24 00:44:22 GST 2019 There was an unexpected error (type=Not Found, status=404). No message available
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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>demo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>demo</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
控制器:
@Controller
public class MainController {
@GetMapping("/")
public String homePage() {
return "home";
}
}
application.properties:
spring.thymeleaf.cache=false
spring.thymeleaf.enabled=true
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.application.name=Bootstrap Spring Boot
我在html文件中添加了百里香叶功能,但是当它不起作用时,我只是将其简化为html文件。我的home.html是:
<html>
<head>
<title>Home Page</title>
</head>
<body>
<h1>Hello !</h1>
<p>
Welcome to Our App</span>
</p>
</body>
</html>
这是一个非常简单且基本的控制器。我在控制台中没有看到任何异常堆栈跟踪。
答案 0 :(得分:0)
看到此错误时,可能有很多原因,请尝试以下操作:
例如:
com
+- APP
+- MainApplication.java <--- your main class should be here, above your other classes
|
+- model
| +- model.java
+- controller
+- Controller.java
默认情况下,Spring Boot从名为的目录中提供静态内容
/static (or /public or /resources or /META-INF/resources)
在 classpath或从ServletContext的根开始。在默认情况下使用这些模板引擎之一时 配置,您的模板会自动从
src/main/resources/templates
。
自从您在application.yml
中提供了thymeleaf配置之后,就可以将thymeleaf模板放在资源文件夹的/templates
文件夹中,并且spring应该可以使用它。
答案 1 :(得分:0)
经过几天的努力,我通过将Spring Boot版本从2.1.5降级到
解决了这个问题。 <version>2.0.6.RELEASE</version>
答案 2 :(得分:0)
我有一个类似的问题。我通过将home.html页面重命名为index.html来解决了它,而spring似乎可以自动解决它。就像魔术一样