Skip to content

Instantly share code, notes, and snippets.

@robtimus
robtimus / HttpClientEngine.java
Created April 7, 2025 19:31
RESTEasy client engine implementation based on java.net.http.HttpClient
/*
* HttpClientEngine.java
* Copyright 2025 Rob Spoor
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
@robtimus
robtimus / LoggingHttpClient.java
Last active April 7, 2025 19:29
java.net.http.HttpClient extension that supports request and response logging, including bodies
/*
* LoggingHttpClient.java
* Copyright 2025 Rob Spoor
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*