如何从蓝图动态设置HTTP方法(Camel-http)

时间:2019-02-08 06:53:31

标签: java apache-camel apache-servicemix blueprint-osgi camel-http

我使用camel-apache配套的camel-http。我正在尝试从我的自定义标头设置http方法。我使用蓝图

覆盖过程:     exchange.getOut().setHeader("custom_http_method", "GET");

蓝图路线:

    <route>
        <from uri="activemq://for_redmine" />
        <setHeader headerName="Content-Type">
            <constant>application/json; charset=utf-8</constant>
        </setHeader>
        <setHeader headerName="X-Redmine-API-Key">
            <constant>beb50ea768f5d16c96030a9dbbf3cb5c4a5ccdcd</constant>
        </setHeader>
         <setHeader headerName="CamelHttpMethod">
          <constant>${header.custom_http_method}</constant> 
         </setHeader> 
        <toD uri="${header.url}"/>
    </route>

错误: org.apache.camel.TypeConversionException:从类型:java.lang.String到所需类型的类型转换期间出错:值为$ {header.custom_http_method}的org.apache.camel.http.common.HttpMethods由于java.lang.IllegalArgumentException :没有枚举常量org.apache.camel.http.common.HttpMethods。$ {header.custom_http_method}

据我了解,$ {header.custom_http_method}没有返回值。

toD uri =“ $ {header.url}”-正常工作

1 个答案:

答案 0 :(得分:1)

在设置标头CamelHttpMethod时尝试使用简单而不是常量

 <route>
        <from uri="activemq://for_redmine" />
        ....
         <setHeader headerName="CamelHttpMethod">
          <simple>${header.custom_http_method}</simple> 
         </setHeader> 
        <toD uri="${header.url}"/>
    </route>