BATCH-2234: Updated documentation to outline setup requirements as well as adding batch-*.properties files for the other database types

This commit is contained in:
Michael Minella
2014-05-16 11:21:13 -05:00
parent 39bb979a51
commit bb048f3cf8
20 changed files with 315 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
# Placeholders batch.*
# for Postgres:
batch.jdbc.driver=org.postgresql.Driver
batch.jdbc.url=jdbc:postgresql://localhost/samples
batch.jdbc.user=postgres
batch.jdbc.password=dba
batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.PostgreSQLSequenceMaxValueIncrementer
batch.schema.script=classpath:/org/springframework/batch/core/schema-postgresql.sql
batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-postgresql.sql
batch.business.schema.script=
batch.jdbc.testWhileIdle=false
batch.jdbc.validationQuery=
# Non-platform dependent settings that you might like to change
batch.data.source.init=true
batch.table.prefix=BATCH_