SpringIntegrationKafka模型已经发生了充分的变化,因为它已经被开发和简化,现有的演示、手册和说明不再有效。当前的官方演示都是围绕注解构建的,注解很酷,但基本上不可读,不适合于我的体系结构,在我的体系结构中,作业与java代码分开部署和管理。
是否有当前(2019年)的教程,用于在xml中配置spring集成生产者和消费者?
以下是我的pom摘录,详细介绍了我使用的版本,以供参考:
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-core</artifactId>
<version>5.1.3.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-kafka</artifactId>
<version>3.1.1.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-file</artifactId>
<version>5.1.2.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-core</artifactId>
<version>4.1.1.RELEASE</version>
</dependency>
编辑:记下来
根据gary russel在回答中的评论,github上的链接已断开,现在已修复
1条答案
按热度按时间htrmnn0y1#
参考手册没有提供您所需要的吗?
例如:
和
等。。。