私はxmlコンテキスト構成を作成し、注釈ベースのコンテキスト構成クラスも作成しました。それぞれが同じID、同じクラスのBeanを作成します。
そのため、Spring は「ttt.TTT 型の一意のインスタンスが見つかりません」と言うので、これは競合を引き起こすと考えました (このエラーは他の場所で見ました)。しかし驚くべきことに、次のコードは実際には問題なく動作し、選択された Bean は xml のものです。いずれかの Bean 定義を取り消しても、問題なく動作します。
では、なぜ Bean 定義の競合が発生しないのですか?
package ttt;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@Configuration
class MyConf {
@Bean(name="ttt")
public TTT ttt() {
return new TTT("bean");
}
}
class TTT {
String s;
public TTT(String s) {this.s = s;}
public void fun() {
System.out.println("TTT:" + s);
}
}
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath*:applicationContext-simple.xml"})
public class TTTTest {
@Autowired
TTT ttt;
@Test
public void test() {
ttt.fun();
}
}
XML コンテキスト構成:
<?xml version="1.0" encoding="UTF-8"?>
<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"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
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"
>
<context:component-scan base-package="ttt" />
<bean id="ttt"
class="ttt.TTT">
<constructor-arg value="xml"/>
</bean>
</beans>
メインコードを(junitテストの代わりに)追加しましたが、同じ動作を示しています:
package ttt;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class BBB {
public static void main(String args[]) throws Exception {
ApplicationContext ctx = new ClassPathXmlApplicationContext("classpath:/applicationContext-simple.xml");
TTT ttt = (TTT) ctx.getBean("ttt");
ttt.fun();
}
}