Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/endurancecode/quarkus-playground
Code written following tutorials to learn Quakus
https://github.com/endurancecode/quarkus-playground
java kafka quarkus
Last synced: about 20 hours ago
JSON representation
Code written following tutorials to learn Quakus
- Host: GitHub
- URL: https://github.com/endurancecode/quarkus-playground
- Owner: EnduranceCode
- Created: 2023-04-18T14:48:19.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-03T09:49:44.000Z (over 1 year ago)
- Last Synced: 2023-08-03T10:54:46.257Z (over 1 year ago)
- Topics: java, kafka, quarkus
- Language: Java
- Homepage:
- Size: 194 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quarkus playground
This repository contains **code** written following tutorials and developing projects while learning about [Quarkus](https://quarkus.io/).
## Repository Structure
There's a folder in the root of this repository for each tutorial followed. Each of those folders contains one or more projects that can be imported to any [IDE](https://en.wikipedia.org/wiki/Integrated_development_environment).
## Code Tutorials and Courses
### Getting Started with Apache Kafka in your Quarkus application
The code written following the [Getting Started with Apache Kafka in your Quarkus application](https://quarkus.io/blog/getting-started-kafka/) tutorial is stored in the folder [`getting-started-kafka`](./getting-started-kafka) of this repository.
To stop the Kafka broker deployed to test the tutorial's code, execute the below commands on the project's root folder:
docker-compose down
docker-compose rm### Getting started to Smallrye Reactive Messaging with Apache Kafka
The code written following the [Getting started to Smallrye Reactive Messaging with Apache Kafka](https://quarkus.io/guides/kafka-reactive-getting-started)
tutorial is stored in the folder [`kafka-quickstart`](./kafka-quickstart) of this repository. This folder contains the following projects:+ [kafka-quickstart-processor](./kafka-quickstart/kafka-quickstart-processor);
+ [ kafka-quickstart-producer](./kafka-quickstart/kafka-quickstart-producer);### Collect Metrics using Micrometer
The code written following the [Collect Metrics using Micrometer](https://quarkus.io/guides/telemetry-micrometer-tutorial) tutorial is stored in the folder [`micrometer-quickstart`](./micrometer-quickstart) of this repository.