Relative Content

Tag Archive for spring-integration

Spring Integration Flow with Quartz

Have a Spring Integration application consisting of multiple integration flows and altogether the application is deployed as a container in Kubernetes. The container is auto-scaled as per the load.

QueueChannel using JdbcChannelMessageStore does not show error when serialization fails

I just spend a few hours debugging why my Spring Integration flow was not working. The flow uses a QueueChannel with a JdbcChannelMessageStore to implement an transactional outbox. However, the message was never stored in the database. If I replaced the queue with an in-memory one (Using MessageChannels.queue("test-queue")), then everything worked fine.