Skip to content

Commit b2833d7

Browse files
committed
commit
1 parent 985844a commit b2833d7

74 files changed

Lines changed: 195 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<beans xmlns="http://www.springframework.org/schema/beans"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xmlns:context="http://www.springframework.org/schema/context"
5+
xsi:schemaLocation="http://www.springframework.org/schema/beans
6+
http://www.springframework.org/schema/beans/spring-beans.xsd
7+
http://www.springframework.org/schema/context
8+
http://www.springframework.org/schema/context/spring-context.xsd">
9+
10+
<!-- setter ile deger atama -->
11+
<bean id="collections" class="com.spring.Collections">
12+
<!-- field'a deger atama -->
13+
<property name="name" value="Can"/>
14+
15+
<!-- listeye deger atama -->
16+
<property name="cars">
17+
<list>
18+
<value>Toyota</value>
19+
<value>BMW</value>
20+
<value>Mercedes</value>
21+
<value>Fiat</value>
22+
</list>
23+
</property>
24+
25+
<!-- mapa deger atama -->
26+
<property name="dictionary">
27+
<map>
28+
<entry key="book" value="kitap"/>
29+
<entry key="car" value="araba"/>
30+
<entry key="apple" value="elma"/>
31+
<entry key="pencil " value="kalem"/>
32+
</map>
33+
</property>
34+
</bean>
35+
</beans>
Binary file not shown.
Binary file not shown.
1.82 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
366 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
46.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)