gpt4 book ai didi

java - Camel -redis : why does this not print to the console?

转载 作者:行者123 更新时间:2023-12-02 05:55:10 25 4
gpt4 key购买 nike

我尝试做一个简单的测试,从 redis 读取值并将它们打印到控制台。然而,虽然程序编译并运行,但它不会在控制台上打印任何内容(是的,testKEY 存在于 Redis 中)。为什么会这样?

private static class MyRouteBuilder extends RouteBuilder {
@Override
public void configure() throws Exception {
from("spring-redis://localhost:6379?command=GET&serializer=#serializer")
.setHeader("CamelRedis.Key", constant("testKEY"))
.to("stream:out");
}
}

最佳答案

你可以尝试这样的事情:

from("timer:redisPoll?period=30000")
.setHeader("CamelRedis.Key", constant("testKEY"))
.to("spring-redis://localhost:6379?command=GET&serializer=#serializer")
.to("stream:out");

这应该每 30 秒在 Redis 上发出一次“获取测试 key ”并将结果打印到控制台。

关于java - Camel -redis : why does this not print to the console?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23172699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com