15 lines
652 B
Properties
15 lines
652 B
Properties
# Placeholders batch.*
|
|
# for MySQL:
|
|
batch.jdbc.driver=com.mysql.jdbc.Driver
|
|
batch.jdbc.url=jdbc:mysql://localhost/test
|
|
batch.jdbc.user=root
|
|
batch.jdbc.password=root
|
|
batch.schema.script=classpath:/org/springframework/batch/core/schema-mysql.sql
|
|
batch.business.schema.script=classpath:/business-schema-mysql.sql
|
|
batch.data.source.init=false
|
|
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.verify.cursor.position=true
|
|
batch.jdbc.validationQuery=SELECT 1
|