I have the impression that *org.axonframework.spring.saga.*SpringResourceInjector does not support Saga constructor injection, is that right? Personally I prefer to declare all dependencies as constructor arguments. When I do this however and annotate the constructor with @Autowired, the Axon framework complains it can’t find the no-args constructor for my Saga.
This works fine when I annotate the field itself with @Autowired and provide a default no-args constructor.
Are there any plans to support constructor injection for Sagas?