1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
public
class
Student {
private
Integer id;
private
String name;
private
List<String> dream;
private
Map<String, Integer> score;
private
boolean
graduation;
public
Student() {
}
public
Student(Integer id, String name, List<String> dream,
Map<String, Integer> score,
boolean
graduation) {
this
.id = id;
this
.name = name;
this
.dream = dream;
this
.score = score;
this
.graduation = graduation;
}
@Override
public
String toString() {
return
"Student [id="
+ id +
", name="
+ name +
", dream="
+ dream
+
", score="
+ score +
", graduation="
+ graduation +
"]"
;
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<
bean
id
=
"student"
class
=
"com.rc.sp.Student"
>
<
constructor-arg
name
=
"id"
value
=
"1"
/>
<
constructor-arg
name
=
"name"
value
=
"student"
/>
<
constructor-arg
name
=
"dream"
>
<
list
>
<
value
>soldier</
value
>
<
value
>scientist</
value
>
<
value
>pilot</
value
>
</
list
>
</
constructor-arg
>
<
constructor-arg
name
=
"score"
>
<
map
>
<
entry
key
=
"math"
value
=
"90"
/>
<
entry
key
=
"english"
value
=
"85"
/>
</
map
>
</
constructor-arg
>
<
constructor-arg
name
=
"graduation"
value
=
"false"
/>
</
bean
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
public
class
Teacher {
private
Integer id;
private
String name;
public
Integer getId() {
return
id;
}
public
void
setId(Integer id) {
this
.id = id;
}
public
String getName() {
return
name;
}
public
void
setName(String name) {
this
.name = name;
}
@Override
public
String toString() {
return
"Teacher [id="
+ id +
", name="
+ name +
"]"
;
}
}
|
1
2
3
4
|
<
bean
id
=
"teacher"
class
=
"com.rc.sp.Teacher"
>
<
property
name
=
"id"
value
=
"1"
></
property
>
<
property
name
=
"name"
value
=
"teacher"
></
property
>
</
bean
>
|
1
2
3
4
5
6
7
8
9
10
11
12
|
public
class
Run {
public
static
void
main(String[] args) {
ApplicationContext context =
new
ClassPathXmlApplicationContext(
"applicationContext.xml"
);
Student student = (Student) context.getBean(
"student"
);
System.out.println(student);
Teacher teacher = (Teacher) context.getBean(
"teacher"
);
System.out.println(teacher);
}
}
|