2.8. AWS 2 Simple Notification System(SNS)
使用 AWS SDK 版本 2.x 将消息发送到 AWS Simple Notification Topic。
2.8.1. 内部
-
AWS Simple Notification System (SNS)组件, URI 语法:
aws2-sns:topicNameOrArn
有关用法和配置详情,请参阅上面的链接。
2.8.2. Maven 协调
在 code.quarkus.redhat.com 上使用此扩展创建一个新项目
或者在现有项目中添加协调:
<dependency> <groupId>org.apache.camel.quarkus</groupId> <artifactId>camel-quarkus-aws2-sns</artifactId> </dependency>
2.8.3. 原生模式的 SSL
这个扩展可自动启用原生模式的 SSL 支持。因此,您不需要自己为 application.properties
添加 quarkus.ssl.native=true
。另请参阅 Quarkus SSL 指南。
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
在 Quarkus CDI 引用 中,
SnsClient
必须"无法删除",以便 Camel Quarkus 能够在运行时查看它。您可以通过添加 dummy bean injectSnsClient
来访问这种情况:import javax.enterprise.context.ApplicationScoped; import io.quarkus.arc.Unremovable; import software.amazon.awssdk.services.sns.SnsClient; @ApplicationScoped @Unremovable class UnremovableSnsClient { @Inject SnsClient snsClient; }