#15.스프링DI(value태그를 이용한주입)
Simple
Value Injection
<!--[if !supportLists]-->n
<!--[endif]-->빈 정의 XML 파일에서 property 태그의 value 태그로 값을 지정하며 String으로 값을 읽는다.
<!--[if !supportLists]-->n
<!--[endif]-->property의 value를 주입 받는 빈에서는 setter를 만들어야
한다.
[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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd">
<bean name="sample"
class="onj.value.injection.ValueInjectionExam">
<property
name="name">
<value>onj</value>
</property>
<property
name="age">
<value>6</value>
</property>
</bean>
</beans>
[자바 코드]
private String
name;
private String
age;
//빈 정의 XML에서
name이라는 Property의 value
값을 주입받음
public void setName(String name) {
this.name = name; }
//빈 정의 XML에서
age라는 Property의 value 값을
주입받음
public void setAge(String age) {
this.age = age; }
댓글 없음:
댓글 쓰기