Results 1 to 2 of 2

Thread: Payload object

Hybrid View

  1. #1

    Default Payload object

    I'm going to use JMS for asynchrous processing within my application. If I use Spring Integration, do my payload object need to be Serializable for passing between queue?

  2. #2
    Join Date
    May 2007
    Location
    Netherlands
    Posts
    614

    Default

    Quote Originally Posted by ballsuen View Post
    I'm going to use JMS for asynchrous processing within my application. If I use Spring Integration, do my payload object need to be Serializable for passing between queue?
    Spring Integration has an adapter for jms, the same restrictions as with normal Jms apply (you have to be able to fit your payload in one of the message types). If you use ObjectMessage you need to implement Serializable.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •