Skip to content

Instantly share code, notes, and snippets.

@lankydan
Created February 4, 2018 21:43
Show Gist options
  • Save lankydan/c119b7d17457aaf025085fd9d6de8a19 to your computer and use it in GitHub Desktop.
Save lankydan/c119b7d17457aaf025085fd9d6de8a19 to your computer and use it in GitHub Desktop.
Scheduling - EnableScheduling annotation
@SpringBootApplication
@EnableScheduling
public class Application {
public static void main(final String args[]) {
SpringApplication.run(Application.class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment