spring-注入array集合
生活随笔
收集整理的這篇文章主要介紹了
spring-注入array集合
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
一.創建項目
?? ?項目名稱:spring092901
二.添加jar包
?? ?commons-logging.jar
?? ?junit-4.4.jar
?? ?log4j.jar
?? ?spring-beans-3.2.0.RELEASE.jar
?? ?spring-context-3.2.0.RELEASE.jar
?? ?spring-core-3.2.0.RELEASE.jar
?? ?spring-expression-3.2.0.RELEASE.jar
三.添加配置文件
?? ?1.在項目中創建conf目錄
?? ??? ?/conf
?? ?2.在conf目錄下添加配置文件
?? ??? ?配置文件名稱:applicationContext.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"
?? ??? ??????? xmlns:p="http://www.springframework.org/schema/p"
?? ??? ??????? xmlns:util="http://www.springframework.org/schema/util"
?? ??? ??????? xsi:schemaLocation="
?? ??? ?http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
?? ??? ?http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
?? ??? ??? ?
?? ??? ?</beans>
?? ??? ?
四.創建業務bean
?? ?1.在src下創建包
?? ??? ?包名:cn.jbit.spring092901.collection
?? ?2.在包下創建bean
?? ??? ?bean名稱:ArrayBean.java
?? ??? ?bean內容:
?? ??? ?public class ArrayBean {
?? ??? ??? ?private String[] strs;
?? ??? ?
?? ??? ??? ?public String[] getStrs() {
?? ??? ??? ??? ?return strs;
?? ??? ??? ?}
?? ??? ?
?? ??? ??? ?public void setStrs(String[] strs) {
?? ??? ??? ??? ?this.strs = strs;
?? ??? ??? ?}
?? ??? ?}
?? ?3.在核心配置文件中配置bean
?? ??? ?<bean id="arraybean" class="cn.jbit.spring092901.collection.ArrayBean">
?? ??? ??? ?<property name="strs">
?? ??? ??? ??? ?<array>
?? ??? ??? ??? ??? ?<value>中國</value>
?? ??? ??? ??? ??? ?<value>古埃及</value>
?? ??? ??? ??? ??? ?<value>古巴比倫</value>
?? ??? ??? ??? ??? ?<value>古印度</value>
?? ??? ??? ??? ?</array>
?? ??? ??? ?</property>
?? ??? ?</bean>
五.測試
?? ?1.在項目中創建test目錄
?? ??? ?/test
?? ?2.在test目錄下創建包
?? ??? ?cn.jbit.spring092901.collection
?? ?3.在包下 創建測試類
?? ??? ?類名:ArrayBeanTest.java
?? ??? ?類內容:
?? ??? ?public class ArrayBeanTest {
?? ??? ??? ?@Test
?? ??? ??? ?public void testArrayBean(){
?? ??? ??? ??? ?ClassPathXmlApplicationContext cpac = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
?? ??? ??? ??? ?ArrayBean ab = (ArrayBean) cpac.getBean("arraybean");
?? ??? ??? ??? ?for (Object object : ab.getStrs()) {
?? ??? ??? ??? ??? ?System.out.println(object);
?? ??? ??? ??? ?}
?? ??? ??? ?}
?? ?項目名稱:spring092901
二.添加jar包
?? ?commons-logging.jar
?? ?junit-4.4.jar
?? ?log4j.jar
?? ?spring-beans-3.2.0.RELEASE.jar
?? ?spring-context-3.2.0.RELEASE.jar
?? ?spring-core-3.2.0.RELEASE.jar
?? ?spring-expression-3.2.0.RELEASE.jar
三.添加配置文件
?? ?1.在項目中創建conf目錄
?? ??? ?/conf
?? ?2.在conf目錄下添加配置文件
?? ??? ?配置文件名稱:applicationContext.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"
?? ??? ??????? xmlns:p="http://www.springframework.org/schema/p"
?? ??? ??????? xmlns:util="http://www.springframework.org/schema/util"
?? ??? ??????? xsi:schemaLocation="
?? ??? ?http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
?? ??? ?http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
?? ??? ??? ?
?? ??? ?</beans>
?? ??? ?
四.創建業務bean
?? ?1.在src下創建包
?? ??? ?包名:cn.jbit.spring092901.collection
?? ?2.在包下創建bean
?? ??? ?bean名稱:ArrayBean.java
?? ??? ?bean內容:
?? ??? ?public class ArrayBean {
?? ??? ??? ?private String[] strs;
?? ??? ?
?? ??? ??? ?public String[] getStrs() {
?? ??? ??? ??? ?return strs;
?? ??? ??? ?}
?? ??? ?
?? ??? ??? ?public void setStrs(String[] strs) {
?? ??? ??? ??? ?this.strs = strs;
?? ??? ??? ?}
?? ??? ?}
?? ?3.在核心配置文件中配置bean
?? ??? ?<bean id="arraybean" class="cn.jbit.spring092901.collection.ArrayBean">
?? ??? ??? ?<property name="strs">
?? ??? ??? ??? ?<array>
?? ??? ??? ??? ??? ?<value>中國</value>
?? ??? ??? ??? ??? ?<value>古埃及</value>
?? ??? ??? ??? ??? ?<value>古巴比倫</value>
?? ??? ??? ??? ??? ?<value>古印度</value>
?? ??? ??? ??? ?</array>
?? ??? ??? ?</property>
?? ??? ?</bean>
五.測試
?? ?1.在項目中創建test目錄
?? ??? ?/test
?? ?2.在test目錄下創建包
?? ??? ?cn.jbit.spring092901.collection
?? ?3.在包下 創建測試類
?? ??? ?類名:ArrayBeanTest.java
?? ??? ?類內容:
?? ??? ?public class ArrayBeanTest {
?? ??? ??? ?@Test
?? ??? ??? ?public void testArrayBean(){
?? ??? ??? ??? ?ClassPathXmlApplicationContext cpac = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
?? ??? ??? ??? ?ArrayBean ab = (ArrayBean) cpac.getBean("arraybean");
?? ??? ??? ??? ?for (Object object : ab.getStrs()) {
?? ??? ??? ??? ??? ?System.out.println(object);
?? ??? ??? ??? ?}
?? ??? ??? ?}
?? ??? ?}
本文轉自 ?素顏豬 ?51CTO博客,原文鏈接:http://blog.51cto.com/suyanzhu/1559506
總結
以上是生活随笔為你收集整理的spring-注入array集合的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: WindowsPhone7开发简单豆瓣网
- 下一篇: HTTP事务的延迟—TCP的影响