| Class and Description |
|---|
| org.springframework.batch.core.configuration.support.ClassPathXmlApplicationContextFactory
use
GenericApplicationContextFactory instead |
| org.springframework.batch.core.configuration.support.ClassPathXmlJobRegistry
in version 2.1, please us
AutomaticJobRegistrar instead |
| org.springframework.batch.core.repository.dao.XStreamExecutionContextStringSerializer
Due to the incompatibilities between current Jettison versions and XStream
versions, this serializer is deprecated in favor of
Jackson2ExecutionContextStringSerializer |
| Method and Description |
|---|
| org.springframework.batch.core.JobParameters.getDouble(String, double)
Use
JobParameters.getDouble(java.lang.String, java.lang.Double)
instead. This method will be removed in a future release. |
| org.springframework.batch.core.repository.support.AbstractJobRepositoryFactoryBean.getJobRepository()
use
AbstractJobRepositoryFactoryBean.getObject() instead |
| org.springframework.batch.core.JobParameters.getLong(String, long)
Use
JobParameters.getLong(java.lang.String, java.lang.Long)
instead. This method will be removed in a future release. |
| org.springframework.batch.core.partition.support.SimpleStepExecutionSplitter.getStartable(StepExecution, ExecutionContext)
This method is deprecated in favor of
SimpleStepExecutionSplitter.isStartable(org.springframework.batch.core.StepExecution, org.springframework.batch.item.ExecutionContext) and will be removed in a
future version. |
| Constructor and Description |
|---|
| org.springframework.batch.core.partition.support.SimpleStepExecutionSplitter(JobRepository, Step, Partitioner) |