Questions tagged [spring-integration]

Use this tag for questions about the Spring Integration project. It is not intended for general questions about integrating other Spring projects with other technologies.

Spring Integration provides an extension of the Spring programming model to support the well-known Enterprise Integration Patterns. Spring Integration enables lightweight messaging within Spring-based applications and supports integration with external systems via declarative adapters. Those adapters provide a higher-level of abstraction over Spring's support for remoting, messaging, and scheduling.

Use this tag for questions about the Spring Integration project. It is not intended for general questions about integrating other Spring projects with other technologies. For example "How do I integrate Spring MVC with Struts?" would not be an appropriate question for this tag. Whereas "How do I solve such-and-such issue with the Spring Integration xyz channel adapter?", or "How can I use Spring Integration to communicate with [some legacy system]?" would be appropriate.

Resources

See Also

7860 questions
2
votes
2 answers

How do I use the StompSubProtocolHandler with the int-websocket:client-container

I have a basic setup for a Websocket Stomp Client. The problem is that the StompSubProtocolHandler, WebsocketInboundChannelAdapter and the WebsocketOutboundMessageHandler treat messages as if the application is a server. The messages get special…
2
votes
1 answer

Spring Integration - default exception channel implementation

I am new to spring integration. As part of one of my tasks, I am supposed to have a default error handling mechanism for any failure in the pipeline. I have a file inbound channel adapter as a starting point which I has been written as…
Amit Ware
  • 81
  • 1
  • 4
2
votes
1 answer

Stomp + Spring + ZeroMQ for real-time

I need to implement a real-time scenario via web sockets and ZeroMQ queue. SockJS with Stomp in the client side Spring MVC / Integration with @EnableWebSocketMessageBroker Remote messaging queue with ZeroMQ At this moement, I could connect client…
crm86
  • 1,394
  • 1
  • 21
  • 44
2
votes
1 answer

Testing JMS and Spring Integration

I'm trying to write down a test class in order to test that a message driven channel adapter listening on a JMS Queue is forwarding the message to the right channel (ref. Advanced Spring Integration Testing). Following is the test context xml: