junit配置文件中的Bean定义

时间:2012-05-23 07:48:58

标签: spring junit autowired

我正在使用junit来测试我的一些服务。我使用spring来注入服务及其所有依赖项。我的测试类看起来像下面那样。

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"classpath:/location/MyServiceTest-context.xml"})
@Transactional
public class MyServiceTest extends TestSupport {

    @Autowired
    private MyService myService;

    @Test
    public void testX() throws Exception {
        ...
    }
}

配置文件是:

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans      
       http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">


     <bean id="entityBasePackages" class="java.lang.String">
         <constructor-arg value="com.package1.model"/>
     </bean>

     <bean id="bean1" class="org.easymock.EasyMock" factory-method="createMock">
         <constructor-arg value="com.package2.bean1"/>
     </bean>

     <bean id="bean2" class="org.easymock.EasyMock" factory-method="createMock">
         <constructor-arg value="com.package3.bean2"/>
     </bean>

     <context:component-scan base-package="com.package4.MyService"/>

 </beans>

MyService使用bean1。 bean1依赖于bean2,也就是说,它使用它。当我像这样运行我的测试时,它工作正常。但是,如果我在配置xml中将bean2声明为bean1,则测试将失败,并带有

org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [com.package2.bean1]

我猜Spring会读取文件,当它到达bean定义时,尝试连接它 - 这就是为什么它在我的情况下崩溃了。有没有办法告诉Spring读取整个​​文件,然后尝试连接bean?这样我就可以编写我的bean定义而不必担心它们的顺序。感谢

1 个答案:

答案 0 :(得分:0)

我意识到bean1和bean2不是最好的选择名称。但这是我如何使用它们:

@Service("bean1")
public class Bean1{

    ...

    @Validators(value = {
            @Validator(validatorClass = Bean2.class, parameters = {@Parameter(0)}, shortCircuit = true)})
    public void someMethod(SomeObject someObject){
         ...
    }

    ...
}

MyService在内部使用bean1服务。