不使用注解

Boss类代码:
package xiao.lei.entity;

public class Boss {
      private Office office;
      private Car car;
     
      public Office getOffice() {
            return office;
      }

      public void setOffice(Office office) {
            this.office = office;
      }
     
      public Car getCar() {
            return car;
      }

      public void setCar(Car car) {
            this.car = car;
      }

      @Override
      public String toString() {
            return  "car:"+car+"/n"+"office:" + office;
      }

}
Car类代码:
package xiao.lei.entity;

public class Car {
      private String brand;
      private String  price;
     
      public String getBrand() {
            return brand;
      }

      public void setBrand(String brand) {
            this.brand = brand;
      }

      public String getPrice() {
            return price;
      }

      public void setPrice(String price) {
            this.price = price;
      }
     
}
Office代码:
package xiao.lei.entity;

public class Office {
      private String officeNo;

      public String getOfficeNo() {
            return officeNo;
      }

      public void setOfficeNo(String officeNo) {
            this.officeNo = officeNo;
      }
     
}
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-2.5.xsd">      
<bean id="boss" class="xiao.lei.entity.Boss">
      <property name="car" ref="car" />
      <property name="office" ref="office" />
</bean>
<bean id="office" class="xiao.lei.entity.Office">
      <property name="officeNo" value="002"></property>
</bean>

<bean id="car" class="xiao.lei.entity.Car" scope="singleton">
      <property name="brand" value="红旗 CA72" />
        <property name="price" value="20000" />
</bean>
</beans>

测试代码:
package xiao.lei.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationC ontext;

import xiao.lei.entity.Boss;

public class AnnoloCTest {

      public static void main(String[] args) {
            // TODO Auto-generated method stub
            String[] locations={"xiao/lei/entity/beans.xml"};
            ApplicationContext ctx=new ClassPathXmlApplicationC ontext(locations);
            Boss boss=(Boss)ctx.getBean("boss");
            System.out.println(boss);
      }

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值