I have a class (Class ABC) that\'s instantiated by calling the constructor. Class ABC in turn has a helper class (Class XYZ) injected using auto-wired.
Ours is a Sp
Correct: You can't just call new on a class and get it all wired up; Spring has to be managing the bean for it to do all of its magic.
new
If you can post more details on your use case, we may be able to suggest useful options.