如何找出哪个弹簧组件不兼容?
Posted
技术标签:
【中文标题】如何找出哪个弹簧组件不兼容?【英文标题】:How do I find out which spring component is incompatible? 【发布时间】:2019-02-04 16:46:40 【问题描述】:我正在尝试为使用 spring 和 gradle 的项目编写一些 junit 测试。我来了
java.lang.IllegalStateException: Failed to load ApplicationContext
at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:124)
at org.springframework.test.context.support.DefaultTestContext.getApplicationContext(DefaultTestContext.java:83)
at org.springframework.boot.test.autoconfigure.AutoConfigureReportTestExecutionListener.prepareTestInstance(AutoConfigureReportTestExecutionListener.java:49)
at org.springframework.test.context.TestContextManager.prepareTestInstance(TestContextManager.java:230)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.createTest(SpringJUnit4ClassRunner.java:228)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner$1.runReflectiveCall(SpringJUnit4ClassRunner.java:287)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.methodBlock(SpringJUnit4ClassRunner.java:289)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:247)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:538)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:760)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:460)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:206)
Caused by: java.lang.IllegalArgumentException: Cannot instantiate interface org.springframework.context.ApplicationContextInitializer : org.springframework.boot.autoconfigure.SharedMetadataReaderFactoryContextInitializer
at org.springframework.boot.SpringApplication.getSpringFactoriesInstances(SpringApplication.java:381)
at org.springframework.boot.SpringApplication.getSpringFactoriesInstances(SpringApplication.java:358)
at org.springframework.boot.SpringApplication.initialize(SpringApplication.java:230)
at org.springframework.boot.SpringApplication.<init>(SpringApplication.java:206)
at org.springframework.boot.test.context.SpringBootContextLoader.getSpringApplication(SpringBootContextLoader.java:121)
at org.springframework.boot.test.context.SpringBootContextLoader.loadContext(SpringBootContextLoader.java:84)
at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContextInternal(DefaultCacheAwareContextLoaderDelegate.java:98)
at org.springframework.test.context.cache.DefaultCacheAwareContextLoaderDelegate.loadContext(DefaultCacheAwareContextLoaderDelegate.java:116)
... 25 more
Caused by: java.lang.NoSuchMethodException: org.springframework.boot.autoconfigure.SharedMetadataReaderFactoryContextInitializer.<init>()
at java.lang.Class.getConstructor0(Class.java:3082)
at java.lang.Class.getConstructor(Class.java:1825)
at org.springframework.boot.SpringApplication.getSpringFactoriesInstances(SpringApplication.java:376)
... 32 more
我被告知这可能是弹簧组件不兼容的问题。这些是我的 gradle.properties 中的那些
SpringSecurityConfig = 4.0.2.RELEASE
SpringSecurityWeb = 4.0.2.RELEASE
SpringWeb = 4.3.6.RELEASE
SpringWebMVC = 4.3.6.RELEASE
SpringBootTestAutoConfigure = 1.4.0.RELEASE
SpringSecurityTest = 4.0.2.RELEASE
SpringContextVersion = 4.1.7.RELEASE
SpringTestVersion = 4.3.6.RELEASE
SpringBootTestVersion = 1.2.5.RELEASE
SpringBootStarterVersion = 1.2.5.RELEASE
SpringDataRedisVersion = 1.6.4.RELEASE
SpringRetryVersion = 1.2.0.RELEASE
SpringDataJpaVersion = 1.8.0.RELEASE
我如何确定其中哪些不兼容?
【问题讨论】:
当你在不同版本中使用Spring依赖时:4.0.2、4.3.6、4.1.7,你不能期望所有组件都应该无缝集成。 @LuiggiMendoza 版本不同,因为 Spring Boot、Spring Core 和 Spring Security 不是版本对齐的,例如Spring Boot 1.2.5 依赖于 Spring Core 4.1.7 尝试让 SpringBoot* 版本对齐。 永远不要混合框架的版本。您正在混合 spring boot 1.2.5 和 1.4.0 永远不要这样做。 Spring Boot 管理所有其他版本,混合 Spring Boot 版本也会导致混合 Spring 和 Spring Security 版本,从而导致版本不兼容。因此,简而言之,修复您的 Spring Boot 版本(您应该删除这些版本,并且只使用来自父 Spring Boot 的版本来管理其他版本)并且其他所有内容都会对齐(假设您没有明确的版本号)。 我明白了。假设我已将 SpringBootStarterVersion 更改为 1.4.0。如何让 gradle 下载新版本的文件? 【参考方案1】:运行
gradle dependencies --configuration compile
输出显示版本已更改的位置,例如spring-beans:4.1.6.RELEASE -> 4.1.7.RELEASE
因为spring-security-web
4.0.2 想要spring-beans
4.1.6,但spring-boot-starter
1.2.5 想要spring-core
4.1.7
可能的冲突竞争者是:
SpringBootTestAutoConfigure = 1.4.0.RELEASE
depends on spring-boot:1.4.0.RELEASE and spring-core:4.3.2.RELEASE
SpringBootStarterVersion = 1.2.5.RELEASE
depends on spring-boot:1.2.5.RELEASE and spring-core:4.1.7.RELEASE
【讨论】:
@achAmháin 是什么让您认为他们在使用 Grails?问题中没有提到 Grails。 我明白了。假设我已将 SpringBootStarterVersion 更改为 1.4.0。如何让 gradle 下载新版本的文件? @Lifus 当您使用 Gradle 时会自动发生这种情况。它就是这样做的。 我已将 SpringBootStarterVersion 更改为 1.4.0,但是当我尝试运行 junit 测试时它仍然失败。我已经尝试过 gradle --refresh-dependencies 并通过 eclipse 刷新 gradle 项目,但它仍然失败。 @Lifus 它仍然以相同的NoSuchMethodException
失败?以上是关于如何找出哪个弹簧组件不兼容?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用打字稿和情感修复 Box 组件上的“属性“颜色”类型不兼容”