In my Java EE application I have a @Singleton
with several @Schedule
d methods. When I deploy the app on Wildfly, the Timer service starts executing these methods, which is correct.
Since during development I test my app on a secondary server, I'd like to disable the Timer service on that instance of Wildfly, to prevent the execution of those methods.
Problem is… I can't find any setting to do this.
How can I disable the Timer service in Wildfly 10?