This application has no explicit mapping for /error, so you are seeing this as a fallback.

翻阅了网上众多资料,主要有三种解决的方向:

方向1:

Application启动类的位置不对.要将Application类放在最外侧,即包含所有子包

原因:spring-boot会自动加载启动类所在包下及其子包下的所有组件.

方向2:

在springboot的配置文件:application.yml或application.properties中关于视图解析器的配置问题:

当pom文件下的spring-boot-starter-paren版本高时使用:

spring.mvc.view.prefix/spring.mvc.view.suffix

当pom文件下的spring-boot-starter-paren版本低时使用:

spring.view.prefix/spring.view.suffix

方向3:

控制器的URL路径书写问题

@RequestMapping(“xxxxxxxxxxxxxx”)

实际访问的路径与”xxx”不符合.

然而作为刚接触SpringBoot的我一开始犯错的时候是在第四层

方向4:

你把你Controller类的@Controller给补上

你可能感兴趣的:(This application has no explicit mapping for /error, so you are seeing this as a fallback.)