You have two ways to generate beans.
One is to create a class with an annotation @Component
.
The other is to create a method and annotate it with @Bean
. For those classes containing method with @Bean
should be annotated with @Configuration
Once you run your spring project, the class with a @ComponentScan
annotation would scan every class with @Component
on it, and restore the instance of this class to the Ioc Container. Another thing the @ComponentScan
would do is running the methods with @Bean
on it and restore the return object to the Ioc Container as a bean.
So when you need to decide which kind of beans you want to create depending upon current states, you need to use @Bean
. You can write the logic and return the object you want.
Another thing worth to mention is the name of the method with @Bean
is the default name of bean.