• Spring


    前言

    @Import注解用来导入配置类或一些需要前置加载的类,其可以通过快速导入的方式实现把实例加入Spring的IOC容器中。


    普通类导入

    • 控制层
    @RestController
    @RequestMapping("/test")
    @Import(TestOne.class)
    public class TestController {
    public class TestController {
    
        @Autowired
        private TestInter testOne;
    
        @GetMapping(value = "/test")
        public String test(){
            return testOne.sayHello();
        }
    }
    
    • 接口
    public interface TestInter {
        String sayHello();
    }
    
    • 实现类
    public class TestOne implements TestInter {
    
        public TestOne () {
            System.out.println("TestOne init");
        }
    
        @Override
        public String sayHello() {
            return "Hello TestOne";
        }
    }
    
    • 接口调用结果

    在这里插入图片描述

    • TestOne 是一个普通类,现在可以被@Autowired注入调用,说明已经被Spring 实例化

    @Configuration的配置类导入

    • 配置类
    @Configuration
    public class TestConfiguration {
        @Bean
        public TestInter testOne() {
            return new TestOne();
        }
    }
    
    • 新建启动类
    @Import(TestConfiguration.class)
    public class SpringLearnTestApplication {
        public static void main(String[] args) {
            // 不要求启动web服务器
            ConfigurableApplicationContext context =
                    new SpringApplicationBuilder(SpringLearnTestApplication.class)
                            .web(WebApplicationType.NONE)
                            .run(args);
    
            TestInter testInter = (TestInter) context.getBean("testOne");
            System.out.println(testInter.sayHello());
        }
    }
    
    • 导入TestConfiguration配置类中定义的所有Bean,运行结果

    在这里插入图片描述


    ImportSelector 方式导入

    • 配置类
    @Configuration
    public class TestConfiguration {
        @Bean
        public TestInter testOne() {
            return new TestOne();
        }
    }
    
    • 新建TestConfigurationSelector实现ImportSelector接口注入TestConfiguration配置类中定义的所有Bean
    import org.springframework.context.annotation.ImportSelector;
    import org.springframework.core.type.AnnotationMetadata;
    
    public class TestConfigurationSelector implements ImportSelector {
        @Override
        public String[] selectImports(AnnotationMetadata annotationMetadata) {
            return new String[] {TestConfiguration.class.getName()};
        }
    }
    
    • 新建启动类
    @Import(TestConfigurationSelector.class)
    public class SpringLearnTestApplication {
        public static void main(String[] args) {
            // 不要求启动web服务器
            ConfigurableApplicationContext context =
                    new SpringApplicationBuilder(SpringLearnTestApplication.class)
                            .web(WebApplicationType.NONE)
                            .run(args);
    
            TestInter testInter = (TestInter) context.getBean("testOne");
            System.out.println(testInter.sayHello());
        }
    }
    
    • 运行结果

    在这里插入图片描述

    • @Import手动注册bean到容器:ImportBeanDefinitionRegistrar,这里就略过了。。。
    - End -
    梦想是咸鱼
    关注一下吧
    以上为本篇文章的主要内容,希望大家多提意见,如果喜欢记得点个推荐哦
    作者:Maggieq8324
    本文版权归作者和博客园共有,欢迎转载,转载时保留原作者和文章地址即可。
  • 相关阅读:
    ORACLE 查询所有用户调度作业
    【ORACLE】查看死锁进程并结束死锁的脚本
    Oracle12c中数据泵新特性之功能增强(expdp, impdp)
    oracle常用查询sql
    记一次异机rman还原后的操作
    Oracle 11gR2 RAC网络配置,更改public ip、vip和scanip
    记一次异机rman还原后的操作
    oracle通过impdp导入不同表用户、不同表空间的数据
    telegram即时通信软件和outline ---- by 余弦 by倾旋
    Vue -3:单文件组件
  • 原文地址:https://www.cnblogs.com/maggieq8324/p/15119499.html
Copyright © 2020-2023  润新知