diff --git a/core-java-modules/core-java-arrays-convert/README.md b/core-java-modules/core-java-arrays-convert/README.md index fecbcfb698..b68773463d 100644 --- a/core-java-modules/core-java-arrays-convert/README.md +++ b/core-java-modules/core-java-arrays-convert/README.md @@ -8,3 +8,4 @@ This module contains articles about arrays conversion in Java - [Convert a Byte Array to a Numeric Representation in Java](https://www.baeldung.com/java-byte-array-to-number) - [Converting a String Array Into an int Array in Java](https://www.baeldung.com/java-convert-string-array-to-int-array) - [Convert Java Array to Iterable](https://www.baeldung.com/java-array-convert-to-iterable) +- [Converting an int[] to HashSet in Java](https://www.baeldung.com/java-converting-int-array-to-hashset) 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 18ff0c687d..d734cf7364 100644 --- a/core-java-modules/core-java-collections-list-5/README.md +++ b/core-java-modules/core-java-collections-list-5/README.md @@ -11,3 +11,4 @@ This module contains articles about the Java List collection - [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) - [Converting a Java List to a Json Array](https://www.baeldung.com/java-converting-list-to-json-array) +- [What’s the Difference Between Iterator and ListIterator?](https://www.baeldung.com/java-iterator-vs-listiterator) 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 dacd13e7dc..bebcdea82b 100644 --- a/core-java-modules/core-java-collections-maps-6/README.md +++ b/core-java-modules/core-java-collections-maps-6/README.md @@ -6,3 +6,5 @@ - [Difference Between Map.clear() and Instantiating a New Map](https://www.baeldung.com/java-map-clear-vs-new-map) - [Converting JsonNode Object to Map](https://www.baeldung.com/jackson-jsonnode-map) - [How to Modify a Key in a HashMap?](https://www.baeldung.com/java-hashmap-modify-key) +- [Converting String or String Array to Map in Java](https://www.baeldung.com/java-convert-string-to-map) +- [Remove Duplicate Values From HashMap in Java](https://www.baeldung.com/java-hashmap-delete-duplicates) 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 a11329365a..33f20d60af 100644 --- a/core-java-modules/core-java-collections-set-2/README.md +++ b/core-java-modules/core-java-collections-set-2/README.md @@ -3,4 +3,5 @@ - [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) - [Sorting a HashSet in Java](https://www.baeldung.com/java-sort-hashset) -- More articles: [[<-- prev]](/core-java-modules/core-java-collections-set) \ No newline at end of file +- [How to Get First Item From a Java Set](https://www.baeldung.com/first-item-set) +- More articles: [[<-- prev]](/core-java-modules/core-java-collections-set) diff --git a/core-java-modules/core-java-io-apis-2/README.md b/core-java-modules/core-java-io-apis-2/README.md index e86539c750..cc3c351afc 100644 --- a/core-java-modules/core-java-io-apis-2/README.md +++ b/core-java-modules/core-java-io-apis-2/README.md @@ -5,4 +5,5 @@ This module contains articles about core Java input/output(IO) APIs. ### Relevant Articles: - [Constructing a Relative Path From Two Absolute Paths in Java](https://www.baeldung.com/java-relative-path-absolute) - [Get the Desktop Path in Java](https://www.baeldung.com/java-desktop-path) -- [Check if a File Is Empty in Java](https://www.baeldung.com/java-check-file-empty) \ No newline at end of file +- [Check if a File Is Empty in Java](https://www.baeldung.com/java-check-file-empty) +- [Converting Relative to Absolute Paths in Java](https://www.baeldung.com/java-from-relative-to-absolute-paths) diff --git a/jackson-modules/jackson-polymorphic-deserialization/README.md b/jackson-modules/jackson-polymorphic-deserialization/README.md new file mode 100644 index 0000000000..feb40da5c4 --- /dev/null +++ b/jackson-modules/jackson-polymorphic-deserialization/README.md @@ -0,0 +1,2 @@ +## Relevant Articles +- [@JsonSubTypes Vs. Reflections for Polymorphic Deserialization in Jackson](https://www.baeldung.com/java-jackson-polymorphic-deserialization) diff --git a/json-modules/json-conversion/README.md b/json-modules/json-conversion/README.md index 7094486afe..86e8365c70 100644 --- a/json-modules/json-conversion/README.md +++ b/json-modules/json-conversion/README.md @@ -2,4 +2,5 @@ This module contains articles about JSON Conversions -### Relevant Articles: \ No newline at end of file +### Relevant Articles: +- [Convert JSON Array to Java List](https://www.baeldung.com/java-convert-json-array-to-list) diff --git a/logging-modules/logback/src/main/java/com/baeldung/parameterized/logging/README.md b/logging-modules/logback/src/main/java/com/baeldung/parameterized/logging/README.md new file mode 100644 index 0000000000..fd38f41082 --- /dev/null +++ b/logging-modules/logback/src/main/java/com/baeldung/parameterized/logging/README.md @@ -0,0 +1,2 @@ +## Relevant Articles +- [Parameterized Logging With SLF4J](https://www.baeldung.com/slf4j-parameterized-logging) diff --git a/persistence-modules/spring-boot-persistence-4/README.md b/persistence-modules/spring-boot-persistence-4/README.md new file mode 100644 index 0000000000..bb2da31d9c --- /dev/null +++ b/persistence-modules/spring-boot-persistence-4/README.md @@ -0,0 +1,2 @@ +## Relevant Articles +- [Scroll API in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-scroll-api) diff --git a/spring-kafka-2/README.md b/spring-kafka-2/README.md index ea2af99e35..d71e75f15c 100644 --- a/spring-kafka-2/README.md +++ b/spring-kafka-2/README.md @@ -6,3 +6,4 @@ This module contains articles about Spring with Kafka - [Implementing Retry in Kafka Consumer](https://www.baeldung.com/spring-retry-kafka-consumer) - [Spring Kafka: Configure Multiple Listeners on Same Topic](https://www.baeldung.com/spring-kafka-multiple-listeners-same-topic) +- [Understanding Kafka Topics and Partitions](https://www.baeldung.com/kafka-topics-partitions) diff --git a/spring-pulsar/README.md b/spring-pulsar/README.md new file mode 100644 index 0000000000..dd428c2cb2 --- /dev/null +++ b/spring-pulsar/README.md @@ -0,0 +1,2 @@ +## Relevant Articles +- [Getting Started With Apache Pulsar and Spring Boot](https://www.baeldung.com/spring-boot-apache-pulsar)