BATCH-1695: fix typos
This commit is contained in:
@@ -583,7 +583,7 @@ public Trade read() throws Exception {
|
||||
<beans:property name="keys" value="someKey"/>
|
||||
</beans:bean></emphasis></programlisting>
|
||||
|
||||
<para>Finally, to the saved values must be retrieved from the
|
||||
<para>Finally, the saved values must be retrieved from the
|
||||
<classname>Job</classname> <classname>ExeuctionContext</classname>:</para>
|
||||
|
||||
<programlisting>public class RetrievingItemWriter implements ItemWriter<Object> {
|
||||
|
||||
@@ -231,7 +231,7 @@ Foo result = template.execute(new RetryCallback<Foo>() {
|
||||
// Retry on all exceptions (this is the default)
|
||||
policy.setRetryableExceptions(new Class[] {Exception.class});
|
||||
// ... but never retry IllegalStateException
|
||||
policy.setFatalExceptions(new Class[] {ILlegalStateException.class});
|
||||
policy.setFatalExceptions(new Class[] {IllegalStateException.class});
|
||||
|
||||
// Use the policy...
|
||||
RetryTemplate template = new RetryTemplate();
|
||||
|
||||
Reference in New Issue
Block a user