Assuming a class is annotated with @Service, does Spring guarantee a unique instance of the class for injection? Or should I put @Scope("singleton") on every service?
Assuming a class is annotated with @Service , does Spring guarantee a unique instance
Share
From the docs
So there is no need to set this explicitly.