http://dubbo.apache.org/#/docs/user/demos/attachment.md?lang=zh-cn
RpcContext.getContext().setAttachment("index", "1"); // 隱式傳參,后面的遠程調用都會隱式將這些參數發送到服務器端,類似cookie,用於框架集成,不建議常規業務使用 xxxService.xxx(); // 遠程調用
public class XxxServiceImpl implements XxxService { public void xxx() { // 獲取客戶端隱式傳入的參數,用於框架集成,不建議常規業務使用 String index = RpcContext.getContext().getAttachment("index"); } }