访问Camel Context中的JVM选项

时间:2012-05-08 14:27:52

标签: java apache-camel jvm-arguments

我有JVM选项来定义每个环境。它类似于-Denv =“development”。 如何在camel上下文中访问此JVM选项并根据env值确定我的路由?

1 个答案:

答案 0 :(得分:2)

使用camel-properties组件......

PropertiesComponent pc = context.getComponent("properties", PropertiesComponent.class);

from("direct:start").to("properties:{{cool.end}}");