diff --git a/core-java-modules/core-java-arrays-operations-basic/README.md b/core-java-modules/core-java-arrays-operations-basic/README.md index ca81c23c98..2e1268e00c 100644 --- a/core-java-modules/core-java-arrays-operations-basic/README.md +++ b/core-java-modules/core-java-arrays-operations-basic/README.md @@ -10,3 +10,4 @@ This module contains articles about Java array fundamentals. They assume no prev - [Removing an Element from an Array in Java](https://www.baeldung.com/java-array-remove-element) - [Removing the First Element of an Array](https://www.baeldung.com/java-array-remove-first-element) - [Extending an Array’s Length](https://www.baeldung.com/java-array-add-element-at-the-end) +- [Initializing a Boolean Array in Java](https://www.baeldung.com/java-initializing-boolean-array) diff --git a/core-java-modules/core-java-collections-4/README.md b/core-java-modules/core-java-collections-4/README.md index d8fbafcbe4..cdb457e342 100644 --- a/core-java-modules/core-java-collections-4/README.md +++ b/core-java-modules/core-java-collections-4/README.md @@ -10,3 +10,4 @@ - [Create an Empty Map in Java](https://www.baeldung.com/java-create-empty-map) - [Sorting Objects in a List by Date](https://www.baeldung.com/java-sort-list-by-date) - [Fixed Size Queue Implementations in Java](https://www.baeldung.com/java-fixed-size-queue) +- [Difference Between Java Enumeration and Iterator](https://www.baeldung.com/java-enumeration-vs-iterator) diff --git a/core-java-modules/core-java-collections-set-2/README.md b/core-java-modules/core-java-collections-set-2/README.md new file mode 100644 index 0000000000..17ed810323 --- /dev/null +++ b/core-java-modules/core-java-collections-set-2/README.md @@ -0,0 +1,3 @@ +## Relevant articles + +- [Using Streams to Collect Into a TreeSet](https://www.baeldung.com/java-stream-collect-into-treeset) diff --git a/core-java-modules/core-java-io-4/README.md b/core-java-modules/core-java-io-4/README.md index fdf9ebcb77..263077946d 100644 --- a/core-java-modules/core-java-io-4/README.md +++ b/core-java-modules/core-java-io-4/README.md @@ -12,4 +12,6 @@ This module contains articles about core Java input and output (IO) - [Java Scanner.skip method with examples](https://www.baeldung.com/java-scanner-skip) - [Generate the MD5 Checksum for a File in Java](https://www.baeldung.com/java-md5-checksum-file) - [Getting the Filename From a String Containing an Absolute File Path](https://www.baeldung.com/java-filename-full-path) +- [Mocking Java InputStream Object](https://www.baeldung.com/java-mocking-inputstream) - [[<-- Prev]](/core-java-modules/core-java-io-3) + diff --git a/core-java-modules/core-java-lang-5/README.md b/core-java-modules/core-java-lang-5/README.md index de76f63411..f1408abe96 100644 --- a/core-java-modules/core-java-lang-5/README.md +++ b/core-java-modules/core-java-lang-5/README.md @@ -8,3 +8,5 @@ This module contains articles about core features in the Java language - [Advantages and Disadvantages of Using Java Wildcard Imports](https://www.baeldung.com/java-wildcard-imports) - [Toggle a Boolean Variable in Java](https://www.baeldung.com/java-toggle-boolean) - [Handle Classes With the Same Name in Java](https://www.baeldung.com/java-classes-same-name) +- [Variable Instantiation on Declaration vs. on Constructor in Java](https://www.baeldung.com/java-variable-instantiation-declaration-vs-constructor) +- [Infinity in Java](https://www.baeldung.com/java-infinity) diff --git a/core-java-modules/core-java-networking-3/README.md b/core-java-modules/core-java-networking-3/README.md index 6c336d2e65..80782645dd 100644 --- a/core-java-modules/core-java-networking-3/README.md +++ b/core-java-modules/core-java-networking-3/README.md @@ -13,4 +13,6 @@ This module contains articles about networking in Java - [Get the IP Address of the Current Machine Using Java](https://www.baeldung.com/java-get-ip-address) - [Get Domain Name From Given URL in Java](https://www.baeldung.com/java-domain-name-from-url) - [Java HttpClient Timeout](https://www.baeldung.com/java-httpclient-timeout) +- [Port Scanning With Java](https://www.baeldung.com/java-port-scanning) +- [Validating URL in Java](https://www.baeldung.com/java-validate-url) - [[<-- Prev]](/core-java-modules/core-java-networking-2) diff --git a/docker-modules/docker-compose/README.md b/docker-modules/docker-compose/README.md index 5ab629e54f..8a82ae3f4b 100644 --- a/docker-modules/docker-compose/README.md +++ b/docker-modules/docker-compose/README.md @@ -7,4 +7,4 @@ - [Mounting Multiple Volumes on a Docker Container](https://www.baeldung.com/ops/docker-mounting-multiple-volumes) - [Rebuild Docker Container in Docker Compose](https://www.baeldung.com/rebuild-docker-container-compose/) - [Assign Static IP to Docker Container and Docker-Compose](https://www.baeldung.com/ops/docker-assign-static-ip-container) - +- [Exclude a Sub-Folder When Adding a Volume to Docker](https://www.baeldung.com/ops/docker-exclude-sub-folder-when-adding-volume) diff --git a/pdf-2/README.md b/pdf-2/README.md new file mode 100644 index 0000000000..531ebb04e5 --- /dev/null +++ b/pdf-2/README.md @@ -0,0 +1,2 @@ +## Relevant articles +- [Editing Existing PDF Files in Java](https://www.baeldung.com/java-edit-existing-pdf) diff --git a/persistence-modules/spring-boot-persistence-3/README.md b/persistence-modules/spring-boot-persistence-3/README.md index 1dff3c8b5a..ba97a02a9d 100644 --- a/persistence-modules/spring-boot-persistence-3/README.md +++ b/persistence-modules/spring-boot-persistence-3/README.md @@ -1,3 +1,3 @@ ### Relevant Articles: - +- [Patterns for Iterating Over Large Result Sets With Spring Data JPA](https://www.baeldung.com/spring-data-jpa-iterate-large-result-sets) - More articles: [[<-- prev]](../spring-boot-persistence-2) diff --git a/rabbitmq/README.md b/rabbitmq/README.md index 3624635835..d91d268b2b 100644 --- a/rabbitmq/README.md +++ b/rabbitmq/README.md @@ -6,5 +6,5 @@ This module contains articles about RabbitMQ. - [Introduction to RabbitMQ](https://www.baeldung.com/rabbitmq) - [Exchanges, Queues, and Bindings in RabbitMQ](https://www.baeldung.com/java-rabbitmq-exchanges-queues-bindings) - [Pub-Sub vs. Message Queues](https://www.baeldung.com/pub-sub-vs-message-queues) - +- [Channels and Connections in RabbitMQ](https://www.baeldung.com/java-rabbitmq-channels-connections) diff --git a/reactor-core/README.md b/reactor-core/README.md index c0d4a3fc3c..dccf1fa85c 100644 --- a/reactor-core/README.md +++ b/reactor-core/README.md @@ -12,3 +12,4 @@ This module contains articles about Reactor Core. - [What Does Mono.defer() Do?](https://www.baeldung.com/java-mono-defer) - [Handling Exceptions in Project Reactor](https://www.baeldung.com/reactor-exceptions) - [Difference Between Flux.create and Flux.generate](https://www.baeldung.com/java-flux-create-generate) +- [Difference Between Flux and Mono](https://www.baeldung.com/java-reactor-flux-vs-mono) diff --git a/spring-5-webflux-2/README.md b/spring-5-webflux-2/README.md index 0222ddbaa4..862ca72ca9 100644 --- a/spring-5-webflux-2/README.md +++ b/spring-5-webflux-2/README.md @@ -3,5 +3,5 @@ This module contains articles about Spring 5 WebFlux ## Relevant articles: - -- [Spring Webflux and @Cacheable Annotation](https://www.baeldung.com/spring-webflux-cacheable) \ No newline at end of file +- [Spring Webflux and @Cacheable Annotation](https://www.baeldung.com/spring-webflux-cacheable) +- [Comparison Between Mono’s doOnNext() and doOnSuccess()](https://www.baeldung.com/mono-doonnext-doonsuccess) diff --git a/spring-boot-modules/spring-boot-libraries-2/README.md b/spring-boot-modules/spring-boot-libraries-2/README.md index 5f189e9b49..9dd58745fc 100644 --- a/spring-boot-modules/spring-boot-libraries-2/README.md +++ b/spring-boot-modules/spring-boot-libraries-2/README.md @@ -9,5 +9,5 @@ This module contains articles about various Spring Boot libraries - [An Introduction to Kong](https://www.baeldung.com/kong) - [Getting Started With GraphQL SPQR and Spring Boot](https://www.baeldung.com/spring-boot-graphql-spqr) - [Scanning Java Annotations At Runtime](https://www.baeldung.com/java-scan-annotations-runtime) - +- [Guide to Resilience4j With Spring Boot](https://www.baeldung.com/spring-boot-resilience4j) More articles: [[prev -->]](/spring-boot-modules/spring-boot-libraries) diff --git a/spring-boot-modules/spring-boot-mvc-4/README.md b/spring-boot-modules/spring-boot-mvc-4/README.md index a7a341deee..c80a66c197 100644 --- a/spring-boot-modules/spring-boot-mvc-4/README.md +++ b/spring-boot-modules/spring-boot-mvc-4/README.md @@ -10,3 +10,4 @@ This module contains articles about Spring Web MVC in Spring Boot projects. - [A Quick Intro to the SpringBootServletInitializer](https://www.baeldung.com/spring-boot-servlet-initializer) - [A Guide to Spring in Eclipse STS](https://www.baeldung.com/eclipse-sts-spring) - [Hide a Request Field in Swagger API](https://www.baeldung.com/spring-swagger-hide-field) +- [Uploading a File and JSON Data in Postman](https://www.baeldung.com/postman-upload-file-json) diff --git a/spring-caching-2/README.md b/spring-caching-2/README.md index d781602280..9041e40302 100644 --- a/spring-caching-2/README.md +++ b/spring-caching-2/README.md @@ -1 +1,3 @@ +## Relevant articles - [Spring Boot Cache with Redis](https://www.baeldung.com/spring-boot-redis-cache) +- [Setting Time-To-Live Value for Caching](https://www.baeldung.com/spring-setting-ttl-value-cache) diff --git a/spring-reactive-modules/README.md b/spring-reactive-modules/README.md index 100f15ae49..3522efec17 100644 --- a/spring-reactive-modules/README.md +++ b/spring-reactive-modules/README.md @@ -1,3 +1,4 @@ ## Spring Reactive -This module contains modules about Spring Reactive \ No newline at end of file +This module contains modules about Spring Reactive +- [How to Resolve Spring Webflux DataBufferLimitException](https://www.baeldung.com/spring-webflux-databufferlimitexception) diff --git a/spring-web-modules/spring-rest-http-3/README.md b/spring-web-modules/spring-rest-http-3/README.md index 062f8a86e2..a5b3d51e93 100644 --- a/spring-web-modules/spring-rest-http-3/README.md +++ b/spring-web-modules/spring-rest-http-3/README.md @@ -6,5 +6,5 @@ This module contains articles about HTTP in REST APIs with Spring. The "REST With Spring 3" Classes: http://bit.ly/restwithspring ### Relevant Articles: - +- [Send Array as Part of x-www-form-urlencoded Using Postman](https://www.baeldung.com/java-postman-send-array) - More articles: [[<-- prev]](../spring-rest-http)