diff --git a/core-java-modules/core-java-networking-3/README.md b/core-java-modules/core-java-networking-3/README.md index 730231525f..a81970cd30 100644 --- a/core-java-modules/core-java-networking-3/README.md +++ b/core-java-modules/core-java-networking-3/README.md @@ -6,4 +6,5 @@ This module contains articles about networking in Java - [Finding a Free Port in Java](https://www.baeldung.com/java-free-port) - [Downloading Email Attachments in Java](https://www.baeldung.com/java-download-email-attachments) +- [Connection Timeout vs. Read Timeout for Java Sockets](https://www.baeldung.com/java-socket-connection-read-timeout) - [[<-- Prev]](/core-java-modules/core-java-networking-2) diff --git a/data-structures/README.md b/data-structures/README.md index 0a29bd8964..f207c2e92b 100644 --- a/data-structures/README.md +++ b/data-structures/README.md @@ -12,3 +12,4 @@ This module contains articles about data structures in Java - [Guide to AVL Trees in Java](https://www.baeldung.com/java-avl-trees) - [Graphs in Java](https://www.baeldung.com/java-graphs) - [Implementing a Ring Buffer in Java](https://www.baeldung.com/java-ring-buffer) +- [How to Implement Min-Max Heap In Java](https://www.baeldung.com/java-min-max-heap) diff --git a/image-processing/README.md b/image-processing/README.md index eba23f83eb..12b061bf41 100644 --- a/image-processing/README.md +++ b/image-processing/README.md @@ -8,3 +8,4 @@ This module contains articles about image processing. - [Optical Character Recognition with Tesseract](https://www.baeldung.com/java-ocr-tesseract) - [How Can I Resize an Image Using Java?](https://www.baeldung.com/java-resize-image) - [Adding Text to an Image in Java](https://www.baeldung.com/java-add-text-to-image) +- [Capturing Image From Webcam In Java](https://www.baeldung.com/java-capture-image-from-webcam) diff --git a/libraries-http-2/README.md b/libraries-http-2/README.md index 4085d98ea5..3fa66de6e3 100644 --- a/libraries-http-2/README.md +++ b/libraries-http-2/README.md @@ -9,5 +9,6 @@ This module contains articles about HTTP libraries. - [Retrofit 2 – Dynamic URL](https://www.baeldung.com/retrofit-dynamic-url) - [Adding Interceptors in OkHTTP](https://www.baeldung.com/java-okhttp-interceptors) - [A Guide to Events in OkHTTP](https://www.baeldung.com/java-okhttp-events) +- [Download a Binary File Using OkHttp](https://www.baeldung.com/java-okhttp-download-binary-file) - More articles [[<-- prev]](/libraries-http) diff --git a/libraries-testing/README.md b/libraries-testing/README.md index 447f3f32b9..5498c73094 100644 --- a/libraries-testing/README.md +++ b/libraries-testing/README.md @@ -13,3 +13,4 @@ This module contains articles about test libraries. - [Testing with Hamcrest](https://www.baeldung.com/java-junit-hamcrest-guide) - [Introduction To DBUnit](https://www.baeldung.com/java-dbunit) - [Introduction to ArchUnit](https://www.baeldung.com/java-archunit-intro) +- [Guide to the ModelAssert Library for JSON](https://www.baeldung.com/json-modelassert) diff --git a/patterns/enterprise-patterns/wire-tap/README.md b/patterns/enterprise-patterns/wire-tap/README.md index 5f2aaf0d5a..95cd1d585f 100644 --- a/patterns/enterprise-patterns/wire-tap/README.md +++ b/patterns/enterprise-patterns/wire-tap/README.md @@ -31,4 +31,5 @@ For more details, check out the AmqApplicationUnitTest.class. - [Wire tap (Enterprise Integration Pattern)](https://drafts.baeldung.com/?p=103346&preview=true) - [Intro to Apache camel](https://www.baeldung.com/apache-camel-intro) +- [Wire Tap Enterprise Integration Pattern](https://www.baeldung.com/wiretap-pattern) diff --git a/reactor-core/README.md b/reactor-core/README.md index 21ccc1ed92..f7c36f5897 100644 --- a/reactor-core/README.md +++ b/reactor-core/README.md @@ -10,3 +10,4 @@ This module contains articles about Reactor Core. - [How to Extract a Mono’s Content in Java](https://www.baeldung.com/java-string-from-mono) - [How to Convert Mono> Into Flux](https://www.baeldung.com/java-mono-list-to-flux) - [Project Reactor: map() vs flatMap()](https://www.baeldung.com/java-reactor-map-flatmap) +- [What Does Mono.defer() Do?](https://www.baeldung.com/java-mono-defer)