From f85ae235496a3abf93272d1ad2f6f633be0140d7 Mon Sep 17 00:00:00 2001 From: Roman Konstantynovskyi Date: Sun, 18 Jan 2026 23:54:41 +0200 Subject: [PATCH] docs: Update `README.md` --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 88668f9..391166c 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,13 @@ val client = RestClient.builder() .build() ``` +#### Spring WebClient +```kotlin +val client = WebClient.builder() + .filter(MurphyWebClientFilter(scenario)) + .build() +``` + ## 🛠 Available Effects - `latency(ms)`: Adds a fixed delay. - `jitter(min, max)`: Adds a random delay within a specified range. @@ -101,5 +108,5 @@ val loggerEffect = Effect { context -> ## 🗺 Roadmap - [x] OkHttp Interceptor - [x] Spring RestClient Interceptor -- [ ] Spring WebClient Filter +- [x] Spring WebClient Filter - [ ] Ktor Client Plugin