类 CommandLineJobRunner
- java.lang.Object
- org.springframework.batch.core.launch.support.CommandLineJobRunner
public class CommandLineJobRunner extends java.lang.Object
Basic launcher for starting jobs from the command line. In general, it is assumed that this launcher will primarily be used to start a job via a script from an Enterprise Scheduler. Therefore, exit codes are mapped to integers so that schedulers can use the returned values to determine the next course of action. The returned values can also be useful to operations teams in determining what should happen upon failure. For example, a returned code of 5 might mean that some resource wasn't available and the job should be restarted. However, a code of 10 might mean that something critical has happened and the issue should be escalated.
With any launch of a batch job within Spring Batch, a Spring context containing the
Joband some execution context has to be created. This command line launcher can be used to load the job and its context from a single location. All dependencies of the launcher will then be satisfied by autowiring by type from the combined application context. Default values are provided for all fields except theJobLauncherandJobLocator. Therefore, if autowiring fails to set it (it should be noted that dependency checking is disabled because most of the fields have default values and thus don't require dependencies to be fulfilled via autowiring) then an exception will be thrown. It should also be noted that even if an exception is thrown by this class, it will be mapped to an integer and returned.Notice a property is available to set the
SystemExiter. This class is used to exit from the main method, rather than calling System.exit() directly. This is because unit testing a class the calls System.exit() is impossible without kicking off the test within a new JVM, which it is possible to do, however it is a complex solution, much more so than strategizing the exiter.The arguments to this class can be provided on the command line (separated by spaces), or through stdin (separated by new line). They are as follows:
jobPath <options> jobIdentifier (jobParameters)*The command line options are as follows
- jobPath: the xml application context containing a
Job - -restart: (optional) to restart the last failed execution
- -stop: (optional) to stop a running execution
- -abandon: (optional) to abandon a stopped execution
- -next: (optional) to start the next in a sequence according to the
JobParametersIncrementerin theJob - jobIdentifier: the name of the job or the id of a job execution (for -stop, -abandon or -restart).
- jobParameters: 0 to many parameters that will be used to launch a job specified in the form of
key=valuepairs.
If the
-nextoption is used the parameters on the command line (if any) are appended to those retrieved from the incrementer, overriding any with the same key.The combined application context must contain only one instance of
JobLauncher. The job parameters passed in to the command line will be converted toPropertiesby assuming that each individual element is one parameter that is separated by an equals sign. For example, "vendor.id=290232". The resulting properties instance is converted toJobParametersusing aJobParametersConverterfrom the application context (if there is one, or aDefaultJobParametersConverterotherwise). Below is an example arguments list: "java org.springframework.batch.core.launch.support.CommandLineJobRunner testJob.xml testJob schedule.date=2008/01/24 vendor.id=3902483920Once arguments have been successfully parsed, autowiring will be used to set various dependencies. The
JobLauncherfor example, will be loaded this way. If none is contained in the bean factory (it searches by type) then aBeanDefinitionStoreExceptionwill be thrown. The same exception will also be thrown if there is more than one present. Assuming the JobLauncher has been set correctly, the jobIdentifier argument will be used to obtain an actualJob. If aJobLocatorhas been set, then it will be used, if not the beanFactory will be asked, using the jobIdentifier as the bean id.- 从以下版本开始:
- 1.0
- 作者:
- Dave Syer, Lucas Ward, Mahmoud Ben Hassine
- jobPath: the xml application context containing a
字段概要
字段 修饰符和类型 字段 说明 protected static org.apache.commons.logging.Loglogger
构造器概要
构造器 构造器 说明 CommandLineJobRunner()
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 voidexit(int status)Delegate to the exiter to (possibly) exit the VM gracefully.static java.lang.StringgetErrorMessage()Retrieve the error message set by an instance ofCommandLineJobRunneras it exits.static voidmain(java.lang.String[] args)Launch a batch job using aCommandLineJobRunner.static voidpresetSystemExiter(SystemExiter systemExiter)Static setter for theSystemExiterso it can be adjusted before dependency injection.voidsetExitCodeMapper(ExitCodeMapper exitCodeMapper)Injection setter for theExitCodeMapper.voidsetJobExplorer(JobExplorer jobExplorer)Injection setter forJobExplorer.voidsetJobLocator(JobLocator jobLocator)JobLocatorto find a job to run.voidsetJobParametersConverter(JobParametersConverter jobParametersConverter)Injection setter forJobParametersConverter.voidsetJobRepository(JobRepository jobRepository)voidsetLauncher(JobLauncher launcher)Injection setter for theJobLauncher.voidsetSystemExiter(SystemExiter systemExiter)Injection setter for theSystemExiter.
字段详细资料
logger
protected static final org.apache.commons.logging.Log logger
构造器详细资料
CommandLineJobRunner
public CommandLineJobRunner()
方法详细资料
setLauncher
public void setLauncher(JobLauncher launcher)
Injection setter for theJobLauncher.- 参数:
launcher- the launcher to set
setJobRepository
public void setJobRepository(JobRepository jobRepository)
- 参数:
jobRepository- the jobRepository to set
setJobExplorer
public void setJobExplorer(JobExplorer jobExplorer)
Injection setter forJobExplorer.- 参数:
jobExplorer- theJobExplorerto set
setExitCodeMapper
public void setExitCodeMapper(ExitCodeMapper exitCodeMapper)
Injection setter for theExitCodeMapper.- 参数:
exitCodeMapper- the exitCodeMapper to set
presetSystemExiter
public static void presetSystemExiter(SystemExiter systemExiter)
Static setter for theSystemExiterso it can be adjusted before dependency injection. Typically overridden bysetSystemExiter(SystemExiter).- 参数:
systemExiter-SystemExiterinstance to be used by CommandLineJobRunner instance.
getErrorMessage
public static java.lang.String getErrorMessage()
Retrieve the error message set by an instance ofCommandLineJobRunneras it exits. Empty if the last job launched was successful.- 返回:
- the error message
setSystemExiter
public void setSystemExiter(SystemExiter systemExiter)
Injection setter for theSystemExiter.- 参数:
systemExiter-SystemExiterinstance to be used by CommandLineJobRunner instance.
setJobParametersConverter
public void setJobParametersConverter(JobParametersConverter jobParametersConverter)
Injection setter forJobParametersConverter.- 参数:
jobParametersConverter- instance ofJobParametersConverterto be used by the CommandLineJobRunner instance.
exit
public void exit(int status)
Delegate to the exiter to (possibly) exit the VM gracefully.- 参数:
status- int exit code that should be reported.
setJobLocator
public void setJobLocator(JobLocator jobLocator)
JobLocatorto find a job to run.- 参数:
jobLocator- aJobLocator
main
public static void main(java.lang.String[] args) throws java.lang.Exception
Launch a batch job using aCommandLineJobRunner. Creates a new Spring context for the job execution, and uses a common parent for all such contexts. No exception are thrown from this method, rather exceptions are logged and an integer returned through the exit status in aJvmSystemExiter(which can be overridden by defining one in the Spring context).
Parameters can be provided in the form key=value, and will be converted using the injectedJobParametersConverter.- 参数:
args-- -restart: (optional) if the job has failed or stopped and the most should be restarted. If specified then the jobIdentifier parameter can be interpreted either as the name of the job or the id of the job execution that failed.
- -next: (optional) if the job has a
JobParametersIncrementerthat can be used to launch the next instance in a sequence - jobPath: the xml application context containing a
Job - jobIdentifier: the bean id of the job or id of the failed execution in the case of a restart.
- jobParameters: 0 to many parameters that will be used to launch a job.
The options (
-restart, -next) can occur anywhere in the command line.- 抛出:
java.lang.Exception- is thrown if error occurs.