Spring 的依赖注入应用代替工厂模式

接口

package FactoryExample;

public interface Human {
    void eat();
    void walk();
    void show();
}

实现

实现一

package FactoryExample;

public class Man implements Human {
    @Override
    public void eat() {
        System.out.println("男人吃饭,吃完饭打炮!");
    }

    @Override
    public void walk() {
        System.out.println("男人走路,走完路打不了炮!");
    }

    @Override
    public void show() {
        if (this.equals(null)) {
            System.out.println("空对象");
        } else {
            this.eat();
            this.walk();
        }
    }
}

实现二

package FactoryExample;

public class Women implements Human {
    @Override
    public void eat() {
        System.out.println("女人吃饭!吃完饭被干!");
    }

    @Override
    public void walk() {
        System.out.println("女人走路,和男人一样!");
    }

    @Override
    public void show() {
        if (this.equals(null)) {
            System.out.println("空对象");
        } else {
            this.eat();
            this.walk();
        }
    }
}

srping-config.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="man" class="FactoryExample.Man"/>
    <bean id="women" class="FactoryExample.Women"/>
</beans>

测试

package FactoryExample;

import org.apache.catalina.core.ApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext;

public class SrpingTest {
    public static void main(String[] args) {
        FileSystemXmlApplicationContext ctx = new FileSystemXmlApplicationContext("src/spring-config.xml");

        Human human = null;

        //返回 Object 类型 , 所以要加上 类型转换
        human = (Human) ctx.getBean("man");

        human.show();

        human = (Human) ctx.getBean("women");

        human.show();

    }
}

就是这样,我的可以使用,我不知道为什么可以使用,但是就是可以使用!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值