SpringBoot-异常问题总结
Posted a103007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot-异常问题总结相关的知识,希望对你有一定的参考价值。
一:创建的SpringBoot项目之后测试访问接口报错:
Whitelabel Error Page
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”不符合.
@Controller
public class HelloController {
@RequestMapping("/hello")
public String hello(){
return "hello SpringBoot!!";
}
}
二:
以上是关于SpringBoot-异常问题总结的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段