You can add it as a parameter to your @CommandHandler annotated method, wherever you need it. There’s also no need to store it in a field.
Field injection does not work, yet, as Spring doesn’t manage the creation of instances of this aggregate.
Thx Allard, now I understand If Spring does not handle the instantiation.
I need this as a util for an @EventHandler method, same procedure as @CommandHandler?