diff --git a/core-java-modules/core-java-char/README.md b/core-java-modules/core-java-char/README.md index 56040a3ea5..c8a7331875 100644 --- a/core-java-modules/core-java-char/README.md +++ b/core-java-modules/core-java-char/README.md @@ -6,3 +6,4 @@ This module contains articles about Java Character Class - [Character#isAlphabetic vs. Character#isLetter](https://www.baeldung.com/java-character-isletter-isalphabetic) - [Difference Between Java’s “char” and “String”](https://www.baeldung.com/java-char-vs-string) - [Increment Character in Java](https://www.baeldung.com/java-char-sequence) +- [Creating Unicode Character From Its Code Point Hex String](https://www.baeldung.com/java-unicode-character-from-code-point-hex-string) diff --git a/core-java-modules/core-java-date-operations-4/README.md b/core-java-modules/core-java-date-operations-4/README.md index bfc460f5eb..6f8bc6c4b8 100644 --- a/core-java-modules/core-java-date-operations-4/README.md +++ b/core-java-modules/core-java-date-operations-4/README.md @@ -3,4 +3,4 @@ This module contains articles about date operations in Java. ### Relevant Articles: - [Calculate Number of Weekdays Between Two Dates in Java](https://www.baeldung.com/java-count-weekdays-between-two-dates) - +- [Convert Long to Date in Java](https://www.baeldung.com/java-long-date-conversion) diff --git a/core-java-modules/core-java-datetime-conversion-2/README.md b/core-java-modules/core-java-datetime-conversion-2/README.md index a4204729e1..b71d8b9190 100644 --- a/core-java-modules/core-java-datetime-conversion-2/README.md +++ b/core-java-modules/core-java-datetime-conversion-2/README.md @@ -3,4 +3,4 @@ This module contains articles about converting between Java date and time objects. ### Relevant Articles: - +- [Convert Gregorian to Hijri Date in Java](https://www.baeldung.com/java-date-gregorian-hijri-conversion) diff --git a/core-java-modules/core-java-lang-6/README.md b/core-java-modules/core-java-lang-6/README.md index f50e0b0cd5..5319dd15f7 100644 --- a/core-java-modules/core-java-lang-6/README.md +++ b/core-java-modules/core-java-lang-6/README.md @@ -14,3 +14,4 @@ This module contains articles about core features in the Java language - [Static Final Variables in Java](https://www.baeldung.com/java-static-final-variables) - [What Is the Error: “Non-static method cannot be referenced from a static context”?](https://www.baeldung.com/java-non-static-method-cannot-be-referenced-from-a-static-context) - [Recursively Sum the Integers in an Array](https://www.baeldung.com/java-recursive-sum-integer-array) +- [Set an Environment Variable at Runtime in Java](https://www.baeldung.com/java-set-environment-variable-runtime) diff --git a/core-java-modules/core-java-string-operations-7/README.md b/core-java-modules/core-java-string-operations-7/README.md index c100b66ff7..a358c8fa57 100644 --- a/core-java-modules/core-java-string-operations-7/README.md +++ b/core-java-modules/core-java-string-operations-7/README.md @@ -14,3 +14,4 @@ - [UTF-8 Validation in Java](https://www.baeldung.com/java-utf-8-validation) - [Simple Morse Code Translation in Java](https://www.baeldung.com/java-morse-code-english-translate) - [How to Determine if a String Contains Invalid Encoded Characters](https://www.baeldung.com/java-check-string-contains-invalid-encoded-characters) +- [Regular Expression for Password Validation in Java](https://www.baeldung.com/java-regex-password-validation) diff --git a/logging-modules/logging-techniques/README.md b/logging-modules/logging-techniques/README.md new file mode 100644 index 0000000000..4f3acae4e2 --- /dev/null +++ b/logging-modules/logging-techniques/README.md @@ -0,0 +1,2 @@ +### Relevant Articles: +- [Structured Logging in Java](https://www.baeldung.com/java-structured-logging) diff --git a/patterns-modules/monkey-patching/README.md b/patterns-modules/monkey-patching/README.md index 7d843af9ea..2d8a74fd9e 100644 --- a/patterns-modules/monkey-patching/README.md +++ b/patterns-modules/monkey-patching/README.md @@ -1 +1,2 @@ ### Relevant Articles: +- [Monkey Patching in Java](https://www.baeldung.com/java-monkey-patching) diff --git a/persistence-modules/spring-boot-persistence-4/README.md b/persistence-modules/spring-boot-persistence-4/README.md index ab69839542..7011f492ca 100644 --- a/persistence-modules/spring-boot-persistence-4/README.md +++ b/persistence-modules/spring-boot-persistence-4/README.md @@ -1,3 +1,4 @@ ## Relevant Articles - [Scroll API in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-scroll-api) - [List vs. Set in @OneToMany JPA](https://www.baeldung.com/spring-jpa-onetomany-list-vs-set) +- [N+1 Problem in Hibernate and Spring Data JPA](https://www.baeldung.com/spring-hibernate-n1-problem) diff --git a/persistence-modules/spring-data-jpa-repo-4/README.md b/persistence-modules/spring-data-jpa-repo-4/README.md index f0cfdedab0..92f4158df8 100644 --- a/persistence-modules/spring-data-jpa-repo-4/README.md +++ b/persistence-modules/spring-data-jpa-repo-4/README.md @@ -6,4 +6,5 @@ - [TRUNCATE TABLE in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-truncate-table) - [When to Use the getReferenceById() and findById() Methods in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-getreferencebyid-findbyid-methods) - [Implementing Persistable-Only Entities in Spring Data JPA](https://www.baeldung.com/spring-data-persistable-only-entities) +- [Storing PostgreSQL JSONB Using Spring Boot and JPA](https://www.baeldung.com/spring-boot-jpa-storing-postgresql-jsonb) - More articles: [[<-- prev]](../spring-data-jpa-repo-3) diff --git a/spring-batch-2/README.md b/spring-batch-2/README.md index 9b5d59f0b9..cddd52e70a 100644 --- a/spring-batch-2/README.md +++ b/spring-batch-2/README.md @@ -2,4 +2,5 @@ - [Spring Boot With Spring Batch](https://www.baeldung.com/spring-boot-spring-batch) - [How to Trigger and Stop a Scheduled Spring Batch Job](https://www.baeldung.com/spring-batch-start-stop-job) +- [Access Job Parameters From ItemReader in Spring Batch](https://www.baeldung.com/spring-batch-itemreader-access-job-parameters) - More articles [[<-- prev]](/spring-batch) diff --git a/spring-reactive-modules/spring-reactive-3/README.md b/spring-reactive-modules/spring-reactive-3/README.md index 4dbaa93226..5c4bf97d66 100644 --- a/spring-reactive-modules/spring-reactive-3/README.md +++ b/spring-reactive-modules/spring-reactive-3/README.md @@ -8,4 +8,5 @@ This module contains articles about reactive Spring Boot. - [Spring Boot Actuator](https://www.baeldung.com/spring-boot-actuators) - [Reactive WebSockets with Spring 5](https://www.baeldung.com/spring-5-reactive-websockets) - [A Guide to Spring Session Reactive Support: WebSession](https://www.baeldung.com/spring-session-reactive) +- [Custom JSON Deserialization Using Spring WebClient](https://www.baeldung.com/spring-webclient-json-custom-deserialization) - More articles: [[<-- prev]](../spring-reactive-2)