Java Spring Tutorial -- Bean Definition Inheritance
package com.zxl.spring;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpringApp13 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
ClassPathXmlApplicationContext context=new ClassPathXmlApplicationContext("SpringBeans.xml");
SpringBean childSpringBean=(SpringBean)context.getBean("chlidSpringBean");
System.out.println("---------using childSpringBean01 instance----------");
System.out.println(childSpringBean.getProperty01());
System.out.println(childSpringBean.getProperty02());
System.out.println(childSpringBean.getProperty03());
SpringBean parentSpringBean=(SpringBean)context.getBean("parentSpringBean");
System.out.println("---------using parentSpringBean01 instance----------");
System.out.println(parentSpringBean.getProperty01());
System.out.println(parentSpringBean.getProperty02());
System.out.println(parentSpringBean.getProperty03());
context.close();
}
}
package com.zxl.spring;
public class SpringBean {
private String property01;
private String property02;
private String property03;
public String getProperty01() {
return property01;
}
public void setProperty01(String property01) {
this.property01 = property01;
}
public String getProperty02() {
return property02;
}
public void setProperty02(String property02) {
this.property02 = property02;
}
public String getProperty03() {
return property03;
}
public void setProperty03(String property03) {
this.property03 = property03;
}
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd" >
<bean id="parentSpringBean" class="com.zxl.spring.SpringBean">
<property name="property01" value="property01:parentSpringBean_propert01_value" />
<property name="property02" value="property02:parentSpringBean_propert02_value" />
</bean>
<bean id="chlidSpringBean" class="com.zxl.spring.SpringBean" parent="parentSpringBean">
<property name="property01" value="property01:chlidSpringBean_propert01_value" />
<property name="property03" value="property03:chlidSpringBean_propert03_value" />
</bean>
</beans>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.