springboot项目启动成功,页面Whitelabel Error Page
时间: 2023-11-19 15:06:39 浏览: 162
自定义WhiteLabel错误页面-gcode激光振镜
要解决页面显示"Whitelabel Error Page"的问题,您需要按照以下步骤进行操作:
1. 首先,请确保您的pom.xml文件中已正确引入了Spring Boot Thymeleaf依赖,如下所示:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
```
2. 然后,您需要在application.properties文件中添加以下配置:
```properties
spring.web.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,classpath:/templates/
spring.thymeleaf.cache=false
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.encoding=utf-8
```
这些配置将指定Thymeleaf模板的位置和相关属性。
完成以上步骤后,重新启动您的Spring Boot项目,应该可以看到您的自定义页面而不是"Whitelabel Error Page"。
请注意,如果您没有创建自定义错误处理器或映射错误页面,Spring Boot会显示默认的"Whitelabel Error Page"。如果您想要自定义错误页面,可以创建一个`ErrorController`类并在其中处理错误,并将错误页面放置在指定的位置。
阅读全文