Class 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

      Fields 
      Modifier and TypeFieldDescription
      protected org.apache.commons.logging.Loglogger 
    • Constructor Summary

      Constructors 
      ConstructorDescription
      JmsItemWriter() 
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethodDescription
      voidsetJmsTemplate​(org.springframework.jms.core.JmsOperations jmsTemplate)
      Setter for JMS template.
      voidwrite​(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
    • Field Detail

      • logger

        protected org.apache.commons.logging.Log logger
    • Constructor Detail

      • JmsItemWriter

        public JmsItemWriter()
    • Method Detail

      • 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>
        Parameters:
        items - items to be written
        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)