• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Exception handling in camel using rollback and redeliver

 
Ranch Hand
Posts: 30
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have camel route where I am consuming message from back out queue (BOQ) and processing it.During processing I get an exception.I want database updates to be rolled back and message to be delivered to Dead letter Queue(DLQ)

So Here is the route I am using




In this route after getting exception database updates are rolled back but message is getting delivered infinite times and it is not going to DLQ.

If I remove markRollbackOnly database updates won't be rolled back.So Please suggest some solution to resolve it.
reply
    Bookmark Topic Watch Topic
  • New Topic