-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Closed
Labels
in: documentationstatus: first-timers-onlyIssues that we would like first-timers only to work onIssues that we would like first-timers only to work ontype: bug
Milestone
Description
For v5.0.0, most code samples were updated correctly in 219fee3, but some of them were updated incorrectly, like the following snippet:
@Bean
public Step step1(JobRepository jobRepository, PlatformTransactionManager transactionManager) {
return tnew StepBuilder("step1", jobRepository)
.<String, String>chunk(10, transactionManager)
.reader(itemReader())
.writer(itemWriter())
.build();
}
The fix consists in changing tnew
with new
. There are some occurrences in job.adoc
, common-patterns.adoc
, processor.adoc
and step.adoc
.
Metadata
Metadata
Assignees
Labels
in: documentationstatus: first-timers-onlyIssues that we would like first-timers only to work onIssues that we would like first-timers only to work ontype: bug