Camel restlet 只绑定到本地主机
Camel restlet only binds to localhost
我有一个 camel restlet 应用程序。该应用程序公开多个 http 端点。最近,我将所有骆驼组件更新到 2.22.1 并添加了一些其他东西。虽然一切仍然 运行 正常,但应用程序似乎只绑定到本地主机:
TCP 127.0.0.1:8082 0.0.0.0:0 ABHÖREN 7608
(netstat windows).
会不会是更新导致的?如何设置绑定地址?
正如我在 http://camel.apache.org/rest-dsl.html 中看到的
你应该像这样使用 restConfiguration
restConfiguration().component("restlet").host("0.0.0.0");
我有一个 camel restlet 应用程序。该应用程序公开多个 http 端点。最近,我将所有骆驼组件更新到 2.22.1 并添加了一些其他东西。虽然一切仍然 运行 正常,但应用程序似乎只绑定到本地主机:
TCP 127.0.0.1:8082 0.0.0.0:0 ABHÖREN 7608
(netstat windows).
会不会是更新导致的?如何设置绑定地址?
正如我在 http://camel.apache.org/rest-dsl.html 中看到的 你应该像这样使用 restConfiguration restConfiguration().component("restlet").host("0.0.0.0");