English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

exemplo de injecção de dependência com mapeamento não de string

Neste exemplo, usamos map é uma resposta com Answer e User. Aqui, usaremos chave e valor como objetos. A resposta possui suas próprias informações, como answerId, resposta e postedDate, e o usuário possui suas próprias informações, como userId, nome de usuário, emailId.

Como no exemplo anterior, é um exemplo de fórum, onde Uma pergunta pode ter várias respostas

Pergunta.java

Este objeto possui três atributos, ou seja, métodos getters e setters e o método exibirInfo() para exibir informações

package com.w3codebox;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
public class Pergunta {
private int id;
private String nome;
private Map<Answer,User> respostas;
//getters e setters
public void exibirInfo(){
    System.out.println("id da pergunta:")+id);
    System.out.println("nome da pergunta:")+name);
    System.out.println("Answers....");
    Set<Entry<Answer, User>> set = answers.entrySet();
    Iterator<Entry<Answer, User>> itr = set.iterator();
    while(itr.hasNext()){
        Entry<Answer, User> entry = itr.next();
        Answer ans = entry.getKey();
        User user = entry.getValue();
        System.out.println("Answer Information:");
        System.out.println(ans);
        System.out.println("Posted By:");
        System.out.println(user);
    }
}
}

Answer.java

package com.w3codebox;
import java.util.Date;
public class Answer {
private int id;
private String answer;
private Date postedDate;
public Answer() {}
public Answer(int id, String answer, Date postedDate) {
    super();
    this.id = id;
    this.answer = answer;
    this.postedDate = postedDate;
}
public String toString(){
    return "Id:"+id+"Answer:"+answer+"Posted Date:"+postedDate;
}
}

User.java

package com.w3codebox;
public class User {
private int id;
private String name, email;
public User() {}
public User(int id, String name, String email) {
    super();
    this.id = id;
    this.name = name;
    this.email = email;
}
public String toString(){
    return "Id:"+id+"Name:"+name+"Email Id:"+email;
}
}

applicationContext.xml

entrada elemento do key-ref e value-ref A propriedade é usada para definir referências de beans no mapa.

<?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.w3codebox.Answer">
<property name="id" value="1></property>
<property name="answer" value="Java is a Programming Language"></property>
<property name="postedDate" value="12/12/2001></property>
</bean>
<bean id="answer2" class="com.w3codebox.Answer">
<property name="id" value="2></property>
<property name="answer" value="Java is a Platform"></property>
<property name="postedDate" value="12/12/2003></property>
</bean>
<bean id="user1" class="com.w3codebox.User">
<property name="id" value="1></property>
<property name="name" value="Arun Kumar"></property>
<property name="email" value="[email protected]"></property>
</bean>
<bean id="user2" class="com.w3codebox.User">
<property name="id" value="2></property>
<property name="name" value="Varun Kumar"></property>
<property name="email" value="[email protected]"></property>
</bean>
<bean id="q" class="com.w3codebox.Question">
<property name="id" value="1></property>
<property name="name" value="What is Java?"></property>
<property name="answers">
<map>
<entry key-ref="answer1" value-ref="user1></entry>
<entry key-ref="answer2" value-ref="user2></entry>
</map>
</property>
</bean>
</beans>

Test.java

Este classe obtém o Bean do arquivo applicationContext.xml e chama o método displayInfo() para exibir informações.

package com.w3codebox;
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();
    
}
}