diff --git a/core-java-modules/core-java-date-operations-3/README.md b/core-java-modules/core-java-date-operations-3/README.md index c87714f38a..97855814e5 100644 --- a/core-java-modules/core-java-date-operations-3/README.md +++ b/core-java-modules/core-java-date-operations-3/README.md @@ -8,4 +8,5 @@ This module contains articles about date operations in Java. - [How to Determine Date of the First Day of the Week Using LocalDate in Java](https://www.baeldung.com/java-first-day-of-the-week) - [Adding One Month to Current Date in Java](https://www.baeldung.com/java-adding-one-month-to-current-date) - [How to Get Last Day of a Month in Java](https://www.baeldung.com/java-last-day-month) +- [Getting Yesterday’s Date in Java](https://www.baeldung.com/java-find-yesterdays-date) - [[<-- Prev]](/core-java-modules/core-java-date-operations-2) diff --git a/core-java-modules/core-java-lang-6/README.md b/core-java-modules/core-java-lang-6/README.md index 577e9c27dc..825a592fee 100644 --- a/core-java-modules/core-java-lang-6/README.md +++ b/core-java-modules/core-java-lang-6/README.md @@ -4,4 +4,4 @@ This module contains articles about core features in the Java language ### Relevant Articles: -- [Convert One Enum to Another Enum in Java]() \ No newline at end of file +- [Convert One Enum to Another Enum in Java](https://www.baeldung.com/java-convert-enums) diff --git a/core-java-modules/core-java-lang-oop-patterns/README.md b/core-java-modules/core-java-lang-oop-patterns/README.md index ea3309dc0a..ba18c57ab0 100644 --- a/core-java-modules/core-java-lang-oop-patterns/README.md +++ b/core-java-modules/core-java-lang-oop-patterns/README.md @@ -9,3 +9,4 @@ This module contains articles about Object-oriented programming (OOP) patterns i - [How to Make a Deep Copy of an Object in Java](https://www.baeldung.com/java-deep-copy) - [Using an Interface vs. Abstract Class in Java](https://www.baeldung.com/java-interface-vs-abstract-class) - [Should We Create an Interface for Only One Implementation?](https://www.baeldung.com/java-interface-single-implementation) +- [How to Deep Copy an ArrayList in Java](https://www.baeldung.com/java-arraylist-deep-copy) diff --git a/core-java-modules/core-java-numbers-6/README.md b/core-java-modules/core-java-numbers-6/README.md index 729548313d..560a84f851 100644 --- a/core-java-modules/core-java-numbers-6/README.md +++ b/core-java-modules/core-java-numbers-6/README.md @@ -2,4 +2,5 @@ - [Java Program to Estimate Pi](https://www.baeldung.com/java-monte-carlo-compute-pi) - [Convert Integer to Hexadecimal in Java](https://www.baeldung.com/java-convert-int-to-hex) - [Integer.class Vs. Integer.TYPE Vs. int.class](https://www.baeldung.com/java-integer-class-vs-type-vs-int) +- [Does Java Read Integers in Little Endian or Big Endian?](https://www.baeldung.com/java-integers-little-big-endian) - More articles: [[<-- prev]](../core-java-numbers-5) diff --git a/gradle-modules/gradle-7/README.md b/gradle-modules/gradle-7/README.md index 98fb968e82..e59b59f9fd 100644 --- a/gradle-modules/gradle-7/README.md +++ b/gradle-modules/gradle-7/README.md @@ -6,3 +6,4 @@ - [Different Dependency Version Declarations in Gradle](https://www.baeldung.com/gradle-different-dependency-version-declarations) - [Generating Javadoc With Gradle](https://www.baeldung.com/java-gradle-javadoc) - [Generating WSDL Stubs With Gradle](https://www.baeldung.com/java-gradle-create-wsdl-stubs) +- [Gradle Toolchains Support for JVM Projects](https://www.baeldung.com/java-gradle-toolchains-jvm-projects) diff --git a/json-modules/json-2/README.md b/json-modules/json-2/README.md index bf2cb06aba..adf55c3618 100644 --- a/json-modules/json-2/README.md +++ b/json-modules/json-2/README.md @@ -11,5 +11,6 @@ This module contains articles about JSON. - [A Guide to FastJson](https://www.baeldung.com/fastjson) - [Check Whether a String Is Valid JSON in Java](https://www.baeldung.com/java-validate-json-string) - [Getting a Value in JSONObject](https://www.baeldung.com/java-jsonobject-get-value) +- [Pretty-Print a JSON in Java](https://www.baeldung.com/java-json-pretty-print) - More Articles: [[<-- prev]](/json-modules/json) diff --git a/spring-web-modules/spring-thymeleaf-attributes/accessing-session-attributes/README.md b/spring-web-modules/spring-thymeleaf-attributes/accessing-session-attributes/README.md new file mode 100644 index 0000000000..d7ece5ff7f --- /dev/null +++ b/spring-web-modules/spring-thymeleaf-attributes/accessing-session-attributes/README.md @@ -0,0 +1,2 @@ +## Relevant Articles +- [Accessing Session Attributes in Thymeleaf](https://www.baeldung.com/thymeleaf-accessing-session-attributes)