解决:Whitelabel Error PageThis application has no explicit mapping for /error, so you are seeing this

问题描述:

博主在运行springbootWeb的时候出现了:

Whitelabel Error Page

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

如下:

解决:Whitelabel Error PageThis application has no explicit mapping for /error, so you are seeing this_第1张图片

发现输入url不对,在反复确认了文件里的路径写正确了后,发现原来是springboot的运行主类的位置不对:

原来是这样:

解决:Whitelabel Error PageThis application has no explicit mapping for /error, so you are seeing this_第2张图片

因为在创建springboot的时候设置了包名,但是自己测试的Controller却在另外一个自己创建的包里,但是spring-boot会自动加载启动类所在包下及其子包下的所有组件,故报错

解决:
只需要把这个webTest包放在com.web.springboot_echarts下就行

 解决:Whitelabel Error PageThis application has no explicit mapping for /error, so you are seeing this_第3张图片

目的就是要让Application包含所有子包 !!

 

你可能感兴趣的:(springboot)