user2038596
user2038596

Reputation: 569

How to make Spring-remoting work over Kafka?

Is there any example (somewhere) of spring-remoting working on top of (spring-) Kafka ?

Upvotes: 0

Views: 193

Answers (1)

Gary Russell
Gary Russell

Reputation: 174504

There is no Kafka implementation of spring-remoting.

spring-remoting itself is deprecated as of Spring Framework 5.3.

https://github.com/spring-projects/spring-framework/commit/d9ccd618ea9cbf339eb5639d24d5a5fabe8157b5

You can, however, use the RPC support in Spring for Apache Kafka

https://docs.spring.io/spring-kafka/docs/current/reference/html/#replying-template

Upvotes: 1

Related Questions