diff --git a/algorithms-modules/algorithms-sorting-2/README.md b/algorithms-modules/algorithms-sorting-2/README.md index b31cfceb42..f8a675ed8a 100644 --- a/algorithms-modules/algorithms-sorting-2/README.md +++ b/algorithms-modules/algorithms-sorting-2/README.md @@ -4,4 +4,5 @@ - [Sorting Strings by Contained Numbers in Java](https://www.baeldung.com/java-sort-strings-contained-numbers) - [Guide to In-Place Sorting Algorithm Works with a Java Implementation](https://www.baeldung.com/java-in-place-sorting) - [Partitioning and Sorting Arrays with Many Repeated Entries with Java Examples](https://www.baeldung.com/java-sorting-arrays-with-repeated-entries) +- [Gravity/Bead Sort in Java](https://www.baeldung.com/java-gravity-bead-sort) - More articles: [[<-- prev]](/algorithms-sorting) diff --git a/core-java-modules/core-java-collections-set-2/README.md b/core-java-modules/core-java-collections-set-2/README.md index 17ed810323..48c70084ca 100644 --- a/core-java-modules/core-java-collections-set-2/README.md +++ b/core-java-modules/core-java-collections-set-2/README.md @@ -1,3 +1,4 @@ ## Relevant articles - [Using Streams to Collect Into a TreeSet](https://www.baeldung.com/java-stream-collect-into-treeset) +- [A Guide to LinkedHashSet in Java](https://www.baeldung.com/java-linkedhashset) diff --git a/core-java-modules/core-java-networking-4/README.md b/core-java-modules/core-java-networking-4/README.md new file mode 100644 index 0000000000..355f0c447e --- /dev/null +++ b/core-java-modules/core-java-networking-4/README.md @@ -0,0 +1,2 @@ +## Relevant Articles: +- [Difference Between URI.create() and new URI()](https://www.baeldung.com/java-uri-create-and-new-uri) diff --git a/spring-5-webflux-2/README.md b/spring-5-webflux-2/README.md index 862ca72ca9..e64c88c61d 100644 --- a/spring-5-webflux-2/README.md +++ b/spring-5-webflux-2/README.md @@ -5,3 +5,4 @@ This module contains articles about Spring 5 WebFlux ## Relevant articles: - [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) +- [How to Access the First Element of a Flux](https://www.baeldung.com/java-flux-first-element) diff --git a/spring-boot-modules/spring-boot-groovy/README.md b/spring-boot-modules/spring-boot-groovy/README.md index 73edafb9c0..0897cc92bc 100644 --- a/spring-boot-modules/spring-boot-groovy/README.md +++ b/spring-boot-modules/spring-boot-groovy/README.md @@ -6,4 +6,5 @@ This module contains articles about Spring with Groovy ### Relevant Articles: - [Building a Simple Web Application with Spring Boot and Groovy](https://www.baeldung.com/spring-boot-groovy-web-app) -- [Groovy Bean Definitions](https://www.baeldung.com/spring-groovy-beans) \ No newline at end of file +- [Groovy Bean Definitions](https://www.baeldung.com/spring-groovy-beans) +- [Using Groovy in Spring](https://www.baeldung.com/groovy/spring-using-groovy) diff --git a/spring-boot-modules/spring-boot-properties-3/README.md b/spring-boot-modules/spring-boot-properties-3/README.md index 1bd6724885..77c6815649 100644 --- a/spring-boot-modules/spring-boot-properties-3/README.md +++ b/spring-boot-modules/spring-boot-properties-3/README.md @@ -8,4 +8,5 @@ - [How to Define a Map in YAML for a POJO?](https://www.baeldung.com/yaml-map-pojo) - [Using application.yml vs application.properties in Spring Boot](https://www.baeldung.com/spring-boot-yaml-vs-properties) - [Load Spring Boot Properties From a JSON File](https://www.baeldung.com/spring-boot-json-properties) -- [IntelliJ – Cannot Resolve Spring Boot Configuration Properties Error](https://www.baeldung.com/intellij-resolve-spring-boot-configuration-properties) \ No newline at end of file +- [IntelliJ – Cannot Resolve Spring Boot Configuration Properties Error](https://www.baeldung.com/intellij-resolve-spring-boot-configuration-properties) +- [Log Properties in a Spring Boot Application](https://www.baeldung.com/spring-boot-log-properties) diff --git a/spring-reactive-modules/spring-5-reactive-client-2/README.md b/spring-reactive-modules/spring-5-reactive-client-2/README.md index 341271e5ad..067a87a9d5 100644 --- a/spring-reactive-modules/spring-5-reactive-client-2/README.md +++ b/spring-reactive-modules/spring-5-reactive-client-2/README.md @@ -6,4 +6,5 @@ This module contains articles about reactive Spring 5 WebClient The "REST With Spring" Classes: http://bit.ly/restwithspring ### Relevant Articles +- [Limiting the Requests per Second With WebClient](https://www.baeldung.com/spring-webclient-limit-requests-per-second) - More articles: [[<-- prev]](../spring-5-reactive-client) diff --git a/testing-modules/junit-5/README.md b/testing-modules/junit-5/README.md index cefc8e1707..9f1fd53ee5 100644 --- a/testing-modules/junit-5/README.md +++ b/testing-modules/junit-5/README.md @@ -8,3 +8,4 @@ - [Determine the Execution Time of JUnit Tests](https://www.baeldung.com/junit-test-execution-time) - [@BeforeAll and @AfterAll in Non-Static Methods](https://www.baeldung.com/java-beforeall-afterall-non-static) - [The java.lang.NoClassDefFoundError in JUnit](https://www.baeldung.com/junit-noclassdeffounderror) +- [assertAll() vs Multiple Assertions in JUnit5](https://github.com/eugenp/tutorials/tree/master/testing-modules/junit-5)