📅  最后修改于: 2020-12-04 07:19:44             🧑  作者: Mango
如果集合中有依赖对象,则可以通过使用list , set或map内的ref元素来注入这些信息。
在本示例中,我们以论坛为例,其中一个问题可以有多个答案。但是Answer具有自己的信息,例如answerId,answer和postedBy。在此示例中使用了四个页面:
在此示例中,我们使用的列表可以包含重复的元素,您可以使用仅包含唯一元素的set。但是,您需要更改在applicationContext.xml文件中设置的列表和在Question.java文件中设置的列表。
此类包含三个属性,两个构造函数和显示信息的displayInfo()方法。在这里,我们使用列表来包含多个答案。
package com.javatpoint;
import java.util.Iterator;
import java.util.List;
public class Question {
private int id;
private String name;
private List answers;
public Question() {}
public Question(int id, String name, List answers) {
super();
this.id = id;
this.name = name;
this.answers = answers;
}
public void displayInfo(){
System.out.println(id+" "+name);
System.out.println("answers are:");
Iterator itr=answers.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
}
}
}
此类具有三个属性id,name和by构造函数和toString()方法。
package com.javatpoint;
public class Answer {
private int id;
private String name;
private String by;
public Answer() {}
public Answer(int id, String name, String by) {
super();
this.id = id;
this.name = name;
this.by = by;
}
public String toString(){
return id+" "+name+" "+by;
}
}
ref元素用于定义另一个bean的引用。在这里,我们使用ref元素的bean属性来指定另一个bean的引用。
此类从applicationContext.xml文件获取Bean,然后调用displayInfo方法。
package com.javatpoint;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
public class Test {
public static void main(String[] args) {
Resource r=new ClassPathResource("applicationContext.xml");
BeanFactory factory=new XmlBeanFactory(r);
Question q=(Question)factory.getBean("q");
q.displayInfo();
}
}