youdmeng / ytooo-gitalk

ytooo-gitalk
1 stars 0 forks source link

SpringBoot中static方法中使用Autowired | WaterMin #15

Open youdmeng opened 4 years ago

youdmeng commented 4 years ago

https://www.ytooo.top/e3089c60.html

有时候我们需要在static公共方法中使用@Autowired, 解决方案: 使用 applicationContext.getBean(BaseBizClient.class)的方法 获取Util的instance,单例模式 1234567//线程安全 懒汉单例 public static synchronized DealerGetUtil getInstance() { if