views:

605

answers:

0

I'm in a bit of a pickle. I have Quartz starting multiple simultaneous threads of a class and I really need to inspect the class through the JMX console. The trouble is that since Quartz calls the new Foo(), when I expose Foo as a bean, it presents itself as an uninitiated class (allowing me to call init, myself, through the console) but that's not what I want... I want to view Quartz creating the instances and monitor (and adjust) what happens after that.

Is there a way to do this? Should I be exposing Quartz through JMX somehow? I feel like the solution might be really simple, but I'm just going blind trying to get at it.