java.lang.NoClassDefFoundError:org / springframework / data / repository / config / BootstrapMode

前端之家收集整理的这篇文章主要介绍了java.lang.NoClassDefFoundError:org / springframework / data / repository / config / BootstrapMode前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在用 spring boot做这个项目,我试着编写一些测试,但遗憾的是我得到了这个异常堆栈跟踪:
java.lang.IllegalStateException: Failed to load ApplicationContext
Caused by: org.springframework.beans.factory.BeanDefinitionStoreException: Failed to read candidate component class: file [somepath/config/PostgresJpaConfig.class]; nested exception is java.lang.NoClassDefFoundError: org/springframework/data/repository/config/BootstrapMode
Caused by: java.lang.NoClassDefFoundError: org/springframework/data/repository/config/BootstrapMode

我看看我的build.gradle中是否缺少某种依赖,但我不这么认为. BootstrapMode thingy在任何地方都不存在,甚至在Central Maven Repository上也不存在.我使用IntelliJ在整个项目中搜索任何类型的BootstrapMode外观,没有任何运气.

这些是我的gradle依赖项:

这将是我的测试用例:
Spring Boot Test Case

这是我的PostgrsJpaConfig类:
PostgresJpaConfig class

解决方法

TL;DR: I was mixing up Spring versions. Overriding one version with
another,which you shouldn’t do.

我应该使用org.springframework.boot:spring-boot-starter-data-jpa,而不是使用org.springframework.data依赖项.

原文链接:https://www.f2er.com/java/128489.html

猜你在找的Java相关文章