| 组织ID: |
org.springframework.batch |
| 项目ID: |
spring-batch-core |
| 版本: |
2.0.0.RC1 |
| 最后修改时间: |
2019-10-23 11:36:59 |
| 包类型: |
jar |
| 标题: |
Core |
| 描述: |
Core domain for batch processing, expressing a domain of Jobs, Steps, Chunks, etc.
|
| 大小: |
350.51KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-core</artifactId>
<version>2.0.0.RC1</version>
</dependency>
|
| Gradle引入代码: |
org.springframework.batch:spring-batch-core:2.0.0.RC1
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-batch-core</artifactId>
<packaging>jar</packaging>
<name>Core</name>
<description> Core domain for batch processing, expressing a domain of Jobs, Steps, Chunks, etc.
</description>
<parent>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-parent</artifactId>
<version>2.0.0.RC1</version>
<relativePath>../spring-batch-parent</relativePath>
</parent>
<profiles>
<profile>
<id>tiger</id>
<activation>
<jdk>1.5</jdk>
</activation>
<dependencies>
<dependency>
<groupId>javax.xml.stream</groupId>
<artifactId>com.springsource.javax.xml.stream</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-infrastructure</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-commons</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
</dependency>
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>osgi_R4_core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.osgi</groupId>
<artifactId>spring-osgi-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<optional>false</optional>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.springsource.bundlor</groupId>
<artifactId>com.springsource.bundlor.maven</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>generate-sql</id>
<phase>generate-sources</phase>
<configuration>
<tasks> <typedef resource="foundrylogic/vpp/typedef.properties"/> <taskdef resource="foundrylogic/vpp/taskdef.properties"/> <vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context> <property key="includes" value="src/main/sql"/> <property file="${basedir}/src/main/sql/hsqldb.properties"/>
</context>
<engine> <property key="velocimacro.library" value="src/main/sql/hsqldb.vpp"/>
</engine>
</config> <fileset dir="${basedir}/src/main/sql" includes="schema*.sql.vpp"/> <mapper type="glob" from="*.sql.vpp" to="*-hsqldb.sql"/>
</vppcopy> <vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context> <property key="includes" value="src/main/sql"/> <property file="${basedir}/src/main/sql/db2.properties"/>
</context>
<engine> <property key="velocimacro.library" value="src/main/sql/db2.vpp"/>
</engine>
</config> <fileset dir="${basedir}/src/main/sql" includes="schema*.sql.vpp"/> <mapper type="glob" from="*.sql.vpp" to="*-db2.sql"/>
</vppcopy> <vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context> <property key="includes" value="src/main/sql"/> <property file="${basedir}/src/main/sql/derby.properties"/>
</context>
<engine> <property key="velocimacro.library" value="src/main/sql/derby.vpp"/>
</engine>
</config> <fileset dir="${basedir}/src/main/sql" includes="schema*.sql.vpp"/> <mapper type="glob" from="*.sql.vpp" to="*-derby.sql"/>
</vppcopy> <vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context> <property key="includes" value="src/main/sql"/> <property file="${basedir}/src/main/sql/oracle10g.properties"/>
</context>
<engine> <property key="velocimacro.library" value="src/main/sql/oracle10g.vpp"/>
</engine>
</config> <fileset dir="${basedir}/src/main/sql" includes="schema*.sql.vpp"/> <mapper type="glob" from="*.sql.vpp" to="*-oracle10g.sql"/>
</vppcopy> <vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context> <property key="includes" value="src/main/sql"/> <property file="${basedir}/src/main/sql/postgresql.properties"/>
</context>
<engine> <property key="velocimacro.library" value="src/main/sql/postgresql.vpp"/>
</engine>
</config> <fileset dir="${basedir}/src/main/sql" includes="schema*.sql.vpp"/> <mapper type="glob" from="*.sql.vpp" to="*-postgresql.sql"/>
</vppcopy> <vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context> <property key="includes" value="src/main/sql"/> <property file="${basedir}/src/main/sql/mysql.properties"/>
</context>
<engine> <property key="velocimacro.library" value="src/main/sql/mysql.vpp"/>
</engine>
</config> <fileset dir="${basedir}/src/main/sql" includes="schema*.sql.vpp"/> <mapper type="glob" from="*.sql.vpp" to="*-mysql.sql"/>
</vppcopy> <vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context> <property key="includes" value="src/main/sql"/> <property file="${basedir}/src/main/sql/sqlserver.properties"/>
</context>
<engine> <property key="velocimacro.library" value="src/main/sql/sqlserver.vpp"/>
</engine>
</config> <fileset dir="${basedir}/src/main/sql" includes="schema.sql.vpp"/> <mapper type="glob" from="*.sql.vpp" to="*-sqlserver.sql"/>
</vppcopy> <vppcopy todir="${basedir}/target/generated-resources" overwrite="true">
<config>
<context> <property key="includes" value="src/main/sql"/> <property file="${basedir}/src/main/sql/sybase.properties"/>
</context>
<engine> <property key="velocimacro.library" value="src/main/sql/sybase.vpp"/>
</engine>
</config> <fileset dir="${basedir}/src/main/sql" includes="schema.sql.vpp"/> <mapper type="glob" from="*.sql.vpp" to="*-sybase.sql"/>
</vppcopy>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<junitArtifactName>junit:junit</junitArtifactName>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>emma-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/spring.handlers
META-INF/spring.schemas
schema-mysql.sql
schema-sqlserver.sql
schema-drop-derby.sql
schema-sybase.sql
schema-postgresql.sql
schema-derby.sql
schema-db2.sql
schema-drop-postgresql.sql
schema-oracle10g.sql
schema-hsqldb.sql
schema-drop-db2.sql
schema-drop-oracle10g.sql
org.springframework.batch.core.step.AbstractStep.class
org.springframework.batch.core.step.ThreadStepInterruptionPolicy.class
org.springframework.batch.core.step.item.SimpleRetryExceptionHandler.class
org.springframework.batch.core.step.item.FaultTolerantStepFactoryBean$2.class
org.springframework.batch.core.step.item.SimpleStepFactoryBean$1.class
org.springframework.batch.core.step.item.FaultTolerantStepFactoryBean.class
org.springframework.batch.core.step.item.Chunk.class
org.springframework.batch.core.step.item.BatchRetryTemplate$InnerRetryTemplate.class
org.springframework.batch.core.step.item.FaultTolerantChunkProcessor$3.class
org.springframework.batch.core.step.item.ChunkOrientedTasklet.class
org.springframework.batch.core.step.item.SimpleChunkProvider.class
org.springframework.batch.core.step.item.ChunkProvider.class
org.springframework.batch.core.step.item.FaultTolerantChunkProvider.class
org.springframework.batch.core.step.item.SimpleChunkProcessor.class
org.springframework.batch.core.step.item.BatchListenerFactoryHelper$1.class
org.springframework.batch.core.step.item.BatchRetryTemplate$BatchRetryContext.class
org.springframework.batch.core.step.item.BatchRetryTemplate.class
org.springframework.batch.core.step.item.BatchRetryTemplate$BatchRetryState.class
org.springframework.batch.core.step.item.SimpleStepFactoryBean.class
org.springframework.batch.core.step.item.FaultTolerantChunkProcessor.class
org.springframework.batch.core.step.item.FaultTolerantStepFactoryBean$1.class
org.springframework.batch.core.step.item.BatchRetryTemplate$1.class
org.springframework.batch.core.step.item.FaultTolerantChunkProcessor$4.class
org.springframework.batch.core.step.item.FaultTolerantChunkProcessor$2.class
org.springframework.batch.core.step.item.SimpleChunkProvider$1.class
org.springframework.batch.core.step.item.FaultTolerantChunkProcessor$5.class
org.springframework.batch.core.step.item.BatchListenerFactoryHelper.class
org.springframework.batch.core.step.item.ChunkProcessor.class
org.springframework.batch.core.step.item.Chunk$ChunkIterator.class
org.springframework.batch.core.step.item.FaultTolerantChunkProcessor$1.class
org.springframework.batch.core.step.item.SimpleStepFactoryBean$2.class
org.springframework.batch.core.step.item.DefaultItemFailureHandler.class
org.springframework.batch.core.step.item.SkipWrapper.class
org.springframework.batch.core.step.StepHolder.class
org.springframework.batch.core.step.tasklet.SystemCommandTasklet.class
org.springframework.batch.core.step.tasklet.MethodInvokingTaskletAdapter.class
org.springframework.batch.core.step.tasklet.SystemProcessExitCodeMapper.class
org.springframework.batch.core.step.tasklet.CallableTaskletAdapter.class
org.springframework.batch.core.step.tasklet.TaskletStep.class
org.springframework.batch.core.step.tasklet.TaskletStep$1.class
org.springframework.batch.core.step.tasklet.SystemCommandTasklet$1.class
org.springframework.batch.core.step.tasklet.TaskletStep$2.class
org.springframework.batch.core.step.tasklet.SystemCommandException.class
org.springframework.batch.core.step.tasklet.SimpleSystemProcessExitCodeMapper.class
org.springframework.batch.core.step.tasklet.Tasklet.class
org.springframework.batch.core.step.tasklet.ConfigurableSystemProcessExitCodeMapper.class
org.springframework.batch.core.step.NoWorkFoundStepExecutionListener.class
org.springframework.batch.core.step.skip.NeverSkipItemSkipPolicy.class
org.springframework.batch.core.step.skip.SkipLimitExceededException.class
org.springframework.batch.core.step.skip.SkipPolicy.class
org.springframework.batch.core.step.skip.AlwaysSkipItemSkipPolicy.class
org.springframework.batch.core.step.skip.NonSkippableReadException.class
org.springframework.batch.core.step.skip.LimitCheckingItemSkipPolicy.class
org.springframework.batch.core.step.skip.SkipListenerFailedException.class
org.springframework.batch.core.step.StepLocator.class
org.springframework.batch.core.step.StepInterruptionPolicy.class
org.springframework.batch.core.step.AbstractStep$FatalException.class
org.springframework.batch.core.JobParameter$ParameterType.class
org.springframework.batch.core.ItemProcessListener.class
org.springframework.batch.core.StepExecution.class
org.springframework.batch.core.StepExecutionListener.class
org.springframework.batch.core.ItemReadListener.class
org.springframework.batch.core.ExitStatus.class
org.springframework.batch.core.converter.JobParametersConverter.class
org.springframework.batch.core.converter.DefaultJobParametersConverter.class
org.springframework.batch.core.Job.class
org.springframework.batch.core.ChunkListener.class
org.springframework.batch.core.JobParameter.class
org.springframework.batch.core.ItemWriteListener.class
org.springframework.batch.core.Entity.class
org.springframework.batch.core.resource.StepExecutionSimpleCompletionPolicy.class
org.springframework.batch.core.resource.StepExecutionPreparedStatementSetter.class
org.springframework.batch.core.listener.StepListenerFactoryBean$NullIgnoringSet.class
org.springframework.batch.core.listener.StepExecutionListenerSupport.class
org.springframework.batch.core.listener.StepListenerMetaData.class
org.springframework.batch.core.listener.CompositeChunkListener.class
org.springframework.batch.core.listener.StepListenerFactoryBean$1.class
org.springframework.batch.core.listener.CompositeExecutionJobListener.class
org.springframework.batch.core.listener.StepListenerFactoryBean.class
org.springframework.batch.core.listener.ItemListenerSupport.class
org.springframework.batch.core.listener.CompositeStepExecutionListener.class
org.springframework.batch.core.listener.JobListenerFactoryBean$NullIgnoringSet.class
org.springframework.batch.core.listener.CompositeItemWriteListener.class
org.springframework.batch.core.listener.StepListenerFailedException.class
org.springframework.batch.core.listener.JobListenerFactoryBean.class
org.springframework.batch.core.listener.ChunkListenerSupport.class
org.springframework.batch.core.listener.MulticasterBatchListener.class
org.springframework.batch.core.listener.CompositeItemReadListener.class
org.springframework.batch.core.listener.JobListenerFactoryBean$1.class
org.springframework.batch.core.listener.MethodInvokerMethodInterceptor.class
org.springframework.batch.core.listener.StepListenerSupport.class
org.springframework.batch.core.listener.CompositeItemProcessListener.class
org.springframework.batch.core.listener.ExecutionContextPromotionListener.class
org.springframework.batch.core.listener.OrderedComposite.class
org.springframework.batch.core.listener.JobListenerMetaData.class
org.springframework.batch.core.listener.SkipListenerSupport.class
org.springframework.batch.core.listener.JobExecutionListenerSupport.class
org.springframework.batch.core.listener.CompositeSkipListener.class
org.springframework.batch.core.SkipListener.class
org.springframework.batch.core.JobParameters.class
org.springframework.batch.core.scope.context.StepScopeManager.class
org.springframework.batch.core.scope.context.ChunkContext.class
org.springframework.batch.core.scope.context.StepContext.class
org.springframework.batch.core.scope.context.StepContextRepeatCallback.class
org.springframework.batch.core.scope.context.StepSynchronizationManager.class
org.springframework.batch.core.scope.StepScope$Scopifier$1.class
org.springframework.batch.core.scope.StepScope.class
org.springframework.batch.core.scope.util.StepContextFactory.class
org.springframework.batch.core.scope.util.PlaceholderProxyFactoryBean.class
org.springframework.batch.core.scope.util.PlaceholderTargetSource$3.class
org.springframework.batch.core.scope.util.PlaceholderTargetSource$2.class
org.springframework.batch.core.scope.util.ContextFactory.class
org.springframework.batch.core.scope.util.PlaceholderTargetSource$1.class
org.springframework.batch.core.scope.util.PlaceholderTargetSource.class
org.springframework.batch.core.scope.StepScope$Scopifier.class
org.springframework.batch.core.JobExecution.class
org.springframework.batch.core.JobParametersBuilder.class
org.springframework.batch.core.BatchStatus.class
org.springframework.batch.core.repository.JobExecutionAlreadyRunningException.class
org.springframework.batch.core.repository.JobRepository.class
org.springframework.batch.core.repository.dao.JdbcJobInstanceDao$JobInstanceRowMapper.class
org.springframework.batch.core.repository.dao.JdbcExecutionContextDao$1.class
org.springframework.batch.core.repository.dao.ExecutionContextDao.class
org.springframework.batch.core.repository.dao.JdbcJobInstanceDao$3.class
org.springframework.batch.core.repository.dao.JdbcJobInstanceDao.class
org.springframework.batch.core.repository.dao.JdbcJobExecutionDao$JobExecutionRowMapper.class
org.springframework.batch.core.repository.dao.MapJobExecutionDao$1.class
org.springframework.batch.core.repository.dao.JobInstanceDao.class
org.springframework.batch.core.repository.dao.JdbcJobInstanceDao$2.class
org.springframework.batch.core.repository.dao.JdbcJobExecutionDao$1.class
org.springframework.batch.core.repository.dao.ExecutionContextStringSerializer.class
org.springframework.batch.core.repository.dao.AbstractJdbcBatchMetadataDao.class
org.springframework.batch.core.repository.dao.JdbcStepExecutionDao$StepExecutionRowMapper.class
org.springframework.batch.core.repository.dao.NoSuchObjectException.class
org.springframework.batch.core.repository.dao.MapJobInstanceDao$1.class
org.springframework.batch.core.repository.dao.MapStepExecutionDao$1.class
org.springframework.batch.core.repository.dao.JdbcExecutionContextDao$ExecutionContextRowMapper.class
org.springframework.batch.core.repository.dao.JdbcJobExecutionDao.class
org.springframework.batch.core.repository.dao.MapStepExecutionDao.class
org.springframework.batch.core.repository.dao.StepExecutionDao.class
org.springframework.batch.core.repository.dao.MapJobInstanceDao.class
org.springframework.batch.core.repository.dao.JdbcStepExecutionDao.class
org.springframework.batch.core.repository.dao.JobExecutionDao.class
org.springframework.batch.core.repository.dao.MapExecutionContextDao.class
org.springframework.batch.core.repository.dao.MapJobExecutionDao.class
org.springframework.batch.core.repository.dao.XStreamExecutionContextStringSerializer.class
org.springframework.batch.core.repository.dao.JdbcExecutionContextDao.class
org.springframework.batch.core.repository.dao.JdbcJobInstanceDao$1.class
org.springframework.batch.core.repository.JobInstanceAlreadyCompleteException.class
org.springframework.batch.core.repository.JobRestartException.class
org.springframework.batch.core.repository.support.AbstractJobRepositoryFactoryBean.class
org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean.class
org.springframework.batch.core.repository.support.SimpleJobRepository.class
org.springframework.batch.core.repository.support.JobRepositoryFactoryBean.class
org.springframework.batch.core.partition.PartitionHandler.class
org.springframework.batch.core.partition.support.Partitioner.class
org.springframework.batch.core.partition.support.SimpleStepExecutionSplitter.class
org.springframework.batch.core.partition.support.StepExecutionAggregator.class
org.springframework.batch.core.partition.support.TaskExecutorPartitionHandler.class
org.springframework.batch.core.partition.support.TaskExecutorPartitionHandler$1.class
org.springframework.batch.core.partition.support.PartitionStep.class
org.springframework.batch.core.partition.support.SimplePartitioner.class
org.springframework.batch.core.partition.StepExecutionSplitter.class
org.springframework.batch.core.job.AbstractJob.class
org.springframework.batch.core.job.SimpleJob.class
org.springframework.batch.core.job.flow.FlowJob$JobFlowExecutor.class
org.springframework.batch.core.job.flow.FlowExecutionStatus$Status.class
org.springframework.batch.core.job.flow.JobExecutionDecider.class
org.springframework.batch.core.job.flow.FlowJob.class
org.springframework.batch.core.job.flow.Flow.class
org.springframework.batch.core.job.flow.State.class
org.springframework.batch.core.job.flow.support.SimpleFlow.class
org.springframework.batch.core.job.flow.support.StateTransition.class
org.springframework.batch.core.job.flow.support.state.EndState.class
org.springframework.batch.core.job.flow.support.state.AbstractState.class
org.springframework.batch.core.job.flow.support.state.SplitState$1.class
org.springframework.batch.core.job.flow.support.state.StepState.class
org.springframework.batch.core.job.flow.support.state.FlowExecutionAggregator.class
org.springframework.batch.core.job.flow.support.state.DecisionState.class
org.springframework.batch.core.job.flow.support.state.SplitState.class
org.springframework.batch.core.job.flow.support.state.MaxValueFlowExecutionAggregator.class
org.springframework.batch.core.job.flow.FlowExecutor.class
org.springframework.batch.core.job.flow.FlowExecutionStatus.class
org.springframework.batch.core.job.flow.FlowExecution.class
org.springframework.batch.core.job.flow.FlowExecutionException.class
org.springframework.batch.core.job.flow.FlowJob$1.class
org.springframework.batch.core.configuration.ListableJobRegistry.class
org.springframework.batch.core.configuration.JobLocator.class
org.springframework.batch.core.configuration.JobRegistry.class
org.springframework.batch.core.configuration.DuplicateJobException.class
org.springframework.batch.core.configuration.util.AnnotationMethodResolver$1.class
org.springframework.batch.core.configuration.util.MethodResolver.class
org.springframework.batch.core.configuration.util.AnnotationMethodResolver.class
org.springframework.batch.core.configuration.util.MethodInvokerUtils.class
org.springframework.batch.core.configuration.util.MethodInvokerUtils$1.class
org.springframework.batch.core.configuration.util.SimpleMethodInvoker.class
org.springframework.batch.core.configuration.util.MethodInvoker.class
org.springframework.batch.core.configuration.support.ClassPathXmlApplicationContextFactory$ResourceXmlApplicationContext.class
org.springframework.batch.core.configuration.support.ReferenceJobFactory.class
org.springframework.batch.core.configuration.support.JobFactoryRegistrationListener.class
org.springframework.batch.core.configuration.support.ApplicationContextJobFactory$ContextClosingJob.class
org.springframework.batch.core.configuration.support.MapJobRegistry.class
org.springframework.batch.core.configuration.support.ApplicationContextFactory.class
org.springframework.batch.core.configuration.support.ClassPathXmlApplicationContextFactory.class
org.springframework.batch.core.configuration.support.JobRegistryBeanPostProcessor.class
org.springframework.batch.core.configuration.support.ClassPathXmlApplicationContextFactory$1.class
org.springframework.batch.core.configuration.support.ClassPathXmlJobRegistry.class
org.springframework.batch.core.configuration.support.ApplicationContextJobFactory.class
org.springframework.batch.core.configuration.support.OsgiBundleXmlApplicationContextFactory.class
org.springframework.batch.core.configuration.JobFactory.class
org/springframework/batch/core/configuration/xml/spring-batch-2.0.xsd
org.springframework.batch.core.configuration.xml.DelegatingStep.class
org.springframework.batch.core.configuration.xml.CoreNamespaceUtils.class
org.springframework.batch.core.configuration.xml.JobParser.class
org.springframework.batch.core.configuration.xml.JobExecutionListenerParser.class
org.springframework.batch.core.configuration.xml.TopLevelStepParser.class
org.springframework.batch.core.configuration.xml.SplitParser.class
org.springframework.batch.core.configuration.xml.AbstractStepParser.class
org.springframework.batch.core.configuration.xml.InlineStepParser.class
org.springframework.batch.core.configuration.xml.StandaloneStepParser.class
org.springframework.batch.core.configuration.xml.CoreNamespaceHandler.class
org.springframework.batch.core.configuration.xml.TaskletElementParser.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
|