When annotating a class with @Component, does this mean it is a Spring Bean and Singleton? When annotating a class with @Component, does this mean it is a Spring Bean and Singleton? spring spring

When annotating a class with @Component, does this mean it is a Spring Bean and Singleton?


Yes, that is correct, @Component is a Spring bean and a Singleton.

If the class belongs to the service layer you may want to annotate it with @Service instead

But have in mind that in order for these annotations to be detected, you need to place this line in applicationContext.xml:

<context:component-scan base-package="com.yourcompany" />

About singletons - spring beans are all in singleton scope by default. The only thing you have to have in mind is that you should not store state in field variables (they should only hold dependencies). Thus your application will be thread-safe, and you won't require a new instance of a bean each time. In other words, your beans are stateless.


By default - Yes.

However, you can override this behavior using the @Scope annotation. For example: @Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)