Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback There was an unexpected error (type=Not Found, status=404).
今天创建了一个springboot项目后测试controller跳转页面发现一值报404错误
创建的代码:
错误原因*
- 在springboot中如果使用@Controller不加入模板技术的话,启动服务器不会报错,但是无法网页访问项目。
解决办法
-
在pom文件中加入了模板thymeleaf依赖
-
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
之后重启服务器就可以正常访问了
总结:
在springboot中使用@RestController注解时候不需要模板技术;
但是如果使用@Controller注解不加入模板技术的话,启动服务器不会报错,但是无法网页访问项目。
版权声明:本文为weixin_47784657原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。