p 네임스페이스 이용하기
p:변수명-ref="객체이름/아이디" p:변수명="설정할값"
Bean의 프로퍼티는 해당 Bean의 속성 값
Property 네임스페이스를 사용하면 Bean의 프로퍼티 값을 XML 파일에서 직접 지정할 수 있다.
<bean id="tv" class="polymorphism.SamsungTV" p:speaker-ref="sony"
p:price="7777777" />
<bean id="sony" class="polymorphism.SonySpeaker"></bean>
<bean id="apple" class="polymorphism.AppleSpeaker"></bean>
'JAVA > Spring' 카테고리의 다른 글
Spring boot, thymeleaf static 파일 인식오류, 404에러 (0) | 2023.04.17 |
---|---|
error setting null for parameter #n (0) | 2023.04.12 |
javax.annotation.Resource import 안될때 (0) | 2023.04.12 |
java.lang.IllegalArgumentException: error at ::0 can't find referenced pointcut allPointcut참조된 포인트컷을 찾을 수 없습니다 (0) | 2023.04.12 |
spring-context 4.1.1.RELEASE 란? (0) | 2023.04.02 |