The provided application shows a basic example how to consume events from Azure Service Bus using Quarkus application. This example relies on is a simple String message from Service Bus and it will log the event ID and message data.
Go to application properties and add the respective configurations of your Service Bus.
azure.service-bus.connection-string=<<<SERVICE_BUS_CONNECTION_STRING>>>
azure.service-bus.topic=<<SERVICE_BUS_TOPIC_NAME>>
azure.service-bus.topic.subscription=<<SERVICE_BUS_SUBSCRIPTION_NAME>>
You can run your application in dev mode that enables live coding using:
mvn quarkus:dev