This application has no explicit mapping for 解决方法
Posted Maynor的大数据奋斗之路
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了This application has no explicit mapping for 解决方法相关的知识,希望对你有一定的参考价值。
一、错误提示:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Mon Jun 24 14:56:23 CST 2019
There was an unexpected error (type=Not Found, status=404).
No message available
二、原因:
IDEA目录结构的问题,Application启动类的位置不对.要将Application类放在最外侧,即包含所有子包 。而我的controller则放在了最外层的包里面。导致找不到页面。
三、解决方法1,移动控制层的包:
把controller类移动进去,即可成功运行。
再次刷新,即可成功打开页面。
四、解决方法二,添加@SpringBootApplication(scanBasePackages=“controller”)
在你的启动的Demo01Application类中,添加注释,指定你的controller的位置,就可以指定加载,成功解决问题。
package com.hh.demo01;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication(scanBasePackages=“controller”)
public class Demo01Application {
public static void main(String[] args) {
SpringApplication.run(Demo01Application.class, args);
}
}
五、汇总可能出现报错的原因:
出现这个异常说明了跳转页面的url无对应的值.
原因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”不符合.
参考文章:https://www.cnblogs.com/lilinzhiyu/p/7921890.html
六、关于eclipse启动springboot报错原因:
当启动eclipse部署的项目的时候,同样出现了This application has no explicit mapping for /error, so you are seeing this as a fallback.的报错,同时,他的日志中显示的是启动8080端口。
而我的配置文件已经配置好了端口:
后来发现,竟然也是因为包放的位置问题,也就是上边的原因1:Application启动类的位置不对.要将Application类放在最外侧,即包含所有子包 ,原因:spring-boot会自动加载启动类所在包下及其子包下的所有组件.
更换好了位置以后,成功启动,并且端口正确,打开页面正确。
以上是关于This application has no explicit mapping for 解决方法的主要内容,如果未能解决你的问题,请参考以下文章
解决Springboot:This application has no explicit mapping for /error
springboot:This application has no explicit mapping for /erro
SpringBoot启动报错This application has no explicit mapping for /error.....
异常:This application has no explicit mapping for /error, so you are seeing this as a fallback.
1. SpringBoot启动后,报异常:This application has no explicit mapping for /error, so you are seeing this as
This application has no explicit mapping for /error, so you are seeing this as a fallback.