You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-batch-core/src/test/java/org/springframework/batch/core/listener/CompositeItemReadListenerTests.java
Copy file name to clipboardExpand all lines: spring-batch-core/src/test/java/org/springframework/batch/core/listener/CompositeItemWriteListenerTests.java
Copy file name to clipboardExpand all lines: spring-batch-core/src/test/java/org/springframework/batch/core/step/tasklet/ConfigurableSystemProcessExitCodeMapperTests.java
+7-10
Original file line number
Diff line number
Diff line change
@@ -36,16 +36,13 @@ class ConfigurableSystemProcessExitCodeMapperTests {
Copy file name to clipboardExpand all lines: spring-batch-infrastructure/src/main/java/org/springframework/batch/item/adapter/AbstractMethodInvokingDelegator.java
+13-15
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,9 @@
29
29
importorg.springframework.util.StringUtils;
30
30
31
31
/**
32
-
* Superclass for delegating classes which dynamically call a custom method of injected
33
-
* object. Provides convenient API for dynamic method invocation shielding subclasses from
34
-
* low-level details and exception handling.
32
+
* Superclass for delegating classes which dynamically call a custom method of an injected
33
+
* object. Provides a convenient API for dynamic method invocation shielding subclasses
34
+
* from low-level details and exception handling.
35
35
* <p>
36
36
* {@link Exception}s thrown by a successfully invoked delegate method are re-thrown
37
37
* without wrapping. In case the delegate method throws a {@link Throwable} that doesn't
Copy file name to clipboardExpand all lines: spring-batch-infrastructure/src/main/java/org/springframework/batch/item/adapter/PropertyExtractingDelegatingItemWriter.java
+5-5
Original file line number
Diff line number
Diff line change
@@ -72,13 +72,13 @@ public void afterPropertiesSet() throws Exception {
72
72
}
73
73
74
74
/**
75
-
* @param fieldsUsedAsMethodArguments the values of the these item's fields will be
76
-
* used as arguments for the delegate method. Nested property values are supported,
77
-
* e.g. <code>address.city</code>
75
+
* Sets the values of the item's fields to be used as arguments for the delegate
76
+
* method.
77
+
* <p>
78
+
* Nested property values are supported, e.g. <code>address.city</code>
Copy file name to clipboardExpand all lines: spring-batch-infrastructure/src/main/java/org/springframework/batch/item/avro/builder/AvroItemReaderBuilder.java
+3-1
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,8 @@
24
24
importorg.springframework.util.Assert;
25
25
importorg.springframework.util.StringUtils;
26
26
27
+
importjava.nio.charset.Charset;
28
+
27
29
/**
28
30
* A builder implementation for the {@link AvroItemReader}.
29
31
*
@@ -80,7 +82,7 @@ public AvroItemReaderBuilder<T> schema(Resource schema) {
Copy file name to clipboardExpand all lines: spring-batch-infrastructure/src/main/java/org/springframework/batch/item/avro/builder/AvroItemWriterBuilder.java
0 commit comments