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 で bean1 の上に bean2 を宣言すると、テストは失敗し、
org.springframework.beans.factory.NoSuchBeanDefinitionException: No matching bean of type [com.package2.bean1]
Spring がファイルを読み取り、Bean 定義に到達すると、それを配線しようとすると思います。そのため、私の場合はクラッシュします。Spring にファイル全体を読み取ってから、Bean を接続しようとするように指示する方法はありますか? このようにして、順序を気にせずに Bean 定義を書くことができました。ありがとう