├── .gitattributes ├── .github └── workflows │ ├── build-main.yml │ └── release-to-maven-central.yml ├── .gitignore ├── LICENSE.TXT ├── README.md ├── batch-web-spring-boot-autoconfigure ├── pom.xml └── src │ ├── main │ ├── java │ │ └── de │ │ │ └── codecentric │ │ │ └── batch │ │ │ ├── configuration │ │ │ ├── AutomaticJobRegistrarConfiguration.java │ │ │ ├── AutomaticJobRegistrarConfigurationSupport.java │ │ │ ├── BatchConfigurationProperties.java │ │ │ ├── BatchWebAutoConfiguration.java │ │ │ ├── Jsr352BatchConfiguration.java │ │ │ ├── ListenerProvider.java │ │ │ ├── MetricsConfiguration.java │ │ │ ├── StepExecutionJacksonMixIn.java │ │ │ ├── TaskExecutorBatchConfiguration.java │ │ │ ├── TaskExecutorConfiguration.java │ │ │ └── WebConfig.java │ │ │ ├── jsr352 │ │ │ └── CustomJsrJobOperator.java │ │ │ ├── listener │ │ │ ├── AddListenerToJobService.java │ │ │ ├── JobLoggingApplicationListener.java │ │ │ ├── LoggingAfterJobListener.java │ │ │ ├── LoggingListener.java │ │ │ ├── ProtocolListener.java │ │ │ └── RunningExecutionTrackerListener.java │ │ │ ├── logging │ │ │ ├── DefaultJobLogFileNameCreator.java │ │ │ └── JobLogFileNameCreator.java │ │ │ ├── metrics │ │ │ ├── AbstractBatchMetricsAspect.java │ │ │ ├── BatchMetrics.java │ │ │ ├── BatchMetricsImpl.java │ │ │ ├── MetricsListener.java │ │ │ ├── MetricsOutputFormatter.java │ │ │ └── ReaderProcessorWriterMetricsAspect.java │ │ │ ├── monitoring │ │ │ └── RunningExecutionTracker.java │ │ │ ├── scheduling │ │ │ └── concurrent │ │ │ │ └── MdcThreadPoolTaskExecutor.java │ │ │ └── web │ │ │ ├── JobMonitoringController.java │ │ │ └── JobOperationsController.java │ └── resources │ │ ├── META-INF │ │ ├── additional-spring-configuration-metadata.json │ │ └── spring.factories │ │ ├── batch-web-spring-boot-autoconfigure.properties │ │ └── logback-batch-base.xml │ └── test │ ├── java │ └── de │ │ └── codecentric │ │ └── batch │ │ ├── AutoconfigureBatchWebStarter.java │ │ ├── MetricsTestApplication.java │ │ ├── TestApplication.java │ │ ├── TestConfiguration.java │ │ ├── TestListenerConfiguration.java │ │ ├── item │ │ ├── DelayItemProcessor.java │ │ ├── DummyItemReader.java │ │ ├── LogItemProcessor.java │ │ ├── LogItemWriteListener.java │ │ ├── LogItemWriter.java │ │ └── MetricsItemProcessor.java │ │ ├── jobs │ │ ├── DelayJobConfiguration.java │ │ ├── FlatFileJobConfiguration.java │ │ ├── FlatFileToDbNoSkipJobConfiguration.java │ │ ├── FlatFileToDbSkipJobConfiguration.java │ │ ├── FlatFileToDbSkipProcessorNonTransactionalJobConfiguration.java │ │ ├── FlatFileToDbSkipReaderTransactionalJobConfiguration.java │ │ ├── IncrementerJobConfiguration.java │ │ ├── SimpleBatchMetricsJobConfiguration.java │ │ └── SimpleJobConfiguration.java │ │ ├── listener │ │ ├── ProtocolListenerTest.java │ │ └── TestListener.java │ │ ├── metrics │ │ ├── Action.java │ │ ├── BatchMetricsImplTest.java │ │ ├── Item.java │ │ ├── ListenerMetricsAspect.java │ │ ├── MetricNames.java │ │ ├── MetricsTestException.java │ │ └── item │ │ │ ├── MetricsTestChunkListener.java │ │ │ ├── MetricsTestItemProcessListener.java │ │ │ ├── MetricsTestItemProcessor.java │ │ │ ├── MetricsTestItemReadListener.java │ │ │ ├── MetricsTestItemReader.java │ │ │ ├── MetricsTestItemWriteListener.java │ │ │ ├── MetricsTestItemWriter.java │ │ │ └── MetricsTestSkipListener.java │ │ ├── scheduling │ │ └── concurrent │ │ │ └── MdcThreadPoolTaskExecutorTest.java │ │ └── test │ │ ├── FlatFileJobTest.java │ │ ├── JavaConfigIntegrationTest.java │ │ ├── JobParametersIncrementerIntegrationTest.java │ │ ├── Jsr352IntegrationTest.java │ │ ├── ListenerProviderIntegrationTest.java │ │ ├── PartitionedFlatFileJobTest.java │ │ ├── StopJobIntegrationTest.java │ │ ├── XmlIntegrationTest.java │ │ └── metrics │ │ ├── BatchMetricsAspectIntegrationTest.java │ │ ├── BatchMetricsExporterIntegrationTest.java │ │ ├── BatchMetricsFlatFileToDbIntegrationTest.java │ │ ├── MetricValidator.java │ │ └── MetricValidatorBuilder.java │ └── resources │ ├── META-INF │ ├── batch-jobs │ │ └── simpleJsr352Job.xml │ └── spring │ │ └── batch │ │ └── jobs │ │ ├── flat-file-2-job.xml │ │ ├── flat-file-job.xml │ │ └── partitioned-flat-file-job.xml │ ├── application.properties │ ├── in-javaconfig.txt │ ├── in-xmlconfig.txt │ ├── logback.xml │ ├── metrics │ ├── create-schema.sql │ ├── flatFileToDbNoSkipJob_Failed.csv │ ├── flatFileToDbNoSkipJob_Restart_FirstRun.csv │ ├── flatFileToDbNoSkipJob_Restart_SecondRun.csv │ ├── flatFileToDbNoSkipJob_Success.csv │ ├── flatFileToDbSkipJob_SkipInProcess.csv │ ├── flatFileToDbSkipJob_SkipInProcess_Failed.csv │ ├── flatFileToDbSkipJob_SkipInRead.csv │ └── flatFileToDbSkipJob_SkipInWrite.csv │ ├── partition-1.txt │ └── partition-2.txt ├── batch-web-spring-boot-build └── pom.xml ├── batch-web-spring-boot-dependencies └── pom.xml ├── batch-web-spring-boot-docs ├── deploy-gh-pages.sh ├── pom.xml └── src │ └── main │ └── asciidoc │ └── index.adoc ├── batch-web-spring-boot-samples ├── batch-boot-file-to-db │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── de │ │ │ │ │ └── codecentric │ │ │ │ │ └── batch │ │ │ │ │ └── filetodb │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── configuration │ │ │ │ │ └── DataSourceConfiguration.java │ │ │ │ │ ├── domain │ │ │ │ │ └── Partner.java │ │ │ │ │ └── item │ │ │ │ │ ├── ExampleService.java │ │ │ │ │ └── LogItemProcessor.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── spring │ │ │ │ │ └── batch │ │ │ │ │ └── jobs │ │ │ │ │ └── flatfile-job-context.xml │ │ │ │ ├── application.properties │ │ │ │ ├── logback.xml │ │ │ │ ├── partner-import.csv │ │ │ │ └── schema-partner.sql │ │ └── test │ │ │ └── java │ │ │ └── de │ │ │ └── codecentric │ │ │ └── batch │ │ │ └── filetodb │ │ │ ├── ApplicationTests.java │ │ │ └── FlatFileJobIntegrationTest.java │ └── startBatchApplication.launch ├── batch-boot-simple-jsr352 │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── de │ │ │ │ └── codecentric │ │ │ │ └── batch │ │ │ │ └── simplejsr │ │ │ │ ├── Application.java │ │ │ │ └── item │ │ │ │ ├── DummyItemReader.java │ │ │ │ ├── LogItemProcessor.java │ │ │ │ ├── LogItemWriter.java │ │ │ │ ├── PartitionedItemReader.java │ │ │ │ └── SimplePartitionMapper.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── batch-jobs │ │ │ │ ├── partitionMapperJobNoDI.xml │ │ │ │ ├── partitionMapperJobSpringDI.xml │ │ │ │ ├── partitionMapperJobSpringDIBatchXml.xml │ │ │ │ ├── partitionedJobNoDI.xml │ │ │ │ ├── partitionedJobSpringDI.xml │ │ │ │ └── simpleJob.xml │ │ │ └── batch.xml │ │ │ ├── application.properties │ │ │ └── logback.xml │ │ └── test │ │ └── java │ │ └── de │ │ └── codecentric │ │ └── batch │ │ └── simplejsr │ │ ├── ApplicationTests.java │ │ └── TraditionalJsr352Test.java ├── batch-boot-simple │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── de │ │ │ │ └── codecentric │ │ │ │ └── batch │ │ │ │ └── simple │ │ │ │ ├── Application.java │ │ │ │ ├── item │ │ │ │ ├── DummyItemReader.java │ │ │ │ ├── LogItemProcessor.java │ │ │ │ └── LogItemWriter.java │ │ │ │ └── job │ │ │ │ └── SimpleJobConfiguration.java │ │ └── resources │ │ │ ├── application.properties │ │ │ ├── logback.xml │ │ │ ├── monitoring.http │ │ │ └── operations.http │ │ └── test │ │ └── java │ │ └── de │ │ └── codecentric │ │ └── batch │ │ └── simple │ │ └── ApplicationTests.java └── pom.xml ├── batch-web-spring-boot-starter └── pom.xml └── pom.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/.github/workflows/build-main.yml -------------------------------------------------------------------------------- /.github/workflows/release-to-maven-central.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/.github/workflows/release-to-maven-central.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/README.md -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/pom.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/AutomaticJobRegistrarConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/AutomaticJobRegistrarConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/AutomaticJobRegistrarConfigurationSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/AutomaticJobRegistrarConfigurationSupport.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/BatchConfigurationProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/BatchConfigurationProperties.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/BatchWebAutoConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/BatchWebAutoConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/Jsr352BatchConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/Jsr352BatchConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/ListenerProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/ListenerProvider.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/MetricsConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/MetricsConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/StepExecutionJacksonMixIn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/StepExecutionJacksonMixIn.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/TaskExecutorBatchConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/TaskExecutorBatchConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/TaskExecutorConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/TaskExecutorConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/WebConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/configuration/WebConfig.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/jsr352/CustomJsrJobOperator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/jsr352/CustomJsrJobOperator.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/AddListenerToJobService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/AddListenerToJobService.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/JobLoggingApplicationListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/JobLoggingApplicationListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/LoggingAfterJobListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/LoggingAfterJobListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/LoggingListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/LoggingListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/ProtocolListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/ProtocolListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/RunningExecutionTrackerListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/listener/RunningExecutionTrackerListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/logging/DefaultJobLogFileNameCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/logging/DefaultJobLogFileNameCreator.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/logging/JobLogFileNameCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/logging/JobLogFileNameCreator.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/AbstractBatchMetricsAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/AbstractBatchMetricsAspect.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/BatchMetrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/BatchMetrics.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/BatchMetricsImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/BatchMetricsImpl.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/MetricsListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/MetricsListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/MetricsOutputFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/MetricsOutputFormatter.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/ReaderProcessorWriterMetricsAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/metrics/ReaderProcessorWriterMetricsAspect.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/monitoring/RunningExecutionTracker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/monitoring/RunningExecutionTracker.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/scheduling/concurrent/MdcThreadPoolTaskExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/scheduling/concurrent/MdcThreadPoolTaskExecutor.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/web/JobMonitoringController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/web/JobMonitoringController.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/web/JobOperationsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/java/de/codecentric/batch/web/JobOperationsController.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/resources/META-INF/spring.factories -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/resources/batch-web-spring-boot-autoconfigure.properties: -------------------------------------------------------------------------------- 1 | spring.batch.job.enabled=false 2 | -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/main/resources/logback-batch-base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/main/resources/logback-batch-base.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/AutoconfigureBatchWebStarter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/AutoconfigureBatchWebStarter.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/MetricsTestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/MetricsTestApplication.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/TestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/TestApplication.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/TestConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/TestConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/TestListenerConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/TestListenerConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/DelayItemProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/DelayItemProcessor.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/DummyItemReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/DummyItemReader.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/LogItemProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/LogItemProcessor.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/LogItemWriteListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/LogItemWriteListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/LogItemWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/LogItemWriter.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/MetricsItemProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/item/MetricsItemProcessor.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/DelayJobConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/DelayJobConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/FlatFileJobConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/FlatFileJobConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/FlatFileToDbNoSkipJobConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/FlatFileToDbNoSkipJobConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/FlatFileToDbSkipJobConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/FlatFileToDbSkipJobConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/FlatFileToDbSkipProcessorNonTransactionalJobConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/FlatFileToDbSkipProcessorNonTransactionalJobConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/FlatFileToDbSkipReaderTransactionalJobConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/FlatFileToDbSkipReaderTransactionalJobConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/IncrementerJobConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/IncrementerJobConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/SimpleBatchMetricsJobConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/SimpleBatchMetricsJobConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/SimpleJobConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/jobs/SimpleJobConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/listener/ProtocolListenerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/listener/ProtocolListenerTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/listener/TestListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/listener/TestListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/Action.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/Action.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/BatchMetricsImplTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/BatchMetricsImplTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/Item.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/ListenerMetricsAspect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/ListenerMetricsAspect.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/MetricNames.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/MetricNames.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/MetricsTestException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/MetricsTestException.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestChunkListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestChunkListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemProcessListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemProcessListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemProcessor.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemReadListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemReadListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemReader.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemWriteListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemWriteListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestItemWriter.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestSkipListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/metrics/item/MetricsTestSkipListener.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/scheduling/concurrent/MdcThreadPoolTaskExecutorTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/scheduling/concurrent/MdcThreadPoolTaskExecutorTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/FlatFileJobTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/FlatFileJobTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/JavaConfigIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/JavaConfigIntegrationTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/JobParametersIncrementerIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/JobParametersIncrementerIntegrationTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/Jsr352IntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/Jsr352IntegrationTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/ListenerProviderIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/ListenerProviderIntegrationTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/PartitionedFlatFileJobTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/PartitionedFlatFileJobTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/StopJobIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/StopJobIntegrationTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/XmlIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/XmlIntegrationTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/metrics/BatchMetricsAspectIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/metrics/BatchMetricsAspectIntegrationTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/metrics/BatchMetricsExporterIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/metrics/BatchMetricsExporterIntegrationTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/metrics/BatchMetricsFlatFileToDbIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/metrics/BatchMetricsFlatFileToDbIntegrationTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/metrics/MetricValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/metrics/MetricValidator.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/metrics/MetricValidatorBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/java/de/codecentric/batch/test/metrics/MetricValidatorBuilder.java -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/META-INF/batch-jobs/simpleJsr352Job.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/META-INF/batch-jobs/simpleJsr352Job.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/META-INF/spring/batch/jobs/flat-file-2-job.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/META-INF/spring/batch/jobs/flat-file-2-job.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/META-INF/spring/batch/jobs/flat-file-job.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/META-INF/spring/batch/jobs/flat-file-job.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/META-INF/spring/batch/jobs/partitioned-flat-file-job.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/META-INF/spring/batch/jobs/partitioned-flat-file-job.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/application.properties -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/in-javaconfig.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/in-xmlconfig.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/logback.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/metrics/create-schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/metrics/create-schema.sql -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbNoSkipJob_Failed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbNoSkipJob_Failed.csv -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbNoSkipJob_Restart_FirstRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbNoSkipJob_Restart_FirstRun.csv -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbNoSkipJob_Restart_SecondRun.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbNoSkipJob_Restart_SecondRun.csv -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbNoSkipJob_Success.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbNoSkipJob_Success.csv -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbSkipJob_SkipInProcess.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbSkipJob_SkipInProcess.csv -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbSkipJob_SkipInProcess_Failed.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbSkipJob_SkipInProcess_Failed.csv -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbSkipJob_SkipInRead.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbSkipJob_SkipInRead.csv -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbSkipJob_SkipInWrite.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/metrics/flatFileToDbSkipJob_SkipInWrite.csv -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/partition-1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 10 -------------------------------------------------------------------------------- /batch-web-spring-boot-autoconfigure/src/test/resources/partition-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-autoconfigure/src/test/resources/partition-2.txt -------------------------------------------------------------------------------- /batch-web-spring-boot-build/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-build/pom.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-dependencies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-dependencies/pom.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-docs/deploy-gh-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-docs/deploy-gh-pages.sh -------------------------------------------------------------------------------- /batch-web-spring-boot-docs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-docs/pom.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-docs/src/main/asciidoc/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-docs/src/main/asciidoc/index.adoc -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/.gitignore -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/README.md -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/pom.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/java/de/codecentric/batch/filetodb/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/java/de/codecentric/batch/filetodb/Application.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/java/de/codecentric/batch/filetodb/configuration/DataSourceConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/java/de/codecentric/batch/filetodb/configuration/DataSourceConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/java/de/codecentric/batch/filetodb/domain/Partner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/java/de/codecentric/batch/filetodb/domain/Partner.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/java/de/codecentric/batch/filetodb/item/ExampleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/java/de/codecentric/batch/filetodb/item/ExampleService.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/java/de/codecentric/batch/filetodb/item/LogItemProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/java/de/codecentric/batch/filetodb/item/LogItemProcessor.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/resources/META-INF/spring/batch/jobs/flatfile-job-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/resources/META-INF/spring/batch/jobs/flatfile-job-context.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/resources/application.properties -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/resources/logback.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/resources/partner-import.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/resources/partner-import.csv -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/resources/schema-partner.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/main/resources/schema-partner.sql -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/test/java/de/codecentric/batch/filetodb/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/test/java/de/codecentric/batch/filetodb/ApplicationTests.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/src/test/java/de/codecentric/batch/filetodb/FlatFileJobIntegrationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/src/test/java/de/codecentric/batch/filetodb/FlatFileJobIntegrationTest.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-file-to-db/startBatchApplication.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-file-to-db/startBatchApplication.launch -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/.gitignore -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/pom.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/Application.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/item/DummyItemReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/item/DummyItemReader.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/item/LogItemProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/item/LogItemProcessor.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/item/LogItemWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/item/LogItemWriter.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/item/PartitionedItemReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/item/PartitionedItemReader.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/item/SimplePartitionMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/java/de/codecentric/batch/simplejsr/item/SimplePartitionMapper.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/partitionMapperJobNoDI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/partitionMapperJobNoDI.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/partitionMapperJobSpringDI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/partitionMapperJobSpringDI.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/partitionMapperJobSpringDIBatchXml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/partitionMapperJobSpringDIBatchXml.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/partitionedJobNoDI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/partitionedJobNoDI.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/partitionedJobSpringDI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/partitionedJobSpringDI.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/simpleJob.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch-jobs/simpleJob.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/META-INF/batch.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | logging.path=/tmp/ 2 | 3 | -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/main/resources/logback.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/test/java/de/codecentric/batch/simplejsr/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/test/java/de/codecentric/batch/simplejsr/ApplicationTests.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/test/java/de/codecentric/batch/simplejsr/TraditionalJsr352Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple-jsr352/src/test/java/de/codecentric/batch/simplejsr/TraditionalJsr352Test.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/.gitignore -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/pom.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/src/main/java/de/codecentric/batch/simple/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/src/main/java/de/codecentric/batch/simple/Application.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/src/main/java/de/codecentric/batch/simple/item/DummyItemReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/src/main/java/de/codecentric/batch/simple/item/DummyItemReader.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/src/main/java/de/codecentric/batch/simple/item/LogItemProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/src/main/java/de/codecentric/batch/simple/item/LogItemProcessor.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/src/main/java/de/codecentric/batch/simple/item/LogItemWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/src/main/java/de/codecentric/batch/simple/item/LogItemWriter.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/src/main/java/de/codecentric/batch/simple/job/SimpleJobConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/src/main/java/de/codecentric/batch/simple/job/SimpleJobConfiguration.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/src/main/resources/application.properties -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/src/main/resources/logback.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/src/main/resources/monitoring.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/src/main/resources/monitoring.http -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/src/main/resources/operations.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/src/main/resources/operations.http -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/batch-boot-simple/src/test/java/de/codecentric/batch/simple/ApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/batch-boot-simple/src/test/java/de/codecentric/batch/simple/ApplicationTests.java -------------------------------------------------------------------------------- /batch-web-spring-boot-samples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-samples/pom.xml -------------------------------------------------------------------------------- /batch-web-spring-boot-starter/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/batch-web-spring-boot-starter/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecentric/spring-boot-starter-batch-web/HEAD/pom.xml --------------------------------------------------------------------------------