W3Schools Learner's Blog

W3Schools Programming knowledge summary website

div

12/12/2017

Constructor Injection with list Collection

We can inject list collection values by constructor in spring framework. There can be used three elements inside the constructor-arg element.
It can be:
  1. list
  2. set
  3. map
Each collection can have string based and non-string based values.
In this example, we are taking the example of Forum where One question can have multiple answers. There are three pages:
  1. Question.java
  2. applicationContext.xml
  3. Test.java
In this example, we are using list that can have duplicate elements, you may use set that have only unique elements. But, you need to change list to set in the applicationContext.xml file and List to Set in the Question.java file.
Question.java
This class contains three properties, two constructors and displayInfo() method that prints the information. Here, we are using List to contain the multiple answers.
  1. package com.javatpoint;  
  2.   
  3. import java.util.Iterator;  
  4. import java.util.List;  
  5.   
  6. public class Question {  
  7. private int id;  
  8. private String name;  
  9. private List<String> answers;  
  10.   
  11. public Question() {}  
  12. public Question(int id, String name, List<String> answers) {  
  13.     super();  
  14.     this.id = id;  
  15.     this.name = name;  
  16.     this.answers = answers;  
  17. }  
  18.   
  19. public void displayInfo(){  
  20.     System.out.println(id+" "+name);  
  21.     System.out.println("answers are:");  
  22.     Iterator<String> itr=answers.iterator();  
  23.     while(itr.hasNext()){  
  24.         System.out.println(itr.next());  
  25.     }  
  26. }  
  27.   
  28. }  
applicationContext.xml
The list element of constructor-arg is used here to define the list.
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans  
  3.     xmlns="http://www.springframework.org/schema/beans"  
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  5.     xmlns:p="http://www.springframework.org/schema/p"  
  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  7.  http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">  
  8.   
  9. <bean id="que" class="com.javatpoint.Question">  
  10. <constructor-arg value="111"></constructor-arg>  
  11. <constructor-arg value="What is java?"></constructor-arg>  
  12. <constructor-arg>  
  13. <list>  
  14. <value>Java is a programming language</value>  
  15. <value>Java is a Platform</value>  
  16. <value>Java is an Island of Indonasia</value>  
  17. </list>  
  18. </constructor-arg>  
  19. </bean>  
  20.   
  21. </beans>  

Test.java
This class gets the bean from the applicationContext.xml file and calls the displayInfo method.
  1. package com.javatpoint;  
  2.   
  3. import org.springframework.beans.factory.BeanFactory;  
  4. import org.springframework.beans.factory.xml.XmlBeanFactory;  
  5. import org.springframework.core.io.ClassPathResource;  
  6. import org.springframework.core.io.Resource;  
  7.   
  8. public class Test {  
  9. public static void main(String[] args) {  
  10.     Resource r=new ClassPathResource("applicationContext.xml");  
  11.     BeanFactory factory=new XmlBeanFactory(r);  
  12.       
  13.     Question q=(Question)factory.getBean("que");  
  14.     q.displayInfo();  
  15.       
  16. }  
  17. }  

No comments:

Post a Comment

Note: only a member of this blog may post a comment.