How do I write this code in groovy: Also kindly share any material or tool that allows one to convert his java code to Groovy: @Component public class RequestResponseLoggingInterceptor implements ClientHttpRequestInterceptor { private final Logger log = LoggerFactory.getLogger(this.getClass()); private Tracer tracer; RequestResponseLoggingInterceptor(Tracer tracer){ this.tracer = tracer; } @Override public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttpRequestExecution execution) throws IOException { Span span = tracer.currentSpan(); HttpHeaders headers = new HttpHeaders(); headers.set("X-B3-Traceid", span.context().traceId()); headers.set("X-B3-SpanId", span.context().spanId()); headers.set("X-B3-ParentSpanId", span.context().parentId()); request.getHeaders().addAll(headers); ClientHttpResponse response = execution.execute(request, body); return response; } }
How do I write this code in groovy: Also kindly share any material or tool that allows one to convert his java code to Groovy:
@Component
public class RequestResponseLoggingInterceptor implements ClientHttpRequestInterceptor {
private final Logger log = LoggerFactory.getLogger(this.getClass());
private Tracer tracer;
RequestResponseLoggingInterceptor(Tracer tracer){
this.tracer = tracer;
}
@Override public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttpRequestExecution execution) throws IOException {
Span span = tracer.currentSpan();
HttpHeaders headers = new HttpHeaders();
headers.set("X-B3-Traceid", span.context().traceId());
headers.set("X-B3-SpanId", span.context().spanId());
headers.set("X-B3-ParentSpanId", span.context().parentId());
request.getHeaders().addAll(headers);
ClientHttpResponse response = execution.execute(request, body);
return response;
}
}
![](/static/compass_v2/shared-icons/check-mark.png)
Trending now
This is a popular solution!
Step by step
Solved in 3 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
I noticed that headers.set("traceId", span.context().traceId()) is returning an Error(No candidate found for method call).
Only setMetaClass is available in the list of options.
headers.setMetaClass("spanId", span.context().spanId())
Do you suggest I add Brave to my dependency? I have added Sleuth, Zipkin and Kafka.
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)