1. 程式人生 > >導入別的類中的bean

導入別的類中的bean

post style spa text atop log nco turn blog

@Configuration
class CommonContext {
  @Bean
  public MyBolt myBolt() {
    return new MyBolt();
  }
}

...

@Configuration
@Import(CommonContext.class)
class ATopologyContext { 
  // ... 
}

@Configuration
@Import(CommonContext.class)
class BTopologyContext { 
  // ... 
}

導入別的類中的bean