Setter Dependency Injection with Array of String

In some scenarios, we may need to inject an array of strings to an object.

Consider the example where Person has hobbies

In this case, we can use Array of String which stores the hobbies

Let us see the same in spring through Setter Dependency Injection

Create a class called Person

It contains 3 attributes id,name and hobbies where hobbies is an array of String.

It contains 3 setter methods one for each attribute

It also contains showHobbies() method to display the hobbies injected to the person object.

  1. package com.kb.di;
  2.  
  3. public class Person {
  4.     private int id;
  5.     private String name;
  6.     private String[] hobbies;
  7.    
  8.     public void showHobbies() {
  9.         for (int i = 0; i < hobbies.length; i++) {
  10.             System.out.println(hobbies[i]);
  11.         }
  12.  
  13.     }
  14.  
  15.     public void setId(int id) {
  16.         this.id = id;
  17.     }
  18.  
  19.     public void setName(String name) {
  20.         this.name = name;
  21.     }
  22.  
  23.     public void setHobbies(String[] hobbies) {
  24.         this.hobbies = hobbies;
  25.     }
  26. }
package com.kb.di;

public class Person {
	private int id;
	private String name;
	private String[] hobbies;
	
	public void showHobbies() {
		for (int i = 0; i < hobbies.length; i++) {
			System.out.println(hobbies[i]);
		}

	}

	public void setId(int id) {
		this.id = id;
	}

	public void setName(String name) {
		this.name = name;
	}

	public void setHobbies(String[] hobbies) {
		this.hobbies = hobbies;
	}
}

Create a spring bean definition file

In this file, we used < property > tag with < array > to define the hobbies

< array > tag is used to inject the hobbies defined as array of strings in the Person class.

  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" xmlns:p="http://www.springframework.org/schema/p"
  4.     xsi:schemaLocation="http://www.springframework.org/schema/beans
  5.        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">
  6.  
  7.  
  8.     <bean id="person" class="com.kb.di.Person">
  9.         <property name="id" value="1"></property>
  10.         <property name="name" value="Raj"></property>
  11.         <property name="hobbies">
  12.             <array>
  13.                 <value>Playing cricket</value>
  14.                 <value>Coding</value>
  15.                 <value>Reading books</value>
  16.             </array>
  17.  
  18.         </property>
  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">
		<property name="id" value="1"></property>
		<property name="name" value="Raj"></property>
		<property name="hobbies">
			<array>
				<value>Playing cricket</value>
				<value>Coding</value>
				<value>Reading books</value>
			</array>

		</property>
	</bean>
</beans>

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 SetterDI class

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

  1. package com.kb.di;
  2.  
  3. import org.springframework.context.ApplicationContext;
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;
  5.  
  6. public class SetterDI  {
  7.    
  8.     public static void main(String[] args) {
  9.         ApplicationContext applicationContext=new ClassPathXmlApplicationContext("beans.xml");  
  10.         Person person = (Person)applicationContext.getBean("person");
  11.         person.showHobbies();
  12.    
  13.     }
  14.  
  15. }
package com.kb.di;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

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

}

Run the SetterDI class and see the output as below

Download this project SetterDIWithArrayOfString.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