21 lines
847 B
Properties
21 lines
847 B
Properties
# Placeholders batch.*
|
|
# for MySQL:
|
|
batch.jdbc.driver=com.mysql.jdbc.Driver
|
|
batch.jdbc.url=jdbc:mysql://localhost/test
|
|
batch.jdbc.user=test
|
|
batch.jdbc.password=test
|
|
batch.jdbc.testWhileIdle=true
|
|
batch.jdbc.validationQuery=SELECT 1
|
|
batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-mysql.sql
|
|
batch.schema.script=classpath:/org/springframework/batch/core/schema-mysql.sql
|
|
batch.business.schema.script=classpath:business-schema-mysql.sql
|
|
batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.MySQLMaxValueIncrementer
|
|
batch.database.incrementer.parent=columnIncrementerParent
|
|
batch.lob.handler.class=org.springframework.jdbc.support.lob.DefaultLobHandler
|
|
batch.jdbc.pool.size=6
|
|
batch.grid.size=50
|
|
batch.verify.cursor.position=true
|
|
batch.isolationlevel=ISOLATION_SERIALIZABLE
|
|
batch.table.prefix=BATCH_
|
|
|