欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Springboot+thymeleaf出现(type=Not Found, status=404)错误

程序员文章站 2022-05-31 21:41:53
...

错误描述

1、使用Idea新建一个springboot项目,运行后出现如下错误:
Springboot+thymeleaf出现(type=Not Found, status=404)错误

解决办法

  • 新建项目时是否添加了thymeleaf矿建,如果未添加,添加如下:
			<dependency>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-starter-thymeleaf</artifactId>
			</dependency>
  • 确认目录结构是否正确,这种目录结构controller和application是错误的
    Springboot+thymeleaf出现(type=Not Found, status=404)错误

目录结构应该是下面这个样子
Springboot+thymeleaf出现(type=Not Found, status=404)错误

  • 个人认为url写错不至于会出现
  • 有些人添加了如下依赖,我认为了,测试了发现没软用,或许解决了ecplise软件中搭建springboot项目的问题
<dependency>
			<groupId>org.apache.tomcat.embed</groupId>
			<artifactId>tomcat-embed-jasper</artifactId>
			<scope>provided</scope>
		</dependency>
相关标签: springboot