Apache Camel:如何在 doCatch() 块中获取异常消息?

Apache Camel: How to get the exception message inside the doCatch() block?

我需要 return 来自抛出的异常的消息,或者将其放在 outmessage 中。但是它没有在前端打印正确的消息。

camel 文档建议使用 .transform(simple?...) .handled(true),但大部分已弃用。

正确的做法是什么?

响应:
<418 I'm a teapot,simple{${exception.message}},{}>


路线

from("direct:csv")
  .doTry()
    .process(doSomeThingWithTheFileProcessor)
  .doCatch(Exception.class)
    .process(e -> {
        e.getOut().setBody(new ResponseEntity<String>(exceptionMessage().toString(), HttpStatus.I_AM_A_TEAPOT));
    }).stop()
  .end()
  .process(finalizeTheRouteProcessor);


doSomethingWithFileProcessor

public void process(Exchange exchange) throws Exception {
        String filename = exchange.getIn().getHeader("CamelFileName", String.class);

        MyFile mf = repo.getFile(filename); //throws exception

        exchange.getOut().setBody(exchange.getIn().getBody());
        exchange.getOut().setHeader("CamelFileName", exchange.getIn().getHeader("CamelFileName"));
    }

有很多方法可以做到。所有这些都是正确的,根据错误处理的复杂性选择你最喜欢的。我已经发布了 examples in this gist。 None 在 Camel 版本 2.22.0 中已弃用。

有处理器

from("direct:withProcessor")
        .doTry()
            .process(new ThrowExceptionProcessor())
        .doCatch(Exception.class)
            .process(new Processor() {
                @Override
                public void process(Exchange exchange) throws Exception {
                    final Throwable ex = exchange.getProperty(Exchange.EXCEPTION_CAUGHT, Throwable.class);
                    exchange.getIn().setBody(ex.getMessage());
                }
            })
        .end();

简单语言

from("direct:withSimple")
        .doTry()
            .process(new ThrowExceptionProcessor())
        .doCatch(Exception.class)
            .transform().simple("${exception.message}")
        .end();

用setBody

from("direct:withValueBuilder")
        .doTry()
            .process(new ThrowExceptionProcessor())
        .doCatch(Exception.class)
            .setBody(exceptionMessage())
        .end();

在 doCatch() 中,Camel 将异常移动到 属性 中与键 Exchange.EXCEPTION_CAUGHT (http://camel.apache.org/why-is-the-exception-null-when-i-use-onexception.html).

交换

所以你可以使用

e.getOut().setBody(new ResponseEntity<String>(e.getProperty(Exchange.EXCEPTION_CAUGHT, Exception.class).getMessage(), HttpStatus.OK));