3

我是 Camel 的新手,正在尝试学习习语和最佳实践。我正在编写需要处理几种不同错误情况的 Web 服务。这是我的错误处理和路由:

onException(JsonParseException.class).inOut("direct:syntaxError").handled(true);
onException(UnrecognizedPropertyException.class).inOut("direct:syntaxError").handled(true);

// Route service through direct to allow testing.
from("servlet:///service?matchOnUriPrefix=true").inOut("direct:service");
from("direct:service")
    .choice()
        .when(body().isEqualTo(null))
            .inOut("direct:syntaxError")
        .otherwise()
            .unmarshal().json(lJsonLib, AuthorizationParameters.class).inOut("bean:mybean?method=serviceMethod").marshal().json(lJsonLib);

如您所见,我有特殊处理(基于内容的路由)来处理带有空正文的请求。有没有办法更优雅地处理这个问题?我正在编写几种这种类型的服务,看起来它们可能会更干净。

4

3 回答 3

7

body().isNull()在基于内容的路由中使用表达式将null消息重定向到死信频道甚至更优雅:)。请注意,重定向到 DLC 的消息仍将包含标头,以便您稍后可以轻松分析传递失败的原因。

choice().
   when(body().isNull()).to("jms:deadLetterChannel").
   otherwise().to("jms:regularProcessing").
endChoice();
于 2012-05-27T16:32:24.860 回答
6

您可以使用拦截器,例如带有 when 的 interceptFrom 来检查空的 bod,因为这里有一个示例:http: //camel.apache.org/intercept

然后使用 stop 表示不再进行处理:

interceptFrom("servlet*").when(body().isNull()).to("direct:syntaxError").stop();
于 2012-05-26T08:07:28.337 回答
0

您可以使用检查 null 并在 null 的情况下引发异常的 bean。因此,您可以在异常处理中处理这种情况。

于 2012-05-26T13:31:24.160 回答