Setter注入(具有相關(guān)對象)示例

如果集合中有依賴對象,則可以使用 list set 中的 ref 元素來注入這些信息。 或 Map。在這里,我們將在 property 元素內(nèi)使用list,set或map元素。

在此示例中,我們以論壇為例,其中 一個問題可以有多個答案。但是Answer具有自己的信息,例如answerId,answer和postedBy。在此示例中使用了四個頁面:

Question.java Answer.java applicationContext.xml Test.java

在此示例中,我們使用的列表可以包含重復(fù)的元素,您可以使用僅包含唯一元素的set。但是,您需要更改在applicationContext.xml文件中設(shè)置的列表和在Question.java文件中設(shè)置的列表。

Question.java

此類包含三個屬性,兩個構(gòu)造函數(shù)和顯示信息的displayInfo()方法。在這里,我們使用列表來包含多個答案。

package com.nhooo;
import java.util.Iterator;
import java.util.List;
public class Question {
private int id;
private String name;
private List<Answer> answers;
//setters and getters
public void displayInfo(){
    System.out.println(id+" "+name);
    System.out.println("answers are:");
    Iterator<Answer> itr=answers.iterator();
    while(itr.hasNext()){
        System.out.println(itr.next());
    }
}
}

Answer.java

此類具有三個屬性id,name和by構(gòu)造函數(shù)和toString()方法。

package com.nhooo;
public class Answer {
private int id;
private String name;
private String by;
//setters and getters
public String toString(){
    return id+" "+name+" "+by;
}
}

applicationContext.xml

ref 元素用于定義另一個bean的引用。在這里,我們使用 ref 元素的 bean 屬性來指定另一個bean的引用。

<?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:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id="answer1" class="com.nhooo.Answer">
<property name="id" value="1"></property>
<property name="name" value="Java is a programming language"></property>
<property name="by" value="Ravi Malik"></property>
</bean>
<bean id="answer2" class="com.nhooo.Answer">
<property name="id" value="2"></property>
<property name="name" value="Java is a platform"></property>
<property name="by" value="Sachin"></property>
</bean>
<bean id="q" class="com.nhooo.Question">
<property name="id" value="1"></property>
<property name="name" value="What is Java?"></property>
<property name="answers">
<list>
<ref bean="answer1"/>
<ref bean="answer2"/>
</list>
</property>
</bean>
</beans>

Test.java

此類從applicationContext.xml文件獲取Bean并調(diào)用displayInfo方法。

package com.nhooo;
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();
    
}
}
丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清