手动实例化Spring MongoRepository

时间:2013-05-17 07:56:55

标签: spring integration-testing spring-data-mongodb

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

因此可以通过传递Mongo& amp;来实例化MongoRepository接口实现。 MongoTemplate实例,使用提供的实用程序方法。我认为春天会在启动时自动完成。

1 个答案:

答案 0 :(得分:1)

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

Personaly对于我的测试我使用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时自动实例化您的存储库。

更简单,更恰当。 Personaly,我更喜欢这种方法。