Hi, I noticed that in our scheduler module, we let quartz instantiate the job, manually inject into it, and use that to do work. If I have a job that is ApplicationScoped, this results in multiple instances getting created.
I wonder, would it be better if we try getting a contextual instance via JobFactory and simply use that? Then let the listener start any necessary contexts. John
