Spring实战——byType规则

一 配置

<?xml version="1.0" encoding="GBK"?>
<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-4.0.xsd">
     <!-- 指定使用byType策略,Spring会根据setter方法的参数类型与Bean的类型进行匹配 -->
     <bean id="chinese"  class="org.crazyit.app.service.impl.Chinese"
           autowire="byType"/>
     <bean id="gunDog"  class="org.crazyit.app.service.impl.GunDog">
           <property name="name" value="wangwang"/>
     </bean>
     <!-- 配置petDog Bean,其实现类也实现了Dog接口 -->
     <bean id="petDog"  class="org.crazyit.app.service.impl.PetDog"
           autowire-candidate="false">
           <property name="name" value="ohoh"/>
     </bean>
</beans>

二 接口

Dog

package org.crazyit.app.service;

public interface Dog
{
     public String run();
}

Person

package org.crazyit.app.service;

public interface Person
{
     public void test();
}

三 实现类

Chinese

package org.crazyit.app.service.impl;
import org.crazyit.app.service.*;

public class Chinese implements Person
{
     private Dog dog;
     // dog的setter方法
     public void setGunDog(Dog dog)
     {
           this.dog = dog;
     }
     public Dog getDog()
     {
           return this.dog;
     }
     public void test()
     {
           System.out.println("我是一个普通人,养了一条狗:"
                + getDog().run());
     }
}

Gundog

package org.crazyit.app.service.impl;
import org.crazyit.app.service.*;

public class GunDog implements Dog
{
     private String name;
     public void setName(String name)
     {
           this.name = name;
     }
     public String getName()
     {
           return name;
     }
     public String run()
     {
           return "我是一只叫" + getName()
                + "的猎犬,奔跑迅速..." ;
     }
}

PetDog

package org.crazyit.app.service.impl;
import org.crazyit.app.service.*;

public class PetDog implements Dog
{
     private String name;
     public void setName(String name)
     {
           this.name = name;
     }
     public String getName()
     {
           return name;
     }
     public String run()
     {
           return "我是一只叫" + getName()
                + "的宠物狗,很可爱..." ;
     }
}

四 测试类

package lee;


import org.springframework.context.*;
import org.springframework.context.support.*;


import org.crazyit.app.service.*;

public class SpringTest
{
    public static void main(String[] args)
    {
        // 以类加载路径下的beans.xml作为配置文件,创建Spring容器
        ApplicationContext ctx = new
            ClassPathXmlApplicationContext("beans.xml");
        Person p = ctx.getBean("chinese" , Person.class);
        p.test();
    }
}

五 测试结果

我是一个普通人,养了一条狗:我是一只叫wangwang的猎犬,奔跑迅速...

 

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值