Annotation Interface ControllerScopeService
@Documented
@Qualifier
@Component
@Scope("controller")
@Target({TYPE,METHOD})
@Retention(RUNTIME)
public @interface ControllerScopeService
Changes the scope of an annotated bean to the controller scope.
The service is not exposed to browsers and is instantiated for each and every controller.
The controller scope is, for example, beneficial for services shared among components belonging to the same controller.