Skip to content
Advertisement

Tag: spring-integration-http

How can I create http inbound channel adapter with JAVA config in Spring integration?

I have the following http inbound channel adapter. How can I do this configuration with Java Config or Spring DSL? Answer See Spring Integration Reference Manual: Java DSL at all: https://docs.spring.io/spring-integration/docs/current/reference/html/dsl.html#java-dsl HTTP Module specifics: https://docs.spring.io/spring-integration/docs/current/reference/html/http.html#http-java-config Your particular sample could be translated to this IntegrationFlow: Instead of … you can add integration endpoints to build your logic for processing those requests.

Advertisement