gpt4 book ai didi

java - 如何在运行时切换绑定(bind) (Camel Rest Dsl)

转载 作者:行者123 更新时间:2023-12-02 01:35:05 25 4
gpt4 key购买 nike

我有一个绑定(bind)模式设置为关闭的休息端点:

rest("/users")
.bindingMode(RestBindingMode.off)
.get()
.route()
.id("Get all users")
.bean(userService,"getAll")
.endRest()

我想在捕获异常时将绑定(bind)模式切换为 json:

 onException(UserNotFoundException.class)
.handled(true)
.process(responseProcessor);

如何用 Camel 做到这一点?我尝试将 header CamelBinding 设置为 json 但这不起作用。还有其他想法吗?

最佳答案

你不能那样做。在 onException 的处理器中,您可以自己将响应有效负载设置为 JSON。如果需要,您可以使用 Camel 的数据格式/组件来支持 JSon。

关于java - 如何在运行时切换绑定(bind) (Camel Rest Dsl),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55352263/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com