0

我是春天的新手。我们如何将对象传递给应用程序上下文 xml 文件?

例如:

我有类A调用:

`new ClassPathXmlApplicationContext("META-INF/spring/storage.xml");

storage.xml在其中定义了一个 bean(属于 class B)。

我想从创建类对象BA通过ApplicationContext.

我该怎么做?

4

1 回答 1

0

这是简单的方法。在 A 类

ApplicationContext context = new ClassPathXmlApplicationContext("META-INF/spring/storage.xml");

B objB = (B) context.getBean("beanIDofB");

objB.someMehodOfB();

但是这种做法已经过时了。试试spring注解

于 2013-01-15T09:54:51.917 回答