242.6. 例子
在下面的路由中,我们使用 Netty4 HTTP 作为 HTTP 服务器,这将返回硬编码"Bye World"消息。
from("netty4-http:http://0.0.0.0:8080/foo") .transform().constant("Bye World");
此外,我们还可以使用 Camel 调用此 HTTP 服务器,并带有 ProducerTemplate,如下所示:
String out = template.requestBody("netty4-http:http://0.0.0.0:8080/foo", "Hello World", String.class); System.out.println(out);
我们再回到"按世界"作为输出。