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 
- 
Gradle 
<dependency>
    <groupId>org.springframework.integration</groupId>
    <artifactId>spring-integration-http</artifactId>
    <version>6.5.3</version>
</dependency>compile "org.springframework.integration:spring-integration-http:6.5.3"The jakarta.servlet:jakarta.servlet-api dependency must be provided on the target Servlet container.