262.25. 使用 @PropertyInject
可作为 Camel 2.12 提供
Camel 允许使用 @PropertyInject
注释来注入 POJO 中的属性占位符,这些注释可设置字段和设置方法。
例如,您可以使用 RouteBuilder
类,如下所示:
public class MyRouteBuilder extends RouteBuilder { @PropertyInject("hello") private String greeting; @Override public void configure() throws Exception { from("direct:start") .transform().constant(greeting) .to("{{result}}"); } }
请注意,我们已向 greeting 字段标上 @PropertyInject
,并把它定义为使用 "hello"
键。然后,Camel 将使用此键查找 属性并注入其值,转换为 String 类型。
您还可以在键中使用多个占位符和文本,例如,我们可以:
@PropertyInject("Hello {{name}} how are you?") private String greeting;
这将查找带有键 "name"
的占位符。
如果键不存在,您也可以添加默认值,例如:
@PropertyInject(value = "myTimeout", defaultValue = "5000") private int timeout;