Primavera - Collezione per iniezione
Hai visto come configurare il tipo di dati primitivo usando value riferimenti ad attributi e oggetti utilizzando refattributo del tag <property> nel file di configurazione Bean. Entrambi i casi riguardano il passaggio di un valore singolare a un bean.
Ora cosa succede se si desidera passare valori plurali come i tipi di raccolta Java come List, Set, Map e Properties. Per gestire la situazione, Spring offre quattro tipi di elementi di configurazione della raccolta che sono i seguenti:
Suor n | Elemento e descrizione |
---|---|
1 | <list> Questo aiuta nel cablaggio, cioè iniettando un elenco di valori, consentendo duplicati. |
2 | <set> Questo aiuta a cablare un insieme di valori ma senza duplicati. |
3 | <map> Questo può essere utilizzato per iniettare una raccolta di coppie nome-valore in cui nome e valore possono essere di qualsiasi tipo. |
4 | <props> Può essere utilizzato per inserire una raccolta di coppie nome-valore in cui il nome e il valore sono entrambi stringhe. |
È possibile utilizzare <list> o <set> per cablare qualsiasi implementazione di java.util.Collection o un file array.
Ti imbatterai in due situazioni (a) Passaggio di valori diretti della raccolta e (b) Passaggio di un riferimento di un bean come uno degli elementi della raccolta.
Esempio
Cerchiamo di avere un IDE Eclipse funzionante e di eseguire i seguenti passaggi per creare un'applicazione Spring:
Passi | Descrizione |
---|---|
1 | Crea un progetto con un nome SpringExample e crea un pacchetto com.tutorialspoint sottosrc cartella nel progetto creato. |
2 | Aggiungere le librerie Spring richieste utilizzando l' opzione Aggiungi JAR esterni come spiegato nel capitolo Esempio Spring Hello World . |
3 | Crea classi Java JavaCollection e MainApp nel pacchetto com.tutorialspoint . |
4 | Crea il file di configurazione Beans Beans.xml sottosrc cartella. |
5 | Il passaggio finale consiste nel creare il contenuto di tutti i file Java e nel file di configurazione Bean ed eseguire l'applicazione come spiegato di seguito. |
Ecco il contenuto di JavaCollection.java file -
package com.tutorialspoint;
import java.util.*;
public class JavaCollection {
List addressList;
Set addressSet;
Map addressMap;
Properties addressProp;
// a setter method to set List
public void setAddressList(List addressList) {
this.addressList = addressList;
}
// prints and returns all the elements of the list.
public List getAddressList() {
System.out.println("List Elements :" + addressList);
return addressList;
}
// a setter method to set Set
public void setAddressSet(Set addressSet) {
this.addressSet = addressSet;
}
// prints and returns all the elements of the Set.
public Set getAddressSet() {
System.out.println("Set Elements :" + addressSet);
return addressSet;
}
// a setter method to set Map
public void setAddressMap(Map addressMap) {
this.addressMap = addressMap;
}
// prints and returns all the elements of the Map.
public Map getAddressMap() {
System.out.println("Map Elements :" + addressMap);
return addressMap;
}
// a setter method to set Property
public void setAddressProp(Properties addressProp) {
this.addressProp = addressProp;
}
// prints and returns all the elements of the Property.
public Properties getAddressProp() {
System.out.println("Property Elements :" + addressProp);
return addressProp;
}
}
Di seguito è riportato il contenuto del file MainApp.java file -
package com.tutorialspoint;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MainApp {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("Beans.xml");
JavaCollection jc=(JavaCollection)context.getBean("javaCollection");
jc.getAddressList();
jc.getAddressSet();
jc.getAddressMap();
jc.getAddressProp();
}
}
Di seguito è riportato il file di configurazione Beans.xml che ha la configurazione per tutti i tipi di collezioni -
<?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-3.0.xsd">
<!-- Definition for javaCollection -->
<bean id = "javaCollection" class = "com.tutorialspoint.JavaCollection">
<!-- results in a setAddressList(java.util.List) call -->
<property name = "addressList">
<list>
<value>INDIA</value>
<value>Pakistan</value>
<value>USA</value>
<value>USA</value>
</list>
</property>
<!-- results in a setAddressSet(java.util.Set) call -->
<property name = "addressSet">
<set>
<value>INDIA</value>
<value>Pakistan</value>
<value>USA</value>
<value>USA</value>
</set>
</property>
<!-- results in a setAddressMap(java.util.Map) call -->
<property name = "addressMap">
<map>
<entry key = "1" value = "INDIA"/>
<entry key = "2" value = "Pakistan"/>
<entry key = "3" value = "USA"/>
<entry key = "4" value = "USA"/>
</map>
</property>
<!-- results in a setAddressProp(java.util.Properties) call -->
<property name = "addressProp">
<props>
<prop key = "one">INDIA</prop>
<prop key = "one">INDIA</prop>
<prop key = "two">Pakistan</prop>
<prop key = "three">USA</prop>
<prop key = "four">USA</prop>
</props>
</property>
</bean>
</beans>
Una volta terminata la creazione dei file di configurazione dei bean e dei sorgenti, eseguiamo l'applicazione. Se tutto va bene con la tua applicazione, stamperà il seguente messaggio:
List Elements :[INDIA, Pakistan, USA, USA]
Set Elements :[INDIA, Pakistan, USA]
ap Elements :{1 = INDIA, 2 = Pakistan, 3 = USA, 4 = USA}
Property Elements :{two = Pakistan, one = INDIA, three = USA, four = USA}
Iniezione di riferimenti a fagioli
La seguente definizione di Bean ti aiuterà a capire come inserire i riferimenti ai bean come uno degli elementi della raccolta. Anche tu puoi mescolare riferimenti e valori tutti insieme come mostrato nel seguente frammento di codice:
<?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-3.0.xsd">
<!-- Bean Definition to handle references and values -->
<bean id = "..." class = "...">
<!-- Passing bean reference for java.util.List -->
<property name = "addressList">
<list>
<ref bean = "address1"/>
<ref bean = "address2"/>
<value>Pakistan</value>
</list>
</property>
<!-- Passing bean reference for java.util.Set -->
<property name = "addressSet">
<set>
<ref bean = "address1"/>
<ref bean = "address2"/>
<value>Pakistan</value>
</set>
</property>
<!-- Passing bean reference for java.util.Map -->
<property name = "addressMap">
<map>
<entry key = "one" value = "INDIA"/>
<entry key = "two" value-ref = "address1"/>
<entry key = "three" value-ref = "address2"/>
</map>
</property>
</bean>
</beans>
Per utilizzare la definizione di bean di cui sopra, è necessario definire i metodi setter in modo tale che siano in grado di gestire anche i riferimenti.
Inserimento di valori di stringa nulli e vuoti
Se devi passare una stringa vuota come valore, puoi passarla come segue:
<bean id = "..." class = "exampleBean">
<property name = "email" value = ""/>
</bean>
L'esempio precedente è equivalente al codice Java: exampleBean.setEmail ("")
Se devi passare un valore NULL, puoi passarlo come segue:
<bean id = "..." class = "exampleBean">
<property name = "email"><null/></property>
</bean>
L'esempio precedente è equivalente al codice Java: exampleBean.setEmail (null)