Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 901 Bytes

File metadata and controls

32 lines (26 loc) · 901 Bytes

HTTP Support

Spring Integration’s HTTP support allows for the running of HTTP requests and the processing of inbound HTTP requests. The HTTP support consists of the following gateway implementations: HttpInboundEndpoint and HttpRequestExecutingMessageHandler. See also WebFlux Support.

You need to include this dependency into your project:

Maven
<dependency>
    <groupId>org.springframework.integration</groupId>
    <artifactId>spring-integration-http</artifactId>
    <version>{project-version}</version>
</dependency>
Gradle
compile "org.springframework.integration:spring-integration-http:{project-version}"

The jakarta.servlet:jakarta.servlet-api dependency must be provided on the target Servlet container.