您好,登录后才能下订单哦!
本篇内容介绍了“怎么理解SpringBoot Bean加载优先级的问题”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
spring容器载入bean顺序是不确定的,spring框架没有约定特定顺序逻辑规范。但spring保证如果A依赖B(如beanA中有@Autowired B的变量),那么B将先于A被加载。
Constructor >> @Autowired >>@ PostConstruct>>@Bean
如果A不依赖B,但是A需要在B后面初始化,可以使用@DependsOn(value=“Bbeanname”)。B的@Bean上面需要手动指定Name,否则找不到。
@Order注解并不能改变Bean加载优先级,@Order注解用于设置装载到list中Bean的顺序
@Order(2) @Component public class AnoBean1 implements IBean { private String name = "ano order bean 1"; public AnoBean1() { System.out.println(name); } } @Order(1) @Component public class AnoBean2 implements IBean { private String name = "ano order bean 2"; public AnoBean2() { System.out.println(name); } } @Component public class AnoTestBean { public AnoTestBean(List<IBean> anoBeanList) { for (IBean bean : anoBeanList) { System.out.println("in ano testBean: " + bean.getClass().getName()); } } }
上面代码输出结果
ano order bean 1
ano order bean 2
in ano testBean: AnoBean2
in ano testBean: AnoBean1
两个演示bean
package com.ziyear.spring4_2.order; public class Demo1Service { }
package com.ziyear.spring4_2.order; public class Demo2Service { }
两个配置类,注意@Order配置加载的顺序
package com.ziyear.spring4_2.order; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.annotation.Order; @Configuration @Order(2) public class Demo1Config { @Bean public Demo1Service demo1Service(){ System.out.println("demo1config 加载了"); return new Demo1Service(); } }
package com.ziyear.spring4_2.order; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.annotation.Order; @Configuration @Order(1) public class Demo2Config { @Bean public Demo2Service demo2Service(){ System.out.println("demo2config 加载了"); return new Demo2Service(); } }
运行
package com.ziyear.spring4_2.order; import org.springframework.context.annotation.AnnotationConfigApplicationContext; public class Main { public static void main(String[] args) { AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext("com.ziyear.spring4_2.order"); } }
输出结果
demo2config 加载了
demo1config 加载了
spring容器载入bean顺序是不确定的,spring框架没有约定特定顺序逻辑规范。但spring保证如果A依赖B(如beanA中有@Autowired B的变量),那么B将先于A被加载。但如果beanA不直接依赖B,我们如何让B仍先加载呢?
控制bean初始化顺序
可能有些场景中,bean A 间接依赖 bean B。如Bean B应该需要更新一些全局缓存,可能通过单例模式实现且没有在spring容器注册,bean A需要使用该缓存;因此,如果bean B没有准备好,bean A无法访问。
另一个场景中,bean A是事件发布者(或JMS发布者),bean B (或一些) 负责监听这些事件,典型的如观察者模式。我们不想B 错过任何事件,那么B需要首先被初始化。
简言之,有很多场景需要bean B应该被先于bean A被初始化,从而避免各种负面影响。我们可以在bean A上使用@DependsOn注解,告诉容器bean B应该先被初始化。下面通过示例来说明。
示例说明
示例通过事件机制说明,Person和Man,然后通过spring配置运行。为了方便说明,示例进行了简化。
Person类
public class Person { public static void say(){ System.out.println("person.say():Im a person"); } }
Man类
public class Man { public void say(){ System.out.println("man.say():Im a man:"); } }
AppConfig.java
配置运行类。
@Configuration @ComponentScan("com.ziyear.demo") public class Appconfig { @Bean(initMethod = "say") @DependsOn("man") public Person personBean () { return new Person(); } @Bean(name = "man", initMethod = "say") //@Lazy public Man manBean () { return new Man(); } public static void main (String[] strings) { new AnnotationConfigApplicationContext(Appconfig.class); } }
运行AppConfig的main方法,输出结果为:
man.say():Im a man:
person.say():Im a person
“怎么理解SpringBoot Bean加载优先级的问题”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。