diff --git a/apache-poi-2/README.md b/apache-poi-2/README.md index e2b5160109..0132147201 100644 --- a/apache-poi-2/README.md +++ b/apache-poi-2/README.md @@ -12,4 +12,5 @@ This module contains articles about Apache POI. - [Finding the Last Row in an Excel Spreadsheet From Java](https://www.baeldung.com/java-excel-find-last-row) - [Setting Formulas in Excel with Apache POI](https://www.baeldung.com/java-apache-poi-set-formulas) - [Set the Date Format Using Apache POI](https://www.baeldung.com/java-apache-poi-date-format) +- [Replacing Variables in a Document Template with Java](https://www.baeldung.com/java-replace-pattern-word-document-doc-docx) - More articles: [[<-- prev]](../apache-poi) 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 ff40ae3725..947cf234b9 100644 --- a/core-java-modules/core-java-collections-list-5/README.md +++ b/core-java-modules/core-java-collections-list-5/README.md @@ -9,3 +9,4 @@ This module contains articles about the Java List collection - [Check if a List Contains an Element From Another List in Java](https://www.baeldung.com/java-check-elements-between-lists) - [Array vs. List Performance in Java](https://www.baeldung.com/java-array-vs-list-performance) - [Set Default Value for Elements in List](https://www.baeldung.com/java-list-set-default-values) +- [Get Unique Values From an ArrayList In Java](https://www.baeldung.com/java-unique-values-arraylist) diff --git a/core-java-modules/core-java-collections-maps-6/README.md b/core-java-modules/core-java-collections-maps-6/README.md index 5b45752e74..0b5d69e8f6 100644 --- a/core-java-modules/core-java-collections-maps-6/README.md +++ b/core-java-modules/core-java-collections-maps-6/README.md @@ -1,3 +1,5 @@ ## Relevant Articles - [Copying All Keys and Values From One Hashmap Onto Another Without Replacing Existing Keys and Values](https://www.baeldung.com/java-copy-hashmap-no-changes) - [Convert Hashmap to JSON Object in Java](https://www.baeldung.com/java-convert-hashmap-to-json-object) +- [Converting Map to Map in Java](https://www.baeldung.com/java-converting-map-string-object-to-string-string) +- [Converting Object To Map in Java](https://www.baeldung.com/java-convert-object-to-map) diff --git a/core-java-modules/core-java-concurrency-basic-3/README.md b/core-java-modules/core-java-concurrency-basic-3/README.md index da148599b0..619a68cdef 100644 --- a/core-java-modules/core-java-concurrency-basic-3/README.md +++ b/core-java-modules/core-java-concurrency-basic-3/README.md @@ -7,4 +7,5 @@ This module contains articles about basic Java concurrency. - [How to Handle InterruptedException in Java](https://www.baeldung.com/java-interrupted-exception) - [Thread.sleep() vs Awaitility.await()](https://www.baeldung.com/java-thread-sleep-vs-awaitility-await) - [Is CompletableFuture Non-blocking?](https://www.baeldung.com/java-completablefuture-non-blocking) +- [Returning a Value After Finishing Thread’s Job in Java](https://www.baeldung.com/java-return-value-after-thread-finish) - [[<-- Prev]](../core-java-concurrency-basic-2) diff --git a/messaging-modules/postgres-notify/README.md b/messaging-modules/postgres-notify/README.md new file mode 100644 index 0000000000..32c1f6bf3e --- /dev/null +++ b/messaging-modules/postgres-notify/README.md @@ -0,0 +1,2 @@ +## Relevant Articles +- [Using PostgreSQL as a Message Broker](https://www.baeldung.com/spring-postgresql-message-broker) diff --git a/persistence-modules/hibernate-mapping-2/README.md b/persistence-modules/hibernate-mapping-2/README.md index 36c9f8c304..9994640f1a 100644 --- a/persistence-modules/hibernate-mapping-2/README.md +++ b/persistence-modules/hibernate-mapping-2/README.md @@ -7,3 +7,4 @@ This module contains articles about Hibernate Mappings. - [Hibernate Many to Many Annotation Tutorial](https://www.baeldung.com/hibernate-many-to-many) - [Boolean Converters in Hibernate 6](https://www.baeldung.com/java-hibernate-6-boolean-converters) - [Generate UUIDs as Primary Keys With Hibernate](https://www.baeldung.com/java-hibernate-uuid-primary-key) +- [Understanding JPA/Hibernate Associations](https://www.baeldung.com/jpa-hibernate-associations) diff --git a/spring-di-4/README.md b/spring-di-4/README.md index d4b0d94385..8e73aff437 100644 --- a/spring-di-4/README.md +++ b/spring-di-4/README.md @@ -6,4 +6,5 @@ This module contains articles about dependency injection with Spring - [Using @Autowired in Abstract Classes](https://www.baeldung.com/spring-autowired-abstract-class) - [Spring @Component Annotation](https://www.baeldung.com/spring-component-annotation) +- [Why Is Field Injection Not Recommended?](https://www.baeldung.com/java-spring-field-injection-cons) - More articles: [[<-- prev]](../spring-di-3) diff --git a/testing-modules/gatling-java/README.md b/testing-modules/gatling-java/README.md index 4bc07b1910..02c271cd07 100644 --- a/testing-modules/gatling-java/README.md +++ b/testing-modules/gatling-java/README.md @@ -1,6 +1,6 @@ ### Relevant Articles: - [Load Testing Rest Endpoint Using Gatling](https://www.baeldung.com/gatling-load-testing-rest-endpoint) - +- [How to Display a Full HTTP Response Body With Gatling](https://www.baeldung.com/java-gatling-show-response-body) ### Running a simualtion diff --git a/testing-modules/mocks-2/README.md b/testing-modules/mocks-2/README.md index 5746da09bb..52486eb50b 100644 --- a/testing-modules/mocks-2/README.md +++ b/testing-modules/mocks-2/README.md @@ -1,4 +1,4 @@ ## Relevant articles: - [Introduction to Datafaker](https://www.baeldung.com/java-datafaker) - +- [Mocking Private Fields With Mockito](https://www.baeldung.com/java-mockito-private-fields)