Advertisement
nicb

Untitled

Jul 1st, 2020
830
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. package com.alten.altenTrip.config;
  2.  
  3. import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.scheduling.annotation.EnableScheduling;
  6.  
  7. @Configuration
  8. @EnableScheduling
  9. @ConditionalOnProperty(name = "scheduling.enable", matchIfMissing = true)
  10. public class SchedulerConfig {
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement