我创建了一个xml上下文配置,以及一个基于注释的上下文配置类,每个创建一个具有相同id,相同类的bean。
所以我认为这会产生冲突,因为Spring会说“找不到ttt.TTT类型的唯一实例”(我在其他地方看到过这个错误)。但令人惊讶的是,下面的代码实际运行正常,并且选择的bean是来自xml的bean。如果我删除任何一个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 test),显示了相同的行为:
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();
}
}
答案 0 :(得分:1)
Spring Application Contexts行为默认为'覆盖'。也就是说,当bean被加载到工厂中时,如果定义存在(通过xml的注释),它将简单地用下一个定义覆盖它。
(要查看哪一个正在加载,请尝试更改属性值以查看它正在加载的顺序)
查看here以获得更好的解释