在骆驼路线中从 Jboss AS 库中检索信息

Retrieving information from Jboss AS vault in camel route

我在 JBoss 中存储密码、APIKey 等敏感信息,因为 vault.I 需要在骆驼路线中检索它并设置骆驼交换 headers。

我在下面试过了,还是不行。

 <setHeader headerName="apikey">
      <simple>{{VAULT::event_policy_online::password::1}}</simple>
  </setHeader>

我该如何实现?

您可以为您在保管库中创建的密码创建 EAP 系统 属性(例如,myfusepassword)。 然后可以使用以下符号在骆驼配置中访问密码:

${sys.myfusepassword}