2.8.4. 追加の Camel Quarkus 設定
2.8.4.1. Quarkus Amazon SNS とのオプションの統合
必要に応じて、Quarkus Amazon SNS エクステンションを Camel Quarkus AWS 2 Simple Notification System (SNS) と組み合わせて使用することができます。これは完全に任意であり、必須ではないことに注意してください。Quarkus ドキュメント に従ってください。ただし、次の注意事項に注意してください。
クライアントタイプ
apache
は、次のプロパティーを設定して選択する必要があります。quarkus.sns.sync-client.type=apache
SnsClient
は、Camel Quarkus が実行時に検索できるように、Quarkus CDI 参照 の意味で削除不可にする必要があります。たとえば、SnsClient
を注入するダミー Bean を追加することで、これに到達できます。import javax.enterprise.context.ApplicationScoped; import io.quarkus.arc.Unremovable; import software.amazon.awssdk.services.sns.SnsClient; @ApplicationScoped @Unremovable class UnremovableSnsClient { @Inject SnsClient snsClient; }