6

我尝试将我的 data-mongo 示例项目升级到 Spring Boot 2.6.0。有一个针对 Testcontainers 运行的测试,我还包括了嵌入式 mongo dep 用于其他测试,所以我必须排除嵌入式 mongo 的 AutoConfiguration 以确保该测试在 Docker/testcontainers 上运行。

以下配置适用于 Spring Boot 2.5.6


@DataMongoTest
@ContextConfiguration(initializers = {MongodbContainerInitializer.class})
@EnableAutoConfiguration(exclude = EmbeddedMongoAutoConfiguration.class)
@Slf4j
@ActiveProfiles("test")
public class PostRepositoryTest {}

但是在升级到 Spring Boot 2.6.0 并运行应用程序后,我得到了这样的异常。

[           main] s.c.a.AnnotationConfigApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: o
rg.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'embeddedMongoServer' defined in class path resource [org/springframework/boot/autoconfig
ure/mongo/embedded/EmbeddedMongoAutoConfiguration.class]: Unsatisfied dependency expressed through method 'embeddedMongoServer' parameter 0; nested exception is org.springframework.bea
ns.factory.BeanCreationException: Error creating bean with name 'embeddedMongoConfiguration' defined in class path resource [org/springframework/boot/autoconfigure/mongo/embedded/Embed
dedMongoAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [de.flap
doodle.embed.mongo.config.MongodConfig]: Factory method 'embeddedMongoConfiguration' threw exception; nested exception is java.lang.IllegalStateException: Set the spring.mongodb.embedd
ed.version property or define your own MongodConfig bean to use embedded MongoDB

显然,@EnableAutoConfiguration(exclude =...)升级到 Spring Boot 2.6.0 时不会影响测试中的上下文。

更新:暂时解决了,见下面我的回答。

4

3 回答 3

5

从 Spring Boot 2.6 开始,该属性spring.mongodb.embedded.version必须设置为使用自动配置的嵌入式 MongoDB。它在发行说明中提到:https ://github.com/spring-projects/spring-boot/wiki/Spring-Boot-2.6-Release-Notes#embedded-mongo

这也是您发布的错误消息,建议您这样做:Set the spring.mongodb.embedd ed.version property or define your own MongodConfig bean to use embedded MongoDB

注释使用and@DataMongoTest进行元注释,旨在触发 MongoDB 的自动配置,除非您在工作配置示例中明确禁用。@ImportAutoConfiguration@AutoConfigureDataMongo

在您的第一个配置示例中,注释@EnableAutoConfiguration(exclude = EmbeddedMongoAutoConfiguration.class)不会覆盖@DataMongoTest.

在 Spring Boot 2.5.6 中,自动配置的MongodConfigbean 很可能也是应用程序上下文的一部分,但没有得到有效使用。但这取决于代码的其余部分,尤其是MongodbContainerInitializer.

于 2021-11-20T16:43:13.633 回答
4

升级到 Spring Boot 2.6.0 时,使用@ImportAutoConfiguration(exclude = ...)@DataMongoTest(excludeAutoConfiguration = ...)在测试类上克服这个障碍。

@DataMongoTest
@ImportAutoConfiguration(exclude = EmbeddedMongoAutoConfiguration.class)
//other config are ommitted
public class PostRepositoryTest {}

//or 
@DataMongoTest(excludeAutoConfiguration = EmbeddedMongoAutoConfiguration.class)
public class PostRepositoryTest {}
于 2021-12-21T12:47:44.080 回答
4

只需添加:

@TestPropertySource(properties = "spring.mongodb.embedded.version=3.5.5")

单元测试之前的注释,它将开始工作。

@Henning 的回答很好地解释了你为什么需要这个。

于 2021-12-22T02:22:33.120 回答