Reputation: 10419
In Spring batch (see https://docs.spring.io/spring-batch/3.0.x/reference/html/metaDataSchema.html) there are six tables:
Are there no more tables for things like Job Registry, Job Repository, Job Explorer etc?
Thanks
Upvotes: 1
Views: 10732
Reputation: 138
Job Resgistry, Job Explorer, Job Repository are interfaces you can use in querying the Spring Batch tables not actual tables. See https://docs.spring.io/spring-batch/3.0.x/reference/html/configureJob.html look at section 4.6.1 Querying the Repository
Upvotes: 3