Spring整理 --String int List Set Map Array 普通属性注入 属性编辑器

model:

Bean1:

package com.bjpowernode.spring;


import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Set;


public class Bean1 {


private String strValue;

private int intValue;

private List listValue;

private Set setValue;

private String[] arrayValue;

private Map mapValue;

private Date dateValue;


public String getStrValue() {
return strValue;
}


public void setStrValue(String strValue) {
this.strValue = strValue;
}


public int getIntValue() {
return intValue;
}


public void setIntValue(int intValue) {
this.intValue = intValue;
}


public List getListValue() {
return listValue;
}


public void setListValue(List listValue) {
this.listValue = listValue;
}


public Set getSetValue() {
return setValue;
}


public void setSetValue(Set setValue) {
this.setValue = setValue;
}


public String[] getArrayValue() {
return arrayValue;
}


public void setArrayValue(String[] arrayValue) {
this.arrayValue = arrayValue;
}


public Map getMapValue() {
return mapValue;
}


public void setMapValue(Map mapValue) {
this.mapValue = mapValue;
}


public Date getDateValue() {
return dateValue;
}


public void setDateValue(Date dateValue) {
this.dateValue = dateValue;
}
}

===========================================================================

Bean2:

package com.bjpowernode.spring;


public class Bean2 {


private Bean3 bean3;

private Bean4 bean4;

private Bean5 bean5;


public Bean3 getBean3() {
return bean3;
}


public void setBean3(Bean3 bean3) {
this.bean3 = bean3;
}


public Bean4 getBean4() {
return bean4;
}


public void setBean4(Bean4 bean4) {
this.bean4 = bean4;
}


public Bean5 getBean5() {
return bean5;
}


public void setBean5(Bean5 bean5) {
this.bean5 = bean5;
}
}

===================================================================

Bean3:

package com.bjpowernode.spring;


public class Bean3 {


private int id;

private String name;

private String sex;


public int getId() {
return id;
}


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


public String getName() {
return name;
}


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


public String getSex() {
return sex;
}


public void setSex(String sex) {
this.sex = sex;
}
}

=============================================

Bean4:

package com.bjpowernode.spring;


public class Bean4 {

private int id;

private String name;

private String sex;


private int age;


public int getId() {
return id;
}


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


public String getName() {
return name;
}


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


public String getSex() {
return sex;
}


public void setSex(String sex) {
this.sex = sex;
}


public int getAge() {
return age;
}


public void setAge(int age) {
this.age = age;
}
}

==========================================

Bean5:

package com.bjpowernode.spring;


public class Bean5 {

private String password;


public String getPassword() {
return password;
}


public void setPassword(String password) {
this.password = password;
}

}

UtilDatePropertyEditor://属性编辑器

package com.bjpowernode.spring;


import java.beans.PropertyEditorSupport;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;


/**
 * java.util.Date属性编辑器
 * @author Administrator
 *
 */
public class UtilDatePropertyEditor extends PropertyEditorSupport {


private String pattern;

@Override
public void setAsText(String text) throws IllegalArgumentException {
System.out.println("---UtilDatePropertyEditor.setAsText()--->" + text);
try {
Date date = new SimpleDateFormat(pattern).parse(text);
this.setValue(date);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
throw new IllegalArgumentException(text);
}

}


public void setPattern(String pattern) {
this.pattern = pattern;
}



}

applicationContext-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"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd" default-lazy-init="true">
<bean id="bean1" class="com.bjpowernode.spring.Bean1">
<property name="strValue" value="Hello_Spring"/>

<!-- 
<property name="intValue" value="123"/>
-->
<property name="intValue">
<value>123</value>
</property>

<property name="listValue">
<list>
<value>list1</value>
<value>list2</value>
</list>
</property>
<property name="setValue">
<set>
<value>set1</value>
<value>set2</value>
</set>
</property>
<property name="arrayValue">
<list>
<value>array1</value>
<value>array2</value>
</list>
</property>
<property name="mapValue">
<map>
<entry key="k1" value="v1"/>
<entry key="k2" value="v2"/>
</map>
</property>
<property name="dateValue" value="2009年12月14日" />
</bean>

<bean id="bean2" class="com.bjpowernode.spring.Bean2">
<property name="bean3" ref="bean3"/>
<property name="bean4">
<ref bean="bean4"/>
</property>
<property name="bean5" ref="bean5"/>
</bean>

<!-- 
<bean id="bean3" class="com.bjpowernode.spring.Bean3">
<property name="id" value="100"/>
<property name="name" value="zhangsan"/>
<property name="sex" value="nan"/>
</bean>

<bean id="bean4" class="com.bjpowernode.spring.Bean4">
<property name="id" value="100"/>
<property name="name" value="zhangsan"/>
<property name="sex" value="nan"/>
<property name="age">
<value>90</value>
</property>
</bean>
-->
 
<bean id="bean5" class="com.bjpowernode.spring.Bean5">
<property name="password" value="123"/>
</bean>
</beans>


applicationContext-common.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:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd" default-lazy-init="true">
<bean id="AbstractBean" abstract="true">
<property name="id" value="100"/>
<property name="name" value="zhangsan"/>
<property name="sex" value="nan"/>
</bean>

<bean id="bean3" class="com.bjpowernode.spring.Bean3" parent="AbstractBean"/>

<bean id="bean4" class="com.bjpowernode.spring.Bean4" parent="AbstractBean">
<property name="age">
<value>90</value>
</property>
</bean>
</beans>


applicationContext-editor.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:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
<bean id="customEditors" class="org.springframework.beans.factory.config.CustomEditorConfigurer">
<property name="customEditors">
<map>
<entry key="java.util.Date">
<bean class="com.bjpowernode.spring.UtilDatePropertyEditor">
<property name="pattern" value="yyyy年MM月dd日"/>
</bean>

</entry>
</map>
</property>
</bean>

<!-- 
<bean id="utilDatePropertyEditor" class="com.bjpowernode.spring.UtilDatePropertyEditor">

</bean>
-->
</beans>

测试类:

InjectionTest:

package test;


import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext;


import com.bjpowernode.spring.Bean1;
import com.bjpowernode.spring.Bean2;


import junit.framework.TestCase;


public class InjectionTest extends TestCase {


private BeanFactory factory;

@Override
protected void setUp() throws Exception {
//String[] configLocations = new String[]{"applicationContext.xml", "applicationContext-editor.xml"};
//factory = new ClassPathXmlApplicationContext("applicationContext.xml");
//factory = new ClassPathXmlApplicationContext(configLocations);

factory = new ClassPathXmlApplicationContext("applicationContext-*.xml");
}


@Override
protected void tearDown() throws Exception {
///
}


public void testInjection1() {
//Bean1 bean1 = new Bean1();
Bean1 bean1 = (Bean1)factory.getBean("bean1");
System.out.println("bean1.strValue=" + bean1.getStrValue());
System.out.println("bean1.intValue=" + bean1.getIntValue());
System.out.println("bean1.listValue=" + bean1.getListValue());
System.out.println("bean1.setValue=" + bean1.getSetValue());
System.out.println("bean1.arrayValue=" + bean1.getArrayValue());
System.out.println("bean1.mapValue=" + bean1.getMapValue());
System.out.println("bean1.dateValue=" + bean1.getDateValue());
}

public void testInjection2() {
Bean2 bean2 = (Bean2)factory.getBean("bean2");
System.out.println("bean2.bean3.id=" + bean2.getBean3().getId());
System.out.println("bean2.bean3.name=" + bean2.getBean3().getName());
System.out.println("bean2.bean3.sex=" + bean2.getBean3().getSex());
System.out.println("bean2.bean4.id=" + bean2.getBean4().getId());
System.out.println("bean2.bean4.name=" + bean2.getBean4().getName());
System.out.println("bean2.bean4.sex=" + bean2.getBean4().getSex());
System.out.println("bean2.bean4.age=" + bean2.getBean4().getAge());
System.out.println("bean2.bean5.password=" + bean2.getBean5().getPassword());
}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值