We are quite happy with spring-integration except when things do not work as expected. Then it is really difficult to find out what is going on (we are using xml configuration). Can someone point me to the java components behind the spring integration components in order to debug them. For instance: If I have a headerValueRouter, where can I set a breakpoint to find out what is the actual value of the header inside the message, just before the component is doing the routing. Maybe there is even a list int:component->java class?
相关问题
- Spring Integration - Inbound file endpoint. How to
- Spring Integration Kafka vs Spring Kafka
- Spring Cloud Stream + Quartz
- Tcp connection with Spring Integration framework
- How can I map incoming headers as String instead o
相关文章
- Multiple channel's message comes into single c
- Subset of changes from transaction sometimes not v
- @MessagingGateway, Spring Cloud Stream, and error
- Spring Integration - Reliable TCP for high volume
- Spring integration move file after processing
- Spring Integration - writing to a error queue when
- Need to process multiple files in parallel in Spri
- Group received messages in RabbitMQ, preferably us
True. The list exists, but it isn't so direct, as you may expect. Each xml component goes to some parser. And the last one configure the Spring Integration component(s). You can find the mapping from source code of any
AbstractIntegrationNamespaceHandler
implementation.Actually, we try to reflect xml-tag names with Java class names. So
<header-value-router>
->HeaderValueRouterParser
->HeaderValueRouter
.