Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add links to guides for Micronaut Kafka #936

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/docs/guide/kafkaCli.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,5 @@ $ mn create-kafka-producer MessageProducer
$ mn create-kafka-listener MessageListener
| Rendered template Listener.java to destination src/main/java/my/kafka/app/MessageListener.java
----

TIP: See the guide for https://guides.micronaut.io/latest/micronaut-kafka.html[Kafka and the Micronaut Framework - Event-driven Applications] to learn more.
3 changes: 3 additions & 0 deletions src/main/docs/guide/kafkaGuides.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
See the following list of guides to learn more about working with Kafka in the Micronaut Framework:

https://guides.micronaut.io/latest/tag-kafka.html
2 changes: 2 additions & 0 deletions src/main/docs/guide/kafkaListener.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ kafka:
----

Any property in the link:{kafkaapi}\/org/apache/kafka/clients/consumer/ConsumerConfig.html[ConsumerConfig] class can be set for all `@KafkaListener` beans based on the . The above example will enable the consumer to create a topic if it doesn't exist for the `default` (`@KafkaListener`) client and set a custom bootstrap server for the `product` client (`@KafkaListener(value = "product")`)

TIP: See the guide for https://guides.micronaut.io/latest/testing-micronaut-kafka-listener-using-testcontainers.html[Testing Kafka Listener using Testcontainers with the Micronaut Framework] to learn more.
1 change: 1 addition & 0 deletions src/main/docs/guide/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,5 @@ kafkaStreams:
kafkaStreamInteractiveQuery: Interactive Query Service
kafkaStreamHealth: Kafka Stream Health Checks
kafkaStreamExceptions: Handling Uncaught Exceptions
kafkaGuides: Guides
repository: Repository
Loading