<artifactId>spring-boot-starter-integration</artifactId>
</dependency>
<dependency>
- <groupId>org.springframework.kafka</groupId>
- <artifactId>spring-kafka</artifactId>
+ <groupId>org.springframework.integration</groupId>
+ <artifactId>spring-integration-stream</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.springframework.integration</groupId>
+ <artifactId>spring-integration-kafka</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<beans:beans xmlns:int-stream="http://www.springframework.org/schema/integration/stream"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:beans="http://www.springframework.org/schema/beans"
+ xsi:schemaLocation="http://www.springframework.org/schema/beans
+ https://www.springframework.org/schema/beans/spring-beans.xsd
+ http://www.springframework.org/schema/integration/stream
+ https://www.springframework.org/schema/integration/stream/spring-integration-stream.xsd">
+
+ <int-stream:stdin-channel-adapter id="stdin" charset="UTF-8"/>
+
+</beans:beans>