In my Spring application I have controllers with two annotations:
@Controller - Spring annotation
@AdminPanelController - my annotation
Is it possible change my annotation so I can used if with out the need to place @Controller in addition?
I want that Spring will process my annotation as @Controller annotation.