Вы можете найти, что интеграция Quartz для Guice отвечает вашим требованиям здесь -
https://github.com/99soft/guartz
Вот пример синтаксиса
@javax.inject.Singleton
@org.nnsoft.guice.guartz.Scheduled(jobName = "test", cronExpression = "0/2 * * * * ?")
public class com.acme.MyJobImpl implements org.quartz.Job {
@javax.inject.Inject
private MyCustomService service;
public void execute(JobExecutionContext context) throws JobExecutionException {
service.customOperation();
}
}