diff --git a/core-java-modules/core-java-14/README.md b/core-java-modules/core-java-14/README.md index 97be9391fb..7260891f7a 100644 --- a/core-java-modules/core-java-14/README.md +++ b/core-java-modules/core-java-14/README.md @@ -13,3 +13,4 @@ This module contains articles about Java 14. - [New Features in Java 14](https://www.baeldung.com/java-14-new-features) - [Java 14 Record vs. Lombok](https://www.baeldung.com/java-record-vs-lombok) - [Record vs. Final Class in Java](https://www.baeldung.com/java-record-vs-final-class) +- [Custom Constructor in Java Records](https://www.baeldung.com/java-records-custom-constructor) diff --git a/core-java-modules/core-java-collections-list-5/README.md b/core-java-modules/core-java-collections-list-5/README.md index d8cd989600..4929ca4e4e 100644 --- a/core-java-modules/core-java-collections-list-5/README.md +++ b/core-java-modules/core-java-collections-list-5/README.md @@ -5,3 +5,4 @@ This module contains articles about the Java List collection ### Relevant Articles: - [Java List Interface](https://www.baeldung.com/java-list-interface) - [Finding All Duplicates in a List in Java](https://www.baeldung.com/java-list-find-duplicates) +- [Moving Items Around in an Arraylist](https://www.baeldung.com/java-arraylist-move-items) diff --git a/core-java-modules/core-java-nio-2/README.md b/core-java-modules/core-java-nio-2/README.md index 527600779a..308356cf8b 100644 --- a/core-java-modules/core-java-nio-2/README.md +++ b/core-java-modules/core-java-nio-2/README.md @@ -14,4 +14,5 @@ This module contains articles about core Java non-blocking input and output (IO) - [What Is the Difference Between NIO and NIO.2?](https://www.baeldung.com/java-nio-vs-nio-2) - [Guide to ByteBuffer](https://www.baeldung.com/java-bytebuffer) - [Find Files that Match Wildcard Strings in Java](https://www.baeldung.com/java-files-match-wildcard-strings) +- [Get the Desktop Path in Java](https://www.baeldung.com/java-desktop-path) - [[<-- Prev]](/core-java-modules/core-java-nio) diff --git a/core-java-modules/core-java-streams-collect/README.md b/core-java-modules/core-java-streams-collect/README.md index 97c76dc431..b6659a8ef7 100644 --- a/core-java-modules/core-java-streams-collect/README.md +++ b/core-java-modules/core-java-streams-collect/README.md @@ -1,2 +1,2 @@ ## Relevant Articles: - +- [Can Stream.collect() Return the null Value?](https://www.baeldung.com/stream-collect-returning-null) diff --git a/core-java-modules/core-java-streams-maps/README.md b/core-java-modules/core-java-streams-maps/README.md index 729105e3fd..f9f7dffad9 100644 --- a/core-java-modules/core-java-streams-maps/README.md +++ b/core-java-modules/core-java-streams-maps/README.md @@ -1 +1,2 @@ ## Relevant Articles: +- [Handle Duplicate Keys When Producing Map Using Java Stream](https://www.baeldung.com/java-duplicate-keys-when-producing-map-using-stream) diff --git a/kubernetes-modules/k8s-java-heap-dump/README.md b/kubernetes-modules/k8s-java-heap-dump/README.md new file mode 100644 index 0000000000..e683bbe68a --- /dev/null +++ b/kubernetes-modules/k8s-java-heap-dump/README.md @@ -0,0 +1,2 @@ +## Relevant Articles +- [How to Get Java Heap Dump From Kubernetes Pod?](https://www.baeldung.com/ops/java-heap-dump-from-kubernetes-pod) diff --git a/maven-modules/maven-reactor/README.md b/maven-modules/maven-reactor/README.md new file mode 100644 index 0000000000..745ced5e82 --- /dev/null +++ b/maven-modules/maven-reactor/README.md @@ -0,0 +1,2 @@ +## Relevant Articles +- [Maven Reactor](https://www.baeldung.com/java-maven-reactor) diff --git a/patterns-modules/clean-architecture/README.md b/patterns-modules/clean-architecture/README.md index aad8608447..4ff1e4c93e 100644 --- a/patterns-modules/clean-architecture/README.md +++ b/patterns-modules/clean-architecture/README.md @@ -1,3 +1,4 @@ ### Relevant Articles: - [Clean Architecture with Spring Boot](https://www.baeldung.com/spring-boot-clean-architecture) +- [Anemic vs. Rich Domain Objects](https://www.baeldung.com/java-anemic-vs-rich-domain-objects) diff --git a/patterns-modules/idd/README.md b/patterns-modules/idd/README.md index e320af31b4..7d843af9ea 100644 --- a/patterns-modules/idd/README.md +++ b/patterns-modules/idd/README.md @@ -1 +1 @@ -### Relevant Articles: \ No newline at end of file +### Relevant Articles: diff --git a/persistence-modules/java-mongodb-3/README.md b/persistence-modules/java-mongodb-3/README.md index 4296c96ed8..48fc211370 100644 --- a/persistence-modules/java-mongodb-3/README.md +++ b/persistence-modules/java-mongodb-3/README.md @@ -4,3 +4,4 @@ - [Query Documents using Document ID in MongoDB](https://www.baeldung.com/mongodb-query-documents-id) - [Insert Array Inside an Object in MongoDB](https://www.baeldung.com/java-mongodb-document-insert-array) - [Guide to Filters in MongoDB](https://www.baeldung.com/java-mongodb-filters) +- [Add Field to an Existing MongoDB Bson Filter in Java](https://www.baeldung.com/java-mongodb-add-field-bson-filter) diff --git a/persistence-modules/spring-data-jpa-repo-3/README.md b/persistence-modules/spring-data-jpa-repo-3/README.md index 419394d459..dc33900736 100644 --- a/persistence-modules/spring-data-jpa-repo-3/README.md +++ b/persistence-modules/spring-data-jpa-repo-3/README.md @@ -3,4 +3,5 @@ This module contains articles about Spring Data JPA. ### Relevant Articles: +- [New CRUD Repository Interfaces in Spring Data 3](https://www.baeldung.com/spring-data-3-crud-repository-interfaces) - More articles: [[<-- prev]](../spring-data-jpa-repo-2) diff --git a/spring-boot-modules/spring-boot-redis/README.md b/spring-boot-modules/spring-boot-redis/README.md new file mode 100644 index 0000000000..b5585f9637 --- /dev/null +++ b/spring-boot-modules/spring-boot-redis/README.md @@ -0,0 +1,2 @@ +## Relevant Articles +- [How to configure Redis TTL with Spring Data Redis?](https://www.baeldung.com/spring-data-redis-ttl) diff --git a/spring-boot-modules/spring-boot-swagger-2/README.md b/spring-boot-modules/spring-boot-swagger-2/README.md index e5ec236801..1b43b09e39 100644 --- a/spring-boot-modules/spring-boot-swagger-2/README.md +++ b/spring-boot-modules/spring-boot-swagger-2/README.md @@ -4,3 +4,4 @@ - [Specify an Array of Strings as Body Parameters in Swagger](https://www.baeldung.com/swagger-body-array-of-strings) - [Swagger @ApiParam vs @ApiModelProperty](https://www.baeldung.com/swagger-apiparam-vs-apimodelproperty) - [Map Date Types With OpenAPI Generator](https://www.baeldung.com/openapi-map-date-types) +- [API First Development with Spring Boot and OpenAPI 3.0](https://www.baeldung.com/spring-boot-openapi-api-first-development) diff --git a/spring-cloud-modules/spring-cloud-openfeign/README.md b/spring-cloud-modules/spring-cloud-openfeign/README.md index 62434b35b8..d1e52eb415 100644 --- a/spring-cloud-modules/spring-cloud-openfeign/README.md +++ b/spring-cloud-modules/spring-cloud-openfeign/README.md @@ -5,3 +5,4 @@ - [Provide an OAuth2 Token to a Feign Client](https://www.baeldung.com/spring-cloud-feign-oauth-token) - [Propagating Exceptions With OpenFeign and Spring](https://www.baeldung.com/spring-openfeign-propagate-exception) - [Feign Client Exception Handling](https://www.baeldung.com/java-feign-client-exception-handling) +- [Configuring Spring Cloud FeignClient URL](https://www.baeldung.com/spring-cloud-feignclient-url) diff --git a/spring-security-modules/spring-security-oauth2-testing/README.md b/spring-security-modules/spring-security-oauth2-testing/README.md new file mode 100644 index 0000000000..4d1850867a --- /dev/null +++ b/spring-security-modules/spring-security-oauth2-testing/README.md @@ -0,0 +1,2 @@ +## Relevant Articles +- [Testing Spring OAuth2 Access-Control](https://www.baeldung.com/spring-oauth-testing-access-control)