ListenableFuture<ResponseEntity<Void>> entity = cseAsyncRestTemplate.postForEntity(url, new CseHttpEntity<>(msgBody, headers), Void.class); headers被CSE丢弃,发出去的消息中,不会携带headers中定义的私有头域;标准头域设置也不生效。 我们服务基于SpringBoot开发,现在集成CSE出现这个问题,还请定位解决。谢谢!
ListenableFuture<ResponseEntity> entity = cseAsyncRestTemplate.postForEntity(url,
new CseHttpEntity<>(msgBody, headers), Void.class);
headers被CSE丢弃,发出去的消息中,不会携带headers中定义的私有头域;标准头域设置也不生效。
我们服务基于SpringBoot开发,现在集成CSE出现这个问题,还请定位解决。谢谢!