0

我创建了一个 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();
    }
}
4

1 回答 1

1

Spring Application Contexts 的行为默认是“覆盖”。也就是说,当 bean 被加载到工厂时,如果定义存在(通过 xml 的注释),它将简单地用下一个定义覆盖它。

(要查看哪个正在加载,请尝试更改属性值以查看其加载顺序)

看看这里以获得更好的解释

于 2013-07-26T01:15:12.467 回答