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.
How to get rid of the warning: `java.lang.RuntimeException: No beanFactory`
I am working on a project. My goal is to design a Spring IntegrationFlow using Version 6.3.2. that reads from a Sftp Server and splits and transforms the received XML files.
How to detect end of IntegrationFlow processing after split and filter?
In Spring Integration, when creating IntegrationFlow, when event initiates a flow I have multiple operations, including splitter and filter. I would like to detect when all of the messages splitted has been processed.
Dynamically registering multiple flows and running in parallel
I am dynamically registering multiple IntegrationFlow
s:
Inspecting payload to an outbound FTP adapter with MockIntegrationContext
I have a Spring Integration flow that looks like the following (simplified)
Spring Integration – TracingContext Lost in WebFluxRequestExecutingMessageHandler
This issue is an extension of the SO issue Spring Integration Restore ReactorContext into Imperative Processing
InboundChannelAdapter – transactional rollback
Is there a built in “transactional” mechanism when polling rows and updating?
Spring Integration Restore ReactorContext into Imperative Processing
With our complex IntegrationFlow that switches between Reactive and Imperative processing, we are seeing a behavior where the ObservationContext (traceId) is changed right after WebFlux.outboundGateway
call.
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.
Spring Integration – Support for SMPP
Does Spring Integration support SMPP (Short Message Peer-to-Peer) protocol? Have checked the documentation, couldn’t find one for SMPP in particular.