Constructor Dependency Injection with Collection of String example

In some scenarios, we may need to inject a Collection of String to an object rather than just one string value.

In such cases, we inject a Collection of string through a constructor.

Collection could be either List or Set but most of the requirements are best fit with List

Let us see how to inject a List of String through constructor.

Consider the example where one Person knows multiple languages

In this case, we are required to inject list of string to person object.

Let us see the same in spring through Constructor Dependency Injection

Create a class called Person

It contains 3 attributes id,name and languages where languages is a list of string
It also contains showPersonLanguages() method to display the list of languages that we have injected to the person object.

  1. package com.kb.di;
  2.  
  3. import java.util.List;
  4.  
  5. public class Person {
  6.     private int id;
  7.     private String name;
  8.     private List<String> languages;
  9.  
  10.    
  11.     public Person(int id, String name, List<String> languages) {
  12.         super();
  13.         this.id = id;
  14.         this.name = name;
  15.         this.languages = languages;
  16.     }
  17.  
  18.  
  19.     public void showPersonLanguages(){
  20.         for (String language : languages) {
  21.             System.out.println(language);
  22.            
  23.         }
  24.        
  25.     }
  26. }
package com.kb.di;

import java.util.List;

public class Person {
	private int id;
	private String name;
	private List<String> languages;

	
	public Person(int id, String name, List<String> languages) {
		super();
		this.id = id;
		this.name = name;
		this.languages = languages;
	}


	public void showPersonLanguages(){
		for (String language : languages) {
			System.out.println(language);
			
		}
		
	}
}

Create a spring bean definition file

In this file, we used < constructor-arg > tag with to define the list of string.

< value > tag will take by default string values , for anything other than string , we need to specify the Type (we will see it in next topic)

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.     xmlns:p="http://www.springframework.org/schema/p"
  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans
  6.        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">
  7.  
  8.  <bean id="person" class="com.kb.di.Person">  
  9.     <constructor-arg value="1" type="int"></constructor-arg>  
  10.     <constructor-arg value="Raj"></constructor-arg>
  11.     <constructor-arg>
  12.     <list>
  13.     <value>English</value>
  14.     <value>Spanish</value>
  15.     <value>German</value>
  16.     <value>French</value>
  17.     </list>
  18.     </constructor-arg>  
  19.  </bean>  
  20.   </beans>
<?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.2.xsd">
  
 <bean id="person" class="com.kb.di.Person">  
	<constructor-arg value="1" type="int"></constructor-arg>  
	<constructor-arg value="Raj"></constructor-arg> 
	<constructor-arg> 
	<list>
	<value>English</value>
	<value>Spanish</value>
	<value>German</value>
	<value>French</value>
	</list>
	</constructor-arg>  
 </bean>  
  </beans>

If we need to inject Set rather than List, just change the above < list > tag to < set > tag.
And also make the languages as Set in Person class instead of List.

Create a pom.xml file

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.   <modelVersion>4.0.0</modelVersion>
  4.  
  5.   <groupId>Spring</groupId>
  6.   <artifactId>SpringCore</artifactId>
  7.   <version>0.0.1-SNAPSHOT</version>
  8.   <packaging>jar</packaging>
  9.  
  10.   <name>SpringCore</name>
  11.   <url>http://maven.apache.org</url>
  12.  
  13.   <properties>
  14.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15.   </properties>
  16.  
  17.   <dependencies>
  18.   <dependency>
  19.     <groupId>org.springframework</groupId>
  20.     <artifactId>spring-core</artifactId>
  21.     <version>4.2.4.RELEASE</version>
  22. </dependency>
  23.   <dependency>
  24.     <groupId>org.springframework</groupId>
  25.     <artifactId>spring-context</artifactId>
  26.     <version>4.2.4.RELEASE</version>
  27. </dependency>
  28.  
  29.     <dependency>
  30.       <groupId>junit</groupId>
  31.       <artifactId>junit</artifactId>
  32.       <version>3.8.1</version>
  33.       <scope>test</scope>
  34.     </dependency>
  35.   </dependencies>
  36. </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>Spring</groupId>
  <artifactId>SpringCore</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>SpringCore</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
  <dependency>
	<groupId>org.springframework</groupId>
	<artifactId>spring-core</artifactId>
	<version>4.2.4.RELEASE</version>
</dependency>
  <dependency>
	<groupId>org.springframework</groupId>
	<artifactId>spring-context</artifactId>
	<version>4.2.4.RELEASE</version>
</dependency>
  
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

Create a ConstructorDI class

This class loads the spring beans using application context and calls the person class’s method to display the languages.

  1. package com.kb.di;
  2.  
  3. import org.springframework.beans.factory.BeanFactory;
  4. import org.springframework.beans.factory.xml.XmlBeanFactory;
  5. import org.springframework.context.ApplicationContext;
  6. import org.springframework.context.support.ClassPathXmlApplicationContext;
  7. import org.springframework.core.io.ClassPathResource;
  8. import org.springframework.core.io.Resource;
  9.  
  10. public class ConstructorDI {
  11.    
  12.     public static void main(String[] args) {
  13.         ApplicationContext applicationContext=new ClassPathXmlApplicationContext("beans.xml");  
  14.         Person person = (Person)applicationContext.getBean("person");
  15.         person. showPersonLanguages ();
  16.        
  17.     }
  18.  
  19. }
package com.kb.di;

import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;

public class ConstructorDI {
	
	public static void main(String[] args) {
        ApplicationContext applicationContext=new ClassPathXmlApplicationContext("beans.xml");  
        Person person = (Person)applicationContext.getBean("person");
        person. showPersonLanguages ();
        
	}

}

Run the ConstructorDI class and see the output as below

Download this project SpringDIWithListOfString.zip

About the Author

Founder of javainsimpleway.com
I love Java and open source technologies and very much passionate about software development.
I like to share my knowledge with others especially on technology 🙂
I have given all the examples as simple as possible to understand for the beginners.
All the code posted on my blog is developed,compiled and tested in my development environment.
If you find any mistakes or bugs, Please drop an email to kb.knowledge.sharing@gmail.com

Connect with me on Facebook for more updates

Share this article on