Is there a way to get a list of all Controllers, which were annotated with @Controller? I would like to use them like:
@Autowired
public void addAll(List<Controller> controllers) throws Exception {
for (Controller controller : controllers) {
...
}
}
Thanks!
getBeansWithAnnotation()
If you have annotated them with controller … :
then