We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b812492 commit b020da4Copy full SHA for b020da4
spring-batch-docs/modules/ROOT/pages/scalability.adoc
@@ -346,8 +346,8 @@ configuration:
346
[source, java]
347
----
348
@Bean
349
-public Step step1Manager() {
350
- return stepBuilderFactory.get("step1.manager")
+public Step step1Manager(JobRepository jobRepository) {
+ return new StepBuilder("step1.manager", jobRepository)
351
.<String, String>partitioner("step1", partitioner())
352
.step(step1())
353
.gridSize(10)
0 commit comments