在應用中,有時沒有把某個類注入到IOC容器中,但在運用的時候須要獲取該類對應的bean,此時就須要用到@Import註解。示例以下:
先建立兩個類,不用註解注入到IOC容器中,在應用的時候在導入到當前容器中。
一、建立Dog和Cat類
Dog類:spa
package com.example.demo; public class Dog { }
Cat類:.net
package com.example.demo; public class Cat { }
二、在啓動類中須要獲取Dog和Cat對應的bean,須要用註解@Import註解把Dog和Cat的bean注入到當前容器中。3d
//@SpringBootApplication @ComponentScan /*把用到的資源導入到當前容器中*/ @Import({Dog.class, Cat.class}) public class App { public static void main(String[] args) throws Exception { ConfigurableApplicationContext context = SpringApplication.run(App.class, args); System.out.println(context.getBean(Dog.class)); System.out.println(context.getBean(Cat.class)); context.close(); } }
三、運行該啓動類,輸出結果:code
com.example.demo.Dog@4802796d
com.example.demo.Cat@34123d65
另外,也能夠導入一個配置類
仍是上面的Dog和Cat類,如今在一個配置類中進行配置bean,而後在須要的時候,只須要導入這個配置就能夠了,最後輸出結果相同。blog
MyConfig 配置類:資源
public class MyConfig { @Bean public Dog getDog(){ return new Dog(); } @Bean public Cat getCat(){ return new Cat(); } }
好比若在啓動類中要獲取Dog和Cat的bean,以下使用:get
//@SpringBootApplication @ComponentScan /*導入配置類就能夠了*/ @Import(MyConfig.class) public class App { public static void main(String[] args) throws Exception { ConfigurableApplicationContext context = SpringApplication.run(App.class, args); System.out.println(context.getBean(Dog.class)); System.out.println(context.getBean(Cat.class)); context.close(); } }
轉載:https://blog.csdn.net/pange1991/article/details/81356594it