OPEN - issue BATCH-773: Refactor and extend ExportedJobLauncher to JobOperator

Move exception classes to where they are thrown
This commit is contained in:
dsyer
2008-08-10 15:45:43 +00:00
parent 91f9f61b3e
commit 0dba26ab7b
27 changed files with 362 additions and 46 deletions

View File

@@ -8,7 +8,7 @@ import java.util.Map;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.configuration.ListableJobRegistry;
import org.springframework.batch.core.repository.NoSuchJobException;
import org.springframework.batch.core.launch.NoSuchJobException;
import org.springframework.beans.BeanWrapperImpl;
import org.springframework.beans.BeansException;
import org.springframework.beans.PropertyAccessorUtils;

View File

@@ -35,9 +35,9 @@ import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobParameters;
import org.springframework.batch.core.configuration.JobLocator;
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.core.launch.NoSuchJobException;
import org.springframework.batch.core.repository.JobExecutionAlreadyRunningException;
import org.springframework.batch.core.repository.JobRestartException;
import org.springframework.batch.core.repository.NoSuchJobException;
import org.springframework.batch.sample.support.JobSupport;
/**