-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make reactive-messaging codestart work
- Loading branch information
Showing
11 changed files
with
96 additions
and
93 deletions.
There are no files selected for viewing
14 changes: 7 additions & 7 deletions
14
...arkus/extension-codestarts/reactive-messaging-codestart/base/README.tpl.qute.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{#include readme-header /} | ||
|
||
{#each input.selected-extensions-ga} | ||
{#if it.equals("io.quarkus:quarkus-smallrye-reactive-messaging-kafka")} | ||
// TODO : which one to choose ? | ||
[Related Apache Kafka guide section...](https://quarkus.io/guides/kafka) | ||
{#each input.selected-extensions-ga} | ||
{#switch it} | ||
{#case 'io.quarkus:quarkus-smallrye-reactive-messaging-kafka'} | ||
[Related Apache Kafka guide section...](https://quarkus.io/guides/kafka-reactive-getting-started) | ||
{/if} | ||
{#if it.equals("io.quarkus:quarkus-smallrye-reactive-messaging-amqp")} | ||
|
||
{#case 'io.quarkus:quarkus-smallrye-reactive-messaging-amqp'} | ||
[Related Apache AMQP 1.0 guide section...](https://quarkus.io/guides/amqp) | ||
{/if} | ||
|
||
{/switch} | ||
{/each} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...e-messaging-codestart/java/src/test/java/org/acme/MyReactiveMessagingApplicationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...__/ReactiveMessagingCodestartIT/testAMQPContent/src_main_resources_application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
mp.messaging.outgoing.uppercase-out.connector=smallrye-amqp | ||
mp.messaging.outgoing.uppercase-out.address=uppercase-word | ||
mp.messaging.incoming.source-in.connector=smallrye-amqp | ||
mp.messaging.incoming.uppercase-in.address=uppercase-word | ||
mp.messaging.outgoing.source-out.address=word | ||
mp.messaging.incoming.source-in.address=word | ||
mp.messaging.outgoing.source-out.connector=smallrye-amqp | ||
mp.messaging.incoming.uppercase-in.connector=smallrye-amqp |
Empty file.
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
..._/ReactiveMessagingCodestartIT/testKafkaContent/src_main_resources_application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
mp.messaging.outgoing.uppercase-out.connector=smallrye-kafka | ||
mp.messaging.incoming.source-in.connector=smallrye-kafka | ||
mp.messaging.outgoing.source-out.topic=word | ||
mp.messaging.incoming.source-in.topic=word | ||
mp.messaging.incoming.uppercase-in.topic=uppercase-word | ||
mp.messaging.outgoing.source-out.connector=smallrye-kafka | ||
mp.messaging.outgoing.uppercase-out.topic=uppercase-word | ||
mp.messaging.incoming.uppercase-in.connector=smallrye-kafka |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...__/ReactiveMessagingCodestartIT/testMQTTContent/src_main_resources_application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
mp.messaging.outgoing.source-out.host=localhost | ||
mp.messaging.outgoing.uppercase-out.connector=smallrye-mqtt | ||
mp.messaging.outgoing.source-out.topic=word | ||
mp.messaging.incoming.uppercase-in.host=localhost | ||
mp.messaging.incoming.source-in.topic=word | ||
mp.messaging.incoming.uppercase-in.topic=uppercase-word | ||
mp.messaging.outgoing.uppercase-out.port=1883 | ||
mp.messaging.outgoing.uppercase-out.topic=uppercase-word | ||
mp.messaging.incoming.source-in.port=1883 | ||
mp.messaging.incoming.uppercase-in.connector=smallrye-mqtt | ||
mp.messaging.incoming.source-in.connector=smallrye-mqtt | ||
mp.messaging.incoming.source-in.host=localhost | ||
mp.messaging.outgoing.uppercase-out.host=localhost | ||
mp.messaging.incoming.uppercase-in.port=1883 | ||
mp.messaging.outgoing.source-out.port=1883 | ||
mp.messaging.outgoing.source-out.connector=smallrye-mqtt |