我想如下设置端点的一些属性.
from().to().setProperty(timeout,constant(12));
如上所述使用setProperty,它是将属性设置为交换/消息对象吗?
如何在端点本身中检索此属性,或者如何为端点设置该属性(而不是通过在URI中传递它)?
我知道我们可以将其传递给端点URI.但是,只是想知道是否有一种方法可以在安装员的帮助下进行.
解决方法:
如果要将属性设置为起点,则可以执行以下操作:
CxfEndpoint endpoint = (CxfEndpoint) new CxfComponent(this.getContext()).createEndpoint(<uri>);
endpoint.setxxx // here you can configure your endpoint with setters
from(endpoint)...