How can I disable all schedulers (@Schedule annotated) in a project deploing on Glassfish 3.1
Maybe there are some config entries to do this?
I have about 20 EJBs with schedulers in my project and if I want to test/fix a small thing I don't want that all/some timer start.
|
| ||||
|
feedback
|
|
unfortunately I don't know if there are some config entries to solve your problem, but there is a programatical way to do so, by calling the cancel()-method on Timer-Objects provided by TimerService. Here's an example of a class I simply put into projects when I want to test only small things:
Hope this helps! :) | |||
feedback
|
|
Accessing I guess you'd need to use some Glassfish proprietary solution and fiddle with their internals (if it's even possible). I'd ask on GlassFish mailing list if I were you. | |||||
feedback
|
@Scheduleannotation added in the EJB 3.1 (docs.oracle.com/javaee/6/api/javax/ejb/…)? Are you using EJB 3.1 or 3.0? – Piotr Nowicki Jan 25 at 13:59