Spring - constructor-arg和property的使用示例

一、说明
java

   constructor-arg:经过构造函数注入。
   property:经过setter对应的方法注入。 app


二、constructor-arg的使用示例ide

   (1)、Model代码:函数

publicclassStudent {
privateInteger id;
privateString name;
privateList<String> dream;
privateMap<String, Integer> score;
privatebooleangraduation;
publicStudent() {
}
publicStudent(Integer id, String name, List<String> dream,
Map<String, Integer> score, booleangraduation) {
this.id = id;
this.name = name;
this.dream = dream;
this.score = score;
this.graduation = graduation;
}
@Override
publicString toString() {
return"Student [id="+ id + ", name="+ name + ", dream="+ dream
+ ", score="+ score + ", graduation="+ graduation + "]";
}
}

   (2)、xml配置:测试

<beanid="student"class="com.rc.sp.Student">
<constructor-argname="id"value="1"/>
<constructor-argname="name"value="student"/>
<constructor-argname="dream">
<list>
<value>soldier</value>
<value>scientist</value>
<value>pilot</value>
</list>
</constructor-arg>
<constructor-argname="score">
<map>
<entrykey="math"value="90"/>
<entrykey="english"value="85"/>
</map>
</constructor-arg>
<constructor-argname="graduation"value="false"/>
</bean>

说明:<constructor-arg name="id" value="1"/>也能够改为<constructor-arg index="0" value="1"/>方式;boolean的值既能够用0/1填充,也能够用true/false填充。this


三、property的使用示例spa

   (1)、Model代码:code

publicclassTeacher {
privateInteger id;
privateString name;
publicInteger getId() {
returnid;
}
publicvoidsetId(Integer id) {
this.id = id;
}
publicString getName() {
returnname;
}
publicvoidsetName(String name) {
this.name = name;
}
@Override
publicString toString() {
return"Teacher [id="+ id + ", name="+ name + "]";
}
}


   (2)、xml配置:xml

<beanid="teacher"class="com.rc.sp.Teacher">
<propertyname="id"value="1"></property>
<propertyname="name"value="teacher"></property>
</bean>


四、Testci

   (1)、测试代码:

publiccla***un {
publicstaticvoidmain(String[] args) {
ApplicationContext context = newClassPathXmlApplicationContext(
"applicationContext.xml");
Student student = (Student) context.getBean("student");
System.out.println(student);
Teacher teacher = (Teacher) context.getBean("teacher");
System.out.println(teacher);
}
}


   (2)、输出结果:

   Student [id=1, name=student, dream=[soldier, scientist, pilot],

       score={math=90, english=85}, graduation=false]


   Teacher [id=1, name=teacher]

相关文章
相关标签/搜索