电脑知识|欧美黑人一区二区三区|软件|欧美黑人一级爽快片淫片高清|系统|欧美黑人狂野猛交老妇|数据库|服务器|编程开发|网络运营|知识问答|技术教程文章 - 好吧啦网

您的位置:首頁技術文章
文章詳情頁

淺談Spring中@Import注解的作用和使用

瀏覽:40日期:2023-09-04 11:54:55

@Import用來導入@Configuration注解的配置類、聲明@Bean注解的bean方法、導入ImportSelector的實現類或導入ImportBeanDefinitionRegistrar的實現類。

@Import注解的作用

查看Import注解源碼

/** * Indicates one or more {@link Configuration @Configuration} classes to import. * * <p>Provides functionality equivalent to the {@code <import/>} element in Spring XML. * Only supported for classes annotated with {@code @Configuration} or declaring at least * one {@link Bean @Bean} method, as well as {@link ImportSelector} and * {@link ImportBeanDefinitionRegistrar} implementations. * * <p>{@code @Bean} definitions declared in imported {@code @Configuration} classes * should be accessed by using {@link org.springframework.beans.factory.annotation.Autowired @Autowired} * injection. Either the bean itself can be autowired, or the configuration class instance * declaring the bean can be autowired. The latter approach allows for explicit, * IDE-friendly navigation between {@code @Configuration} class methods. * * <p>May be declared at the class level or as a meta-annotation. * * <p>If XML or other non-{@code @Configuration} bean definition resources need to be * imported, use {@link ImportResource @ImportResource} * * @author Chris Beams * @since 3.0 * @see Configuration * @see ImportSelector * @see ImportResource */@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface Import { /** * The @{@link Configuration}, {@link ImportSelector} and/or * {@link ImportBeanDefinitionRegistrar} classes to import. */ Class<?>[] value();}

分析類注釋得出結論:

聲明一個bean 導入@Configuration注解的配置類 導入ImportSelector的實現類 導入ImportBeanDefinitionRegistrar的實現類

@Import注解的使用

聲明一個bean

package com.example.demo.bean;public class TestBean1 {}package com.example.demo;import com.example.demo.bean.TestBean1;import org.springframework.context.annotation.Configuration;import org.springframework.context.annotation.Import;@Import({TestBean1.class})@Configurationpublic class AppConfig {}

導入@Configuration注解的配置類

package com.example.demo.bean;public class TestBean2 {}package com.example.demo.bean;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Configurationpublic class TestConfig { @Bean public TestBean2 getTestBean2(){ return new TestBean2(); }}package com.example.demo;import com.example.demo.bean.TestBean1;import com.example.demo.bean.TestConfig;import org.springframework.context.annotation.Configuration;import org.springframework.context.annotation.Import;@Import({TestBean1.class,TestConfig.class})@Configurationpublic class AppConfig {}

導入ImportSelector的實現類

package com.example.demo.bean;public class TestBean3 {}package com.example.demo.bean;import org.springframework.context.annotation.ImportSelector;import org.springframework.core.type.AnnotationMetadata;public class TestImportSelector implements ImportSelector { @Override public String[] selectImports(AnnotationMetadata importingClassMetadata) { return new String[]{'com.example.demo.bean.TestBean3'}; }}package com.example.demo;import com.example.demo.bean.TestBean1;import com.example.demo.bean.TestConfig;import com.example.demo.bean.TestImportSelector;import org.springframework.context.annotation.Configuration;import org.springframework.context.annotation.Import;@Import({TestBean1.class,TestConfig.class,TestImportSelector.class})@Configurationpublic class AppConfig {}

導入ImportBeanDefinitionRegistrar的實現類

package com.example.demo.bean;public class TestBean4 {}package com.example.demo.bean;import org.springframework.beans.factory.support.BeanDefinitionRegistry;import org.springframework.beans.factory.support.RootBeanDefinition;import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;import org.springframework.core.type.AnnotationMetadata;public class TestImportBeanDefinitionRegistrar implements ImportBeanDefinitionRegistrar { @Override public void registerBeanDefinitions(AnnotationMetadata importingClassMetadata, BeanDefinitionRegistry registry) { RootBeanDefinition rootBeanDefinition = new RootBeanDefinition(TestBean4.class); registry.registerBeanDefinition('TestBean4', rootBeanDefinition); }}package com.example.demo;import com.example.demo.bean.TestBean1;import com.example.demo.bean.TestConfig;import com.example.demo.bean.TestImportBeanDefinitionRegistrar;import com.example.demo.bean.TestImportSelector;import org.springframework.context.annotation.Configuration;import org.springframework.context.annotation.Import;@Import({TestBean1.class,TestConfig.class,TestImportSelector.class,TestImportBeanDefinitionRegistrar.class})@Configurationpublic class AppConfig {}

最后,我們來看下導入結果:

package com.example.demo;import org.junit.Test;import org.junit.runner.RunWith;import org.springframework.boot.test.context.SpringBootTest;import org.springframework.context.annotation.AnnotationConfigApplicationContext;import org.springframework.test.context.junit4.SpringRunner;import java.util.Arrays;@RunWith(SpringRunner.class)@SpringBootTestpublic class DemoApplicationTests { @Test public void test() { AnnotationConfigApplicationContext annotationConfigApplicationContext = new AnnotationConfigApplicationContext(AppConfig.class); String[] beanDefinitionNames = annotationConfigApplicationContext.getBeanDefinitionNames(); System.out.println('--------------------------------------------------------'); for (String beanDefinitionName: beanDefinitionNames) { System.out.println(beanDefinitionName); } System.out.println('--------------------------------------------------------'); }}

打印結果如下:

--------------------------------------------------------org.springframework.context.annotation.internalConfigurationAnnotationProcessororg.springframework.context.annotation.internalAutowiredAnnotationProcessororg.springframework.context.annotation.internalRequiredAnnotationProcessororg.springframework.context.annotation.internalCommonAnnotationProcessororg.springframework.context.event.internalEventListenerProcessororg.springframework.context.event.internalEventListenerFactoryappConfigcom.example.demo.bean.TestBean1com.example.demo.bean.TestConfiggetTestBean2com.example.demo.bean.TestBean3TestBean4--------------------------------------------------------

可以看出TestBean1,TestBean2,TestBean3,TestBean4通過不同的4種導入方法被導入SpringIOC容器中。

到此這篇關于淺談Spring中@Import注解的作用和使用的文章就介紹到這了,更多相關Spring @Import注解內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!

標簽: Spring
相關文章:
主站蜘蛛池模板: 博客-悦享汽车品质生活 | 冷藏车厂家|冷藏车价格|小型冷藏车|散装饲料车厂家|程力专用汽车股份有限公司销售十二分公司 | 磁粉制动器|张力控制器|气胀轴|伺服纠偏控制器整套厂家--台灵机电官网 | 播音主持培训-中影人教育播音主持学苑「官网」-中国艺考界的贵族学校 | 螺纹三通快插接头-弯通快插接头-宁波舜驰气动科技有限公司 | 旋振筛|圆形摇摆筛|直线振动筛|滚筒筛|压榨机|河南天众机械设备有限公司 | 客服外包专业服务商_客服外包中心_网萌科技 | 膏方加工_丸剂贴牌_膏滋代加工_湖北康瑞生物科技有限公司 | 安驭邦官网-双向万能直角铣头,加工中心侧铣头,角度头[厂家直销] 闸阀_截止阀_止回阀「生产厂家」-上海卡比阀门有限公司 | 合肥防火门窗/隔断_合肥防火卷帘门厂家_安徽耐火窗_良万消防设备有限公司 | 禹城彩钢厂_钢结构板房_彩钢复合板-禹城泰瑞彩钢复合板加工厂 | 济南宣传册设计-画册设计_济南莫都品牌设计公司 | 湖州织里童装_女童男童中大童装_款式多尺码全_织里儿童网【官网】-嘉兴嘉乐网络科技有限公司 | 定制/定做衬衫厂家/公司-衬衫订做/订制价格/费用-北京圣达信 | 法兰螺母 - 不锈钢螺母制造厂家 - 万千紧固件--螺母街 | 扬尘在线监测系统_工地噪声扬尘检测仪_扬尘监测系统_贝塔射线扬尘监测设备「风途物联网科技」 | 高低温老化试验机-步入式/低温恒温恒湿试验机-百科 | 媒介云-全网整合营销_成都新闻媒体发稿_软文发布平台 | 【灵硕展览集团】展台展会设计_展览会展台搭建_展览展示设计一站式服务公司 | 检验科改造施工_DSA手术室净化_导管室装修_成都特殊科室建设厂家_医疗净化工程公司_四川华锐 | 离子色谱自动进样器-青岛艾力析实验科技有限公司 | Pos机办理_个人商户免费POS机申请-拉卡拉办理网 | 紫外可见光分光度计-紫外分光度计-分光光度仪-屹谱仪器制造(上海)有限公司 | 代理记账_免费注册公司_营业执照代办_资质代办-【乐财汇】 | ◆大型吹塑加工|吹塑加工|吹塑代加工|吹塑加工厂|吹塑设备|滚塑加工|滚塑代加工-莱力奇塑业有限公司 | 安徽千住锡膏_安徽阿尔法锡膏锡条_安徽唯特偶锡膏_卡夫特胶水-芜湖荣亮电子科技有限公司 | 大型果蔬切片机-水果冬瓜削皮机-洗菜机切菜机-肇庆市凤翔餐饮设备有限公司 | 立式_复合式_壁挂式智能化电伴热洗眼器-上海达傲洗眼器生产厂家 理化生实验室设备,吊装实验室设备,顶装实验室设备,实验室成套设备厂家,校园功能室设备,智慧书法教室方案 - 东莞市惠森教学设备有限公司 | 锤式粉碎机,医药粉碎机,锥式粉碎机-无锡市迪麦森机械制造有限公司 | 振动时效_振动时效仪_超声波冲击设备-济南驰奥机电设备有限公司 北京宣传片拍摄_产品宣传片拍摄_宣传片制作公司-现像传媒 | 北京网站建设首页,做网站选【优站网】,专注北京网站建设,北京网站推广,天津网站建设,天津网站推广,小程序,手机APP的开发。 | 聚氨酯催化剂K15,延迟催化剂SA-1,叔胺延迟催化剂,DBU,二甲基哌嗪,催化剂TMR-2,-聚氨酯催化剂生产厂家 | 杭州顺源过滤机械有限公司官网-压滤机_板框压滤机_厢式隔膜压滤机厂家 | 定制异形重型钢格栅板/钢格板_定做踏步板/排水沟盖板_钢格栅板批发厂家-河北圣墨金属制品有限公司 | 喷码机,激光喷码打码机,鸡蛋打码机,手持打码机,自动喷码机,一物一码防伪溯源-恒欣瑞达有限公司 | 东莞压铸厂_精密压铸_锌合金压铸_铝合金压铸_压铸件加工_东莞祥宇金属制品 | 碳纤维布-植筋胶-灌缝胶-固特嘉加固材料公司 | 阳光模拟试验箱_高低温试验箱_高低温冲击试验箱_快速温变试验箱|东莞市赛思检测设备有限公司 | 小型气象站_便携式自动气象站_校园气象站-竞道气象设备网 | 包装盒厂家_纸盒印刷_礼品盒定制-济南恒印包装有限公司 | HDPE土工膜,复合土工膜,防渗膜价格,土工膜厂家-山东新路通工程材料有限公司 |