Uses of Class
org.springframework.batch.core.JobParametersInvalidException
Packages that use JobParametersInvalidException
Package
Description
Core domain context for Spring Batch covering jobs, steps, configuration and execution
abstractions.
Specific implementations of job concerns.
Interfaces and simple implementations of launch concerns.
Support classes for use in bootstrap and launch implementations or configurations.
-
Uses of JobParametersInvalidException in org.springframework.batch.core
Methods in org.springframework.batch.core that throw JobParametersInvalidExceptionModifier and TypeMethodDescriptionvoid
JobParametersValidator.validate
(JobParameters parameters) Check that the parameters meet whatever requirements are appropriate, and throw an exception if not. -
Uses of JobParametersInvalidException in org.springframework.batch.core.job
Methods in org.springframework.batch.core.job that throw JobParametersInvalidExceptionModifier and TypeMethodDescriptionvoid
CompositeJobParametersValidator.validate
(JobParameters parameters) Validates the JobParameters according to the injected JobParameterValidators Validation stops and exception is thrown on first validation errorvoid
DefaultJobParametersValidator.validate
(JobParameters parameters) Check the parameters meet the specification provided. -
Uses of JobParametersInvalidException in org.springframework.batch.core.launch
Methods in org.springframework.batch.core.launch that throw JobParametersInvalidExceptionModifier and TypeMethodDescriptionJobOperator.restart
(long executionId) Deprecated, for removal: This API element is subject to removal in a future version.JobOperator.restart
(JobExecution jobExecution) Restart a failed or stoppedJobExecution
.JobLauncher.run
(Job job, JobParameters jobParameters) Start a job execution for the givenJob
andJobParameters
.default Long
JobOperator.start
(String jobName, Properties parameters) Deprecated, for removal: This API element is subject to removal in a future version.since 6.0 in favor ofJobOperator.start(Job, JobParameters)
.default JobExecution
JobOperator.start
(Job job, JobParameters jobParameters) Start a new instance of a job with the specified parameters.JobOperator.startNextInstance
(String jobName) Deprecated, for removal: This API element is subject to removal in a future version.since 6.0 in favor ofJobOperator.startNextInstance(Job)
.JobOperator.startNextInstance
(Job job) Launch the next in a sequence ofJobInstance
determined by theJobParametersIncrementer
attached to the specified job. -
Uses of JobParametersInvalidException in org.springframework.batch.core.launch.support
Methods in org.springframework.batch.core.launch.support that throw JobParametersInvalidExceptionModifier and TypeMethodDescriptionSimpleJobOperator.restart
(long executionId) Deprecated, for removal: This API element is subject to removal in a future version.SimpleJobOperator.restart
(JobExecution jobExecution) Deprecated, for removal: This API element is subject to removal in a future version.TaskExecutorJobLauncher.run
(Job job, JobParameters jobParameters) Run the provided job with the givenJobParameters
.SimpleJobOperator.start
(String jobName, Properties parameters) Deprecated, for removal: This API element is subject to removal in a future version.SimpleJobOperator.startNextInstance
(String jobName) Deprecated, for removal: This API element is subject to removal in a future version.SimpleJobOperator.startNextInstance
(Job job) Deprecated, for removal: This API element is subject to removal in a future version.
JobOperator.restart(JobExecution)
.