GH-248 - Support to automatically externalize events.

We now allow externalizing application events to a variety of message brokers through the addition of Spring Modulith modules for Kafka, AMQP and JMS to a user project's classpath. Which events shall be externalized and how they're supposed to be routed to the message broker can be configured through either annotations or via a configuration API declared as Spring bean.

In case Jackson is on the classpath, we also add auto-configuration to use a Boot-configured ObjectMapper instance with the corresponding message broker client APIs to properly serialize and deserialize messages to JSON.
This commit is contained in:
Oliver Drotbohm
2023-08-24 12:08:46 -07:00
parent 971a143436
commit 9b0062f354
58 changed files with 3394 additions and 45 deletions

View File

@@ -19,6 +19,7 @@
<module>spring-modulith-example-epr-jdbc</module>
<module>spring-modulith-example-epr-mongodb</module>
<module>spring-modulith-example-full</module>
<module>spring-modulith-example-kafka</module>
</modules>
<properties>