java – Apache Camel中对null体的处理能否更优雅?
作者:互联网
我是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);
如您所见,我有特殊处理(基于内容的路由)来处理具有空主体的请求.有没有办法更优雅地处理这个问题?我正在写几种这种类型的服务,看起来它们可以更清洁.
解决方法:
您可以使用拦截器,例如interceptFrom和when,来检查空身体,因为这里有一个示例:http://camel.apache.org/intercept
然后使用stop表示没有进一步处理:
interceptFrom("servlet*").when(body().isNull()).to("direct:syntaxError").stop();
标签:java,apache-camel,code-cleanup 来源: https://codeday.me/bug/20190716/1480837.html