Disable quartz in development

hello, at design time, is there any way for the QUARTZ module to be disabled?

it works very well, but in a test environment, it is not necessary.

Hi,

A can suggest two options:

  • Set spring.quartz.auto-startup=false, so jobs won’t start automatically
  • If you create design-time JobDetail, then you can use spring profiles and do not create them, e.g. when a dev prfile is active.

Regards,
Gleb

2 Likes