공부
[spring] disable class in spring boot @Enable...
승가비
2023. 9. 7. 23:51
728x90
@EnableScheduling
@EnableSchedulerLock(defaultLockAtMostFor = "30s")
@Configuration
@Profile("!integration-test")
public class SchedulerConfig {
https://stackoverflow.com/questions/29014496/disable-enablescheduling-on-spring-tests
Disable @EnableScheduling on Spring Tests
When I run my unit tests, it invokes my scheduled tasks. I want to prevent this behaviour, which is caused by the fact that I have @EnableScheduling on my main app configuration. How can I disable...
stackoverflow.com
728x90