//get of the token from the cache
.setHeader(CaffeineConstants.ACTION, constant(CaffeineConstants.ACTION_GET))
.setHeader(CaffeineConstants.KEY, constant("<KEY>")))
.toF("caffeine-cache://%s", cacheName?evictionType=TIME_BASED&expireAfterWriteTime=60) //options settings
.choice()
//if is not valid
.when(header(CaffeineConstants.ACTION_HAS_RESULT).isEqualTo(Boolean.FALSE))
.to("direct-some-external-service") //token obtaining
// save resulting token into cache
.setHeader(CaffeineConstants.ACTION, constant(CaffeineConstants.ACTION_PUT))
.setHeader(CaffeineConstants.KEY, constant(constant(<KEY>")))
.toF("caffeine-cache://%s", cacheName?evictionType=TIME_BASED&expireAfterWriteTime=60)
.otherwise()
.end()
//some other steps
1条答案
按热度按时间krcsximq1#
为了保存它,可以使用名为caffee的缓存组件。
以下是实现目标的一些有用的关键步骤:
这是将令牌保存为全局变量并使其可用60秒的过程。
以下是该组件文档的直接链接:
https://camel.apache.org/components/latest/caffeine-cachecomponent.html#_examples
还有一个有用的例子:
https://danielblancocuadrado.medium.com/apache-camel-use-of-cache-with-caffeine-63a147aac785.