1

给定以下 Spring 应用程序上下文和类 A,当您运行类 A 时会发生什么?

applicationContext.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"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
    <bean name="a" class="A"/>
</beans>

A.java:

class A {
    private ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");

    public static void main(String[] args) {
        A a = new A();
    }
}
4

1 回答 1

5

不要质疑你的方法,但为什么这是必要的?如果一个 bean 想要一个指向它所属的应用程序上下文的指针,它应该实现ApplicationContextAware。您将实现一个 setter,Spring 会将应用程序上下文注入到 bean 中。

除非我弄错了,否则您的示例代码实际上不会为该 bean 提供指向其应用程序上下文的指针,它将使用与以前相同的 XML 文件启动一个新的应用程序上下文。这将反过来创建一个新的 bean,它将启动另一个应用程序上下文,等等——一个无限循环。试试你的代码,看看是否会发生这种情况。

于 2010-05-27T18:27:35.650 回答