spring integration http 根据http的get和post请求 走不同的流程
<int-http:inbound-gateway request-channel="receiveChannel"
name="/receiveGateway"
supported-methods="GET,POST"
mapped-request-headers="Content-Type,user-agent,host,outbound"
mapped-response-headers="Content-Type"/>
<int:channel id="receiveChannel"/>
<bean id="myTestBean" class="org.springframework.integration.samples.test.Mytest"/>
<!-- 路由器 根据message的header 进行区分-->
<int:header-value-router input-channel="receiveChannel"
header-name="http_requestMethod"
resolution-required="false">
<!-- 路由GET 和 POST请求 -->
<int:mapping value="GET" channel="getRequestChannel"/>
<int:mapping value="POST" channel="postRequestChannel"/>
</int:header-value-router>
<!-- 定义处理get请求的channel -->
<int:channel id="getRequestChannel"></int:channel>
<int:service-activator input-channel="getRequestChannel" method="myTest" ref="myTestBean"
output-channel="endChannel" />
<!-- 定义处理post请求的channel -->
<int:channel id="postRequestChannel"></int:channel>
<int:service-activator input-channel="postRequestChannel" method="myTest2" ref="myTestBean"
output-channel="endChannel"/>
<!-- 处理结束 返回的channel -->
<int:channel id="endChannel" />
<int:service-activator input-channel="endChannel" expression="payload + 'return from second mehond'"/>
分享到:
相关推荐
Spring Integration + Spring WS 整合 在 Java 领域中,Spring Integration 和 Spring WS 是两个常用的框架,它们分别负责集成系统和 Web 服务。今天,我们将探讨如何将这两个框架整合在一起,实现一个完整的 Web ...
### Spring Integration in Action #### Part 1 - 背景 **1: Spring Integration 的介绍** - **Spring Integration 概览:** Spring Integration 是一个基于 Spring 框架的企业集成解决方案,它提供了一种声明式...
《Spring Source Spring Integration in Action》是一本专注于Spring Integration框架的实战指南,旨在帮助读者深入理解和应用这个强大的系统集成工具。Spring Integration是Spring框架家族的一部分,它提供了一种...
本文是一篇关于Spring Integration框架的介绍与分析,该框架是SpringSource公司的产品,旨在帮助企业应用间的集成。文章深入探讨了企业应用集成(EAI)的定义、消息传递的概念以及Spring Integration框架的基本概念...
Spring Integration。 官网 Spring Integration API。 Spring Integration 开发文档。
《Pro Spring Integration》是Spring框架领域的一本权威著作,由Manning出版社出版,提供英文原版,非扫描且质量高清,确保读者可以清晰地阅读和理解其中的代码示例和图表。这本书深入探讨了Spring Integration这一...
### Spring Integration介绍 #### 一、Spring Integration概览 **Spring Integration** 是Spring框架的一个扩展项目,它提供了构建企业集成应用程序所需的各种功能和支持。通过利用现有的Spring编程模型和依赖注入...
《Spring Integration 源码深度解析》 Spring Integration 是 Spring 框架的重要组成部分,它为 Java 应用提供了一种轻量级、声明式的集成解决方案,使得在不同系统、服务间的数据交换变得简单易行。Spring ...
《Pro Spring Integration》是一本专注于Spring Integration框架的书籍,由多位作者撰写,旨在帮助读者构建企业级集成解决方案。Spring Integration是为了解决企业中不同应用程序之间数据和服务集成而产生的解决方案...
Spring Integration 是一个基于 Spring 框架的轻量级企业级集成库,它提供了一种声明式的方法来处理系统间的消息传递和数据流。这个"spring integration master"压缩包文件很可能是包含了一系列示例,帮助开发者更好...
Spring Integration Essentials 英文epub 本资源转载自网络,如有侵权,请联系上传者或csdn删除 查看此书详细信息请在美国亚马逊官网搜索此书
Spring Integration Essentials 英文无水印转化版pdf pdf所有页面使用FoxitReader、PDF-XChangeViewer、SumatraPDF和Firefox测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 查看此书详细...
### Spring Integration概述与核心概念 #### 一、Spring Integration简介 Spring Integration是由Spring框架团队开发的一个强大而灵活的企业级应用集成框架。它基于Spring的核心功能,提供了丰富的抽象层来简化...
**Spring Integration 概述** Spring Integration 是 Spring 框架的一个扩展,旨在简化企业级应用中的集成问题。它提供了一种声明式的方式,用于处理系统间的异步通信、消息传递和数据转换。Spring Integration ...
### Spring Integration 引用手册4 #### Spring Integration 概述 Spring Integration 是一个用于实现企业集成模式的框架,它基于 Spring 的编程和配置模型,提供了支持不同消息传递技术的适配器和消息路由功能。...