我正在使用Camel Proxy将接口公开为路由的起点。 它使用BeanInvocation对象作为消息正文。如何根据传递给接口的参数设置消息正文和标题?
public interface test{
public void sayHi(String firstName, String lastName);
}
我想制作正文(firstName +“”+ lastName)。 我还想知道如何将一个参数设置为消息的标题,另一个设置为正文。
答案 0 :(得分:1)
它使用与常规Camel bean调用相同的bean参数绑定。请查看有关此
的文档http://camel.apache.org/bean-integration.html
Camel in Action第4章介绍了使用Camel的bean的所有内容。