springboot项目浏览器报错:Whitelabel Error Page --There was an unexpected error (type=Not Found, status=404)

左心房为你撑大大i 提交于 2019-12-02 15:39:28

页面访问http://localhost:8080/hello

 

 

 

1.检查url是否正确

下面的是 :http://localhost:8080/hello

 

 

 

 

下面的是 : http://localhost:8080/111/hello

 

 

上面的路径对我没用,检查pom.xml ,添加thymeleaf依赖 成功访问。

 

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!