- Spring DI - Discussion
- Spring DI - Useful Resources
- Spring DI - Quick Guide
- Spring DI - Non-Static Factory
- Spring DI - Static Factory
- Spring DI - Autowiring Constructor
- Spring DI - Autowiring ByType
- Spring DI - Autowiring ByName
- Spring DI - Autowiring
- Spring DI - Map Ref Setter
- Spring DI - Map Setter
- Spring DI - Collection Ref Setter
- Spring DI - Collections Setter
- Spring DI - Inner Beans Setter
- Spring DI - Setter Based
- Spring DI - Map Ref Constructor
- Spring DI - Map Constructor
- Spring DI - Collection Ref Constructor
- Spring DI - Collections Constructor
- Spring DI - Inner Beans Constructor
- Spring DI - Constructor Based
- Spring DI - Create Project
- Spring Dependency Injection
- Spring DI - IOC Containers
- Spring DI - Environment Setup
- Spring DI - Overview
- Spring DI - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Spring DI - Map Ref Constructor
You have seen how to configure primitive data type using value attribute and object references using ref attribute of the <property> tag in your Bean configuration file. Both the cases deal with passing singular value to a bean.
Now what if you want to pass Map. In this example, we re showcasing passing direct values of the Map using constructor injection.
Example
The following example shows a class JavaCollection that is using collections as dependency injected using constructor arguments.
Let s update the project created in
chapter. We re adding following files −Address.java − A class to be used as dependency.
JavaCollection.java − A class containing a collections of dependencies.
MainApp.java − Main apppcation to run and test.
Here is the content of Address.java file −
package com.tutorialspoint; pubpc class Address { private String name; pubpc String getName() { return name; } pubpc void setName(String name) { this.name = name; } @Override pubpc String toString() { return name; } }
Here is the content of JavaCollection.java file −
package com.tutorialspoint; import java.util.*; pubpc class JavaCollection { Map<String, Address> addressMap; pubpc JavaCollection() {} pubpc JavaCollection(Map<String, Address> addressMap) { this.addressMap = addressMap; } // a setter method to set Map pubpc void setAddressMap(Map<String, Address> addressMap) { this.addressMap = addressMap; } // prints and returns all the elements of the Map. pubpc Map<String, Address> getAddressMap() { System.out.println("Map Elements :" + addressMap); return addressMap; } }
Following is the content of the MainApp.java file −
package com.tutorialspoint; import org.springframework.context.ApppcationContext; import org.springframework.context.support.ClassPathXmlApppcationContext; pubpc class MainApp { pubpc static void main(String[] args) { ApppcationContext context = new ClassPathXmlApppcationContext("apppcationcontext.xml"); JavaCollection jc=(JavaCollection)context.getBean("javaCollection"); jc.getAddressMap(); } }
Following is the configuration file apppcationcontext.xml which has configuration for all the type of collections −
<?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 id = "address1" class = "com.tutorialspoint.Address"> <property name="name" value="INDIA"></property> </bean> <bean id = "address2" class = "com.tutorialspoint.Address"> <property name="name" value="JAPAN"></property> </bean> <bean id = "address3" class = "com.tutorialspoint.Address"> <property name="name" value="USA"></property> </bean> <bean id = "address4" class = "com.tutorialspoint.Address"> <property name="name" value="UK"></property> </bean> <bean id = "javaCollection" class = "com.tutorialspoint.JavaCollection"> <constructor-arg name = "addressMap"> <map> <entry key = "1" value-ref = "address1"/> <entry key = "2" value-ref = "address2"/> <entry key = "3" value-ref = "address3"/> <entry key = "4" value-ref = "address4"/> </map> </constructor-arg> </bean> </beans>
Once you are done creating the source and bean configuration files, let us run the apppcation. If everything is fine with your apppcation, it will print the following message −
Map Elements :{1=INDIA, 2=JAPAN, 3=USA, 4=UK}Advertisements