今天敲springcloud的时候出现了一个问题
无法访问网页,报This application has no explicit mapping for /error, so you are seeing this as a fallback.
翻译一下就是 —> 此应用程序没有/error的显式映射,因此您将其视为一个回退。
上网查阅资料知
出现这个异常的原因有
原因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(“xxxxxxxxx”) ,实际访问的路径与”xxx”不符合
我仔细检查了一下我的代码
可以排除原因一
然后我又去检查我的controller访问层
果然式url写错了
以后写代码还是要小心,多注意。
404错误This application has no explicit mapping for /error, so you are seeing this as a fallback.