Skip to content

Instantly share code, notes, and snippets.

@jamsesso
Created April 8, 2016 16:39
Show Gist options
  • Save jamsesso/b4f80e6dcbc9ee4f200d17e48a91ea66 to your computer and use it in GitHub Desktop.
Save jamsesso/b4f80e6dcbc9ee4f200d17e48a91ea66 to your computer and use it in GitHub Desktop.
@Service
public class BatchServiceImpl {
@Scheduled(cron = "your-cron-expression-here (example: */5 * * * * MON-FRI would execute on weekdays)")
public void sendReport() {
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment