JAVA-18609 GitHub Issue: Spring Batch - JobBuilderFactory and StepBui… (#13618)

* JAVA-18609 GitHub Issue: Spring Batch - JobBuilderFactory and StepBuilderFactory are deprecated

---------

Co-authored-by: timis1 <noreplay@yahoo.com>
This commit is contained in:
timis1
2023-04-05 12:46:50 +03:00
committed by GitHub
parent fcacb8073a
commit 97c0a44901
53 changed files with 548 additions and 742 deletions

View File

@@ -21,9 +21,9 @@ public class LineReader implements ItemReader<Line>, StepExecutionListener {
}
@Override
public Line read() throws Exception {
public Line read() {
Line line = fu.readLine();
if (line != null) logger.debug("Read line: " + line.toString());
if (line != null) logger.debug("Read line: " + line);
return line;
}