봄-컬렉션 주입
다음을 사용하여 기본 데이터 유형을 구성하는 방법을 보았습니다. value 속성 및 객체 참조 refBean 구성 파일에있는 <property> 태그의 속성. 두 경우 모두 단일 값을 빈에 전달하는 작업을 처리합니다.
이제 List, Set, Map 및 Properties와 같은 Java Collection 유형과 같은 복수 값을 전달하려면 어떻게해야합니까? 상황을 처리하기 위해 Spring은 다음과 같은 네 가지 유형의 컬렉션 구성 요소를 제공합니다.
Sr. 아니요 | 요소 및 설명 |
---|---|
1 | <list> 이것은 배선, 즉 값 목록을 삽입하여 중복을 허용하는 데 도움이됩니다. |
2 | <set> 이것은 값 세트를 연결하는 데 도움이되지만 중복은 없습니다. |
삼 | <map> 이것은 이름과 값이 모든 유형이 될 수있는 이름-값 쌍 모음을 삽입하는 데 사용할 수 있습니다. |
4 | <props> 이름과 값이 모두 문자열 인 이름-값 쌍 모음을 삽입하는 데 사용할 수 있습니다. |
<list> 또는 <set>을 사용하여 java.util.Collection 또는 array.
(a) 컬렉션의 직접 값 전달 및 (b) 컬렉션 요소 중 하나로 빈 참조 전달 두 가지 상황이 발생합니다.
예
작동하는 Eclipse IDE를 준비하고 다음 단계를 수행하여 Spring 애플리케이션을 작성해 보겠습니다.
단계 | 기술 |
---|---|
1 | 이름이 SpringExample 인 프로젝트를 만들고 아래에 com.tutorialspoint 패키지를 만듭니다 .src 생성 된 프로젝트의 폴더. |
2 | Spring Hello World 예제 장에 설명 된대로 Add External JARs 옵션을 사용하여 필요한 Spring 라이브러리를 추가하십시오 . |
삼 | com.tutorialspoint 패키지 아래에 Java 클래스 JavaCollection 및 MainApp을 작성하십시오 . |
4 | 아래에 Beans 구성 파일 Beans.xml을 만듭니다 .src 폴더. |
5 | 마지막 단계는 모든 Java 파일과 Bean 구성 파일의 내용을 만들고 아래 설명 된대로 응용 프로그램을 실행하는 것입니다. |
내용은 다음과 같습니다. JavaCollection.java 파일-
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;
}
}
다음은의 내용입니다 MainApp.java 파일-
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();
}
}
다음은 구성 파일입니다. Beans.xml 모든 유형의 컬렉션에 대한 구성이 있습니다.
<?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>
소스 및 빈 구성 파일 생성이 완료되면 애플리케이션을 실행 해 보겠습니다. 응용 프로그램에 문제가 없으면 다음 메시지가 인쇄됩니다.
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}
빈 참조 주입
다음 빈 정의는 컬렉션의 요소 중 하나로 빈 참조를 주입하는 방법을 이해하는 데 도움이됩니다. 다음 코드 스 니펫과 같이 참조와 값을 모두 함께 혼합 할 수도 있습니다.
<?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>
위의 빈 정의를 사용하려면 참조도 처리 할 수있는 방식으로 setter 메서드를 정의해야합니다.
null 및 빈 문자열 값 삽입
빈 문자열을 값으로 전달해야하는 경우 다음과 같이 전달할 수 있습니다.
<bean id = "..." class = "exampleBean">
<property name = "email" value = ""/>
</bean>
앞의 예제는 Java 코드와 동일합니다. exampleBean.setEmail ( "")
NULL 값을 전달해야하는 경우 다음과 같이 전달할 수 있습니다.
<bean id = "..." class = "exampleBean">
<property name = "email"><null/></property>
</bean>
앞의 예제는 Java 코드와 동일합니다. exampleBean.setEmail (null)