在Spring Boot中,有多種方法可以將Bean添加到容器中。
@Component
public class MyBean {
// ...
}
@Configuration
public class AppConfig {
@Bean
public MyBean myBean() {
return new MyBean();
}
}
@Configuration
@ComponentScan("com.example")
public class AppConfig {
// ...
}
@SpringBootApplication
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
以上是常見的將Bean添加到Spring Boot容器中的方法,根據具體情況選擇合適的方式。