Springboot 学习遇到的一些错和埋坑之旅
Posted 夏天里的Jasmine
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot 学习遇到的一些错和埋坑之旅相关的知识,希望对你有一定的参考价值。
1. java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
原因:
1. 检查各个类的包是否正确,有没有下面画波浪线的类文件,比如我的测试类HelloApplicationTests
2. 启动类,需要放在根目录下,比如我的StartApp
2. java.lang.NoSuchFieldError: logger
原因:jar包版本问题,因为springboot的版本是2.0.1.RELEASE,该版本依赖的spring版本为5.0.5.RELEASE,在项目中添加对应的spring-beans版本,问题解决了。
之前是开发工具自己下载的5.0.5.8版本
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>5.0.5.RELEASE</version>
<scope>compile</scope>
</dependency>
3. java.lang.NoSuchFieldError: logger
以上是关于Springboot 学习遇到的一些错和埋坑之旅的主要内容,如果未能解决你的问题,请参考以下文章