欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 房产 > 建筑 > 2_Spring【IOC容器中获取组件Bean】

2_Spring【IOC容器中获取组件Bean】

2025/5/19 6:16:06 来源:https://blog.csdn.net/hx_521/article/details/148052377  浏览:    关键词:2_Spring【IOC容器中获取组件Bean】

Spring中IOC容器中获取组件Bean

实体类

//接口
public interface TestDemo {public void doSomething();
}
// 实现类
public class HappyComponent implements TestDemo {public void doSomething() {System.out.println("HappyComponent is doing something...");}
}

创建Bean配置文件

spring-03.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"><!--    组件信息做ioc配置 ->applicationContext读取->实例化对象--><bean id="happyComponent" class="com.atguigu.ioc_03.HappyComponent"/>
</beans>

IOC容器中获取组件Bean

    /*** 在IOC容器中获取组件Bean*/@Testpublic void getBeanFormIocTest() {
//        1.创建IOC容器ClassPathXmlApplicationContext applicationContext1 = new ClassPathXmlApplicationContext();applicationContext1.setConfigLocations("spring-03.xml"); // 外部配置文件设置applicationContext1.refresh(); // 刷新容器 IOC、DI的动作
//        2.读取IOC容器的组件
//        方式一:直接根据BeanId获取 获取的是一个Object对象 需要强制转换[不推荐]HappyComponent happyComponent = (HappyComponent)applicationContext1.getBean("happyComponent");
//        方式二:根据BeanId和类型获取 获取的是一个指定类型的对象[推荐]HappyComponent happyComponent1 = applicationContext1.getBean("happyComponent", HappyComponent.class);
//        方式三:根据类型获取 获取的是一个指定类型的对象
//        TODO 根据bean的类型获取,同一个类型,在ioc容器中只能有一个bean!!!(如果ioc容器存在多个同类型的bean,会出现NoUniqueBeanDefinitionException[不唯一]异常)HappyComponent happyComponent2 = applicationContext1.getBean(HappyComponent.class);
//        3.使用组件happyComponent.doSomething();happyComponent1.doSomething();happyComponent2.doSomething();System.out.println(happyComponent == happyComponent1); // trueSystem.out.println(happyComponent == happyComponent2); // true
//        4.IOC的bean配置一定是实现类,但是可以根据接口类型获取值
//        getBean(,类型) 其中的类型判断采用  instanceof ioc容器的类型 == true  (接口与实现类之间是true的关系)
//        在实际业界使用这种方式,可以将部分逻辑抽离出来,封装工具,只留接口作为对外暴露的api,继承自该接口的直接实现类可以直接使用TestDemo testDemo = applicationContext1.getBean("happyComponent", TestDemo.class);TestDemo testDemo1 = applicationContext1.getBean(TestDemo.class); // 这样更简洁但是要注意 bean中同一类型只能有一个!!!testDemo.doSomething(); // HappyComponent is doing something...}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

热搜词