gpt4 book ai didi

java - Apache Camel 测试。删除 RoutePolicy

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:43:55 28 4
gpt4 key购买 nike

这是 Apache Camel 路由:

ZooKeeperRoutePolicy routePolicy = new ZooKeeperRoutePolicy("zookeeper:localhost:2181/fuse-example/routePolicy", 1);
from("file:camelInpit").routeId("systemARoute")
.routePolicy(routePolicy)
.log(LoggingLevel.ERROR, "Starting route")
[...]

我想在我的测试中删除 routePolicy,因为在测试环境中没有 ZooKeeper,但这并不像看起来那么容易

    context.getRouteDefinition("systemARoute").adviceWith(context, new AdviceWithRouteBuilder() {
@Override
public void configure() throws Exception {
replaceFromWith("direct:aaa");
weaveByType(RouteDefinition.class).selectIndex(1).remove();
}
});

weaveById("policy") 和设置 id routePolicy(...).id("policy") 没有帮助。

如何在测试时动态删除 RoutePolicies

最佳答案

这样的事情是不可能的吗?

from("file:camelInpit").routeId("systemARoute")
.choice()
.when(prodEnvironmentExpression)
.routePolicy(routePolicy)
.endChoice()
.end()
.log(LoggingLevel.ERROR, "Starting route")

关于java - Apache Camel 测试。删除 RoutePolicy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29891368/

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