Zeebe Server can be embed in a Spring Boot App?

Zeebe Server can be embed in a Spring Boot App?
I am talking about server and not client?

@csplrj in theory it can, but that is not recommended, the idea of having brokers is that you separate that from your application. All the Spring Integration is at the Client level and not at the broker level. Having said that, the Broker itself is Java, so you can initialise it inside your spring application, but I will strongly recommend against doing that.

1 Like