Spring的xml注入实例

一、xml注入

1、实例整体结构如下

          
    Boss.java
package com.model;

public class Boss {
	Car car;
	Office office;
	public Car getCar() {
		return car;
	}
	public void setCar(Car car) {
		this.car = car;
	}
	public Office getOffice() {
		return office;
	}
	public void setOffice(Office office) {
		this.office = office;
	}
	
}
Car.java
package com.model;

public class Car {
	String brand;
	int price;
	public String getBrand() {
		return brand;
	}
	public void setBrand(String brand) {
		this.brand = brand;
	}
	public int getPrice() {
		return price;
	}
	public void setPrice(int price) {
		this.price = price;
	}
}
Office.java
package com.model;

public class Office {
	String officeNo;

	public String getOfficeNo() {
		return officeNo;
	}

	public void setOfficeNo(String officeNo) {
		this.officeNo = officeNo;
	}
}
test
package test;

import org.junit.Test;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.model.Boss;

/**
 * @author smallstrong
 *
 */
public class UserServiceTest {

	@Test
	public void testAdd() throws Exception {

		ApplicationContext applicationcontext = new ClassPathXmlApplicationContext("beans.xml");
		Boss boss = (Boss)applicationcontext.getBean("boss");
		System.out.println(boss.getCar().getBrand());
<span style="white-space:pre">		</span>System.out.println(boss.getCar().getPrice());
<span style="white-space:pre">		</span>System.out.println(boss.getOffice().getOfficeNo());
	}

}
beans.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.xsd">

    <bean id="office" class="com.model.Office">   
        <property name="officeNo" value="002"/>   
    </bean>   
    <bean id="car" class="com.model.Car">   
        <property name="brand" value=" 红旗 CA72"/>   
        <property name="price" value="2000"/>   
    </bean>  
    <bean id="boss" class="com.model.Boss">   
        <property name="car" ref="car"/>   
        <property name="office" ref="office"/>   
    </bean>   
   
</beans>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值