Skip to content

Latest commit

 

History

History
75 lines (41 loc) · 4.62 KB

README.md

File metadata and controls

75 lines (41 loc) · 4.62 KB

spring-integration

Samples of different Spring Integration modules (jms, batch, integration)

HTTP

  • int-http-xml: An example of a web application that exposes a RESTful API using HTTP inbound channel adapters. The configuration of this application is implemented with XML.

    Blog post related to this project: http://xpadro.blogspot.com/2014/12/exposing-http-restful-api-with-inbound.html

  • int-http-dsl7: An example of a web application that exposes a RESTful API using HTTP inbound channel adapters. The configuration of this application is fully implemented with JavaConfig and Spring Integration Java DSL. This example is implemented with a Java version prior to Java 8. Hence, it does not use lambdas. To check the Java 8 version example please select the int-http-dsl project.

  • int-http-dsl: An example of a web application that exposes a RESTful API using HTTP inbound channel adapters. The configuration of this application is fully implemented with JavaConfig and Spring Integration Java DSL. This example is implemented with a Java 8 version, making use of lambdas.

    Blog post related to this project: http://xpadro.blogspot.com/2014/12/exposing-http-restful-api-with-inbound_22.html

JMS

Web Services

Other