All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wichell.framework.quartz.PersistableCronTriggerFactoryBean Maven / Gradle / Ivy

The newest version!
package com.wichell.framework.quartz;

import java.text.ParseException;

import org.springframework.scheduling.quartz.CronTriggerFactoryBean;

public class PersistableCronTriggerFactoryBean extends CronTriggerFactoryBean {
	@Override
	public void afterPropertiesSet() throws ParseException {
		super.afterPropertiesSet();
		System.out.println("PersistableCronTriggerFactoryBean-------------------");

		// Remove the JobDetail element
		getJobDataMap().remove(super.getObject().getKey().getName());
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy