From 7e6dd2359a7871a15760c0e53457d061f8adeac7 Mon Sep 17 00:00:00 2001 From: edizor <113095366+edizor@users.noreply.github.com> Date: Thu, 8 Jun 2023 21:35:13 +0800 Subject: [PATCH 01/10] Update README.md [skip ci] --- persistence-modules/hibernate-mapping-2/README.md | 1 + 1 file changed, 1 insertion(+) 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) From 4cf8629b0d2e59ff6c4a6c4d917af2785a53f489 Mon Sep 17 00:00:00 2001 From: edizor <113095366+edizor@users.noreply.github.com> Date: Thu, 8 Jun 2023 21:42:19 +0800 Subject: [PATCH 02/10] Update README.md [skip ci] --- apache-poi-2/README.md | 1 + 1 file changed, 1 insertion(+) 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) From 0ce665956e911d481c0cad5e83e2a5a5a0798fdf Mon Sep 17 00:00:00 2001 From: edizor <113095366+edizor@users.noreply.github.com> Date: Thu, 8 Jun 2023 21:45:22 +0800 Subject: [PATCH 03/10] Update README.md [skip ci] --- testing-modules/gatling-java/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From a31023faa93075549b80bcc9aa8691e5fef4a7a7 Mon Sep 17 00:00:00 2001 From: edizor <113095366+edizor@users.noreply.github.com> Date: Thu, 8 Jun 2023 22:58:45 +0800 Subject: [PATCH 04/10] Update README.md [skip ci] --- testing-modules/mocks-2/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) From a428334e819b65953701d89d4f290aa1a1e86a96 Mon Sep 17 00:00:00 2001 From: edizor <113095366+edizor@users.noreply.github.com> Date: Thu, 8 Jun 2023 23:03:13 +0800 Subject: [PATCH 05/10] Update README.md [skip ci] --- core-java-modules/core-java-collections-maps-6/README.md | 1 + 1 file changed, 1 insertion(+) 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..9575a02c73 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,4 @@ ## 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) From 33ed21921a60161fc77f6c19d3cab714cf4d346f Mon Sep 17 00:00:00 2001 From: edizor <113095366+edizor@users.noreply.github.com> Date: Thu, 8 Jun 2023 23:09:26 +0800 Subject: [PATCH 06/10] Update README.md [skip ci] --- core-java-modules/core-java-concurrency-basic-3/README.md | 1 + 1 file changed, 1 insertion(+) 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) From 029216e65b3b46fa2bf4d9229d452eb8f440ffc0 Mon Sep 17 00:00:00 2001 From: edizor <113095366+edizor@users.noreply.github.com> Date: Thu, 8 Jun 2023 23:12:41 +0800 Subject: [PATCH 07/10] Update README.md [skip ci] --- core-java-modules/core-java-collections-list-5/README.md | 1 + 1 file changed, 1 insertion(+) 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) From bce3bce1e5d1db785ff4d44307c4ccc429b3b0b9 Mon Sep 17 00:00:00 2001 From: edizor <113095366+edizor@users.noreply.github.com> Date: Thu, 8 Jun 2023 23:19:21 +0800 Subject: [PATCH 08/10] Update README.md [skip ci] --- spring-di-4/README.md | 1 + 1 file changed, 1 insertion(+) 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) From e75bd1bea505a96f0fa04c9d7357b99e9d21d81e Mon Sep 17 00:00:00 2001 From: edizor <113095366+edizor@users.noreply.github.com> Date: Thu, 8 Jun 2023 23:28:40 +0800 Subject: [PATCH 09/10] Create README.md [skip ci] --- messaging-modules/postgres-notify/README.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 messaging-modules/postgres-notify/README.md 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) From 8becf2883dca2d94c57a08921ec0a808d580bb44 Mon Sep 17 00:00:00 2001 From: edizor <113095366+edizor@users.noreply.github.com> Date: Thu, 8 Jun 2023 23:30:21 +0800 Subject: [PATCH 10/10] Update README.md [skip ci] --- core-java-modules/core-java-collections-maps-6/README.md | 1 + 1 file changed, 1 insertion(+) 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 9575a02c73..0b5d69e8f6 100644 --- a/core-java-modules/core-java-collections-maps-6/README.md +++ b/core-java-modules/core-java-collections-maps-6/README.md @@ -2,3 +2,4 @@ - [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)