Skip to content

Instantly share code, notes, and snippets.

@os890
Last active December 31, 2015 12:48
Show Gist options
  • Save os890/7988306 to your computer and use it in GitHub Desktop.
Save os890/7988306 to your computer and use it in GitHub Desktop.
@Scheduled(cronExpression = "0 0/10 * * * ?")
public class CdiAwareQuartzJob implements org.quartz.Job
{
@Inject
private MyService service;
@Override
public void execute(JobExecutionContext context)
throws JobExecutionException
{
//...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment