1

我无法使用以下 spring DSL 配置在处理器中注入/修改标头。你能帮我弄清楚我做错了什么吗?

    <routeContext xmlns="http://camel.apache.org/schema/spring"
    id="routes1">

    <route id="sdPoll" de:name="Polling"
        de:systemName="Polling" streamCache="true">
        <from uri="timer://sdPoll?fixedRate=true&amp;period=60000" />
        <process ref="refProcessor" />
        <to uri="http://dummyhost" />
        <to uri="log:DEBUG?showBody=true&amp;showHeaders=true" />
    </route>
</routeContext>
<bean id="refProcessor"
    class="com.abc.de.RefProcessor" />

处理器类

public class RefProcessor implements Processor {

private final Logger log = Logger.getLogger(RefProcessor.class);

@SuppressWarnings("unchecked")
@Override
public void process(Exchange exchange) throws Exception {

    exchange.getIn().setHeader("Authorization", "TODO");
    exchange.getIn().setHeader("CamelHttpMethod", "POST");
    exchange.getIn().setHeader("CamelHttpUri", "http://localhost:8280/api/check");
    exchange.getIn().setHeader("Content-Type", "application/json");
    exchange.getIn().setHeader("Accept", "application/json");
    exchange.getIn().setBody("TODO");

    //exchange.getOut().setHeaders(exchange.getIn().getHeaders());
    //exchange.getOut().setHeader("Authorization", "TODO");
    //exchange.getOut().setBody("TODO");
 }
}

日志 - 消息历史 RouteId ProcessorId Processor Elapsed (ms) [sdPoll] [sdPoll] [timer://sdPoll?fixedRate=true&period=60000] [21176] [null] [onCompletion1] [onCompletion] [106] [sdPoll] [process7 ] [ref:refProcessor] [21067] [null] [process3] [ref:GenericErrorHandle] [21016]

Exchange[ID ID-ABC-63143-1516034486954-0-2 ExchangePattern InOnly 标 头 {breadcrumbId=ID-ABC-63143-1516034486954-0-1,CamelRedelivered=false,CamelRedeliveryCounter=0,firedTime=1 月 15 日星期一 11:41:31 EST 2018} BodyType null Body [Body is null] ]

Java DSL 似乎可以工作!那么我的 Spring DSL 配置有什么问题

static RouteBuilder createRouteBuilder3() {
    return new RouteBuilder() {
        public void configure() {
            from("timer://timer1?period=60000").process(new Processor() {
                public void process(Exchange exchange) throws UnsupportedEncodingException {
                    exchange.getIn().setHeader("CamelHttpMethod", "POST");
                    exchange.getIn().setHeader("Content-Type", "application/json");
                    exchange.getIn().setHeader("Accept", "application/json");
                    exchange.getIn().setHeader("CamelHttpUri",
                            "http://localhost:8280/api/check");
                    exchange.getIn().setHeader("Authorization", "TODO");

                    exchange.getIn().setBody("TODO");
                }
            }).to("http://dummyhost").to("log:DEBUG?showBody=true&showHeaders=true");
        }
    };
}

消息历史 RouteId ProcessorId Processor Elapsed (ms) [route1 ] [route1 ] [timer://timer1?period=60000 ] [ 86] [route1 ] [process1 ] [RefProcessorCamel$3$1@258e2e41 ] [ 6] [route1 ] [to1 ] [ http://dummyhost ] [ 76]

Exchange[ID ID-ABC-63940-1516036107063-0-2 ExchangePattern InOnly 标 头 {Accept=application/json, Authorization=TODO, breadcrumbId=ID-ABC-63994-1516036220042-0-1, CamelHttpMethod=POST, CamelHttpUri= http: //localhost:8280/api/check , CamelRedelivered=false, CamelRedeliveryCounter=0, Content-Type=application/json,firedTime=Mon Jan 15 12:10:21 EST 2018} BodyType String Body TODO ]

4

1 回答 1

0

你的处理器看起来不错。

只是一个疯狂的猜测,但您是否routeContext有意在 XML 配置中使用?如果没有,您可以尝试切换到camelContext吗?

有关和之间的区别,请参见http://people.apache.org/~dkulp/camel/configuring-camel.htmlrouteContextcamelContext

于 2018-01-16T11:38:52.667 回答