Files
spring-cloud-dataflow-samples/timestamp-batch
David Turanski 61d9e7c7ab Add custom batch configurer for Oracle
* Override default transaction isolation level 'ISOLATION_REPEATABLE_READ' which Oracle does not support. 
* Required to run ATs against Oracle
2022-04-07 15:40:24 -05:00
..
2022-03-30 13:22:11 -05:00

= Spring Batch Job Task

This is a Spring Cloud Task application that executes two simple Spring Batch Jobs.

== Requirements

* Java 8 or Above

== Classes

* BatchJobApplication - the Spring Boot Main Application

== Build

=== Build and test
[source,shell,indent=2]
----
./mvnw clean install
----

=== Build Docker container

[source,shell,indent=2]
----
./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=spring/timestamp-batch-task:latest
----

== Run

=== Command line
[source,shell,indent=2]
----
java -jar target/timestamp-batch-task-2.0.0.jar
----

=== Docker
[source,shell,indent=2]
----
docker run spring/timestamp-batch-task:latest
----

=== Properties
* *timestamp.format* - The timestamp format, "yyyy-MM-dd HH:mm:ss.SSS" by default.