Annotation Interface ControllerScope
@Qualifier
@Scope("controller")
@Target({TYPE,METHOD})
@Retention(RUNTIME)
public @interface ControllerScope
Makes a class as to be a controller scope component.
The class annotated width this annotation is instantiated for each and every controller.
Namely, instances of the class is scoped at the controller level.
This scope is typically beneficial for services shared among components belonging to the same controller.