You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the reader is non-transactional, and the exception is skippable, Spring Batch does a good job of isolating the failing item(s) in a chunk write by rescoping the transaction around each item so that only the failing item is skipped. This does not seem to be the behavior when the reader is transactional. When I use JmsItemReader and one of the items in a chunk fails with a skippable exception during write, all items in the chunk get skipped. Is this the expected behavior?