org.springframework.batch.item.jms
Class JmsItemWriter<T>
java.lang.Object
org.springframework.batch.item.jms.JmsItemWriter<T>
- All Implemented Interfaces:
- ItemWriter<T>
public class JmsItemWriter<T>
- extends java.lang.Object
- implements ItemWriter<T>
An ItemWriter
for JMS using a JmsTemplate
. The template
should have a default destination, which will be used to send items in
write(List)
.
The implementation is thread safe after its properties are set (normal
singleton behavior).
- Author:
- Dave Syer
Field Summary |
protected org.apache.commons.logging.Log |
logger
|
Method Summary |
void |
setJmsTemplate(org.springframework.jms.core.JmsOperations jmsTemplate)
Setter for JMS template. |
void |
write(java.util.List<? extends T> items)
Send the items one-by-one to the default destination of the jms template. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
logger
protected org.apache.commons.logging.Log logger
JmsItemWriter
public JmsItemWriter()
setJmsTemplate
public void setJmsTemplate(org.springframework.jms.core.JmsOperations jmsTemplate)
- Setter for JMS template.
- Parameters:
jmsTemplate
- a JmsOperations
instance
write
public void write(java.util.List<? extends T> items)
throws java.lang.Exception
- Send the items one-by-one to the default destination of the jms template.
- Specified by:
write
in interface ItemWriter<T>
- Throws:
java.lang.Exception
- if there are errors. The framework will catch the
exception and convert or rethrow it as appropriate.- See Also:
ItemWriter.write(java.util.List)
Copyright © 2011. All Rights Reserved.