gpt4 book ai didi

spring - 手动实例化 Spring MongoRepository

转载 作者:行者123 更新时间:2023-12-05 06:46:20 28 4
gpt4 key购买 nike

我正在尝试使用 embeddedMongoDb 测试我的 spring 数据 mongodb 存储库,它们是从 MongoRepository 扩展的接口(interface).像这样tutorial ,我想创建不使用 spring 应用程序上下文的测试,如果我将普通的 mongoTemplate 与我的存储库类一起使用,这是可以实现的。

那么是否可以使用提供的实用方法通过传递 Mongo 和 MongoTemplate 实例来实例化 MongoRepository 接口(interface)实现。我假设 spring 会在启动时自动执行此操作。

最佳答案

据我所知,您想在不使用 xml 配置的情况下测试您的应用程序。与您的教程一样,在 java 类或 xml 文件中配置您的应用程序上下文最终是相同的。

个人测试我使用 Junit 并像这样调用我的 xml 配置:

    @RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath:META-INF/spring/applicationContext-mongo.xml"})
public class LicenseImplTest extends AbstractJUnit4SpringContextTests {

// Inject all repositories:
@Autowired
private IMyRepository myRepository;
}

例如,在我的 applicationContext-mongo.xml 中我有:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mongo="http://www.springframework.org/schema/data/mongo"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/data/mongo http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">

<bean id="applicationProperties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="classpath:META-INF/spring/database.properties"></property>
</bean>

<mongo:db-factory dbname="${mongo.database}" host="${mongo.host}" id="mongoDbFactory" port="${mongo.port}" write-concern="SAFE" />

<mongo:repositories base-package="fullpackage.repositories" />

<!-- To translate any MongoExceptions thrown in @Repository annotated classes -->
<context:annotation-config />

<bean class="org.springframework.data.mongodb.core.MongoTemplate" id="mongoTemplate">
<constructor-arg ref="mongoDbFactory" />
</bean>


</beans>

:

    <mongo:repositories base-package="fullpackage.repositories" />       

允许 spring 在找到注解 @Autowired 时自动实例化您的存储库。

更简单,更妥当。我个人更喜欢这种方法。

关于spring - 手动实例化 Spring MongoRepository,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16604165/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com