Apache Camel路由中的Spring Boot属性用法

时间:2017-08-08 11:24:43

标签: java spring-boot apache-camel

这可以在Apache Camel路由中使用Spring Boot属性吗? @Value工作正常但是这可以直接放置表达式的持有者。

更新:我知道PropertiesComponent,但除了Applicaiton.yml之外,还有一个我不喜欢的配置。

application.yml

sftp:
  host:     10.10.128.128
  user:     ftpuser1
  password: ftpuser1password  
  path:     /tmp/inputfile/test1

Spring Boot Apache Camel Route:

 @Value("${sftp.user}")
    private String sftpUser;

    @Value("${sftp.host}")
    private String sftpHost;

    @Value("${sftp.password}")
    private String sftpPassword;

    @Value("${sftp.path}")
    private String sftpInPath;

    from("sftp://"+sftpUser+"@"+sftpHost+sftpInPath+"?delete=true&password="+sftpPassword)
//this is working

    from("sftp://${sftp.user}@${sftp.host}${sftp.path}?password=${sftp.password}")
// is this possible something like this?

3 个答案:

答案 0 :(得分:7)

您可以在Camel中使用属性占位符(http://camel.apache.org/properties.html),如下所示:

from("sftp://{{sftp.user}}@{{sftp.host}}{{sftp.path}}?password={{sftp.password}}")

答案 1 :(得分:3)

不是将所有属性都注入到单独的字段中,而是可以注入完整的链接:

@Value("#{'sftp://'+'${sftp.user}'+'@'+'${sftp.host}'+'${sftp.path}'+'?delete=true&password='+'${sftp.password}'}")
private String fullLink;

然后,您可以在from方法中使用它。

答案 2 :(得分:2)

Haven未在本地尝试过,但您可以尝试使用this,将此属性组件添加到驼峰上下文中(可能需要覆盖驼峰上下文配置)。然后你可以在from部分中使用{{file.uri}}。

PropertiesComponent pc = new PropertiesComponent();
pc.setLocation("classpath:com/mycompany/myprop.properties");
context.addComponent("properties", pc);