解决springboot中通过controller跳转页面报404错误

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跳转页面报404错误_第1张图片

创建的代码:

  • 解决springboot中通过controller跳转页面报404错误_第2张图片

  • 解决springboot中通过controller跳转页面报404错误_第3张图片

错误原因*

  • 在springboot中如果使用@Controller不加入模板技术的话,启动服务器不会报错,但是无法网页访问项目。

解决办法

  • pom文件中加入了模板thymeleaf依赖

  • 解决springboot中通过controller跳转页面报404错误_第4张图片

  •     <dependency>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-starter-thymeleafartifactId>
        dependency>
    

    之后重启服务器就可以正常访问了

  • 解决springboot中通过controller跳转页面报404错误_第5张图片

总结:

在springboot中使用@RestController注解时候不需要模板技术;
但是如果使用@Controller注解不加入模板技术的话,启动服务器不会报错,但是无法网页访问项目。

你可能感兴趣的:(spring,boot)