From 0a0edd8569742a5abf6a7f5b87b9709de7d11f9f Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 16:23:45 +0500 Subject: [PATCH 01/16] Updated README.md added link back to the article: https://www.baeldung.com/java-tostring-valueof --- core-java-modules/core-java-string-conversions-2/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-string-conversions-2/README.md b/core-java-modules/core-java-string-conversions-2/README.md index 71f35c17b1..19f660534f 100644 --- a/core-java-modules/core-java-string-conversions-2/README.md +++ b/core-java-modules/core-java-string-conversions-2/README.md @@ -12,4 +12,5 @@ This module contains articles about string conversions from/to another type. - [Convert a ByteBuffer to String in Java](https://www.baeldung.com/java-bytebuffer-to-string) - [Convert String to Float and Back in Java](https://www.baeldung.com/java-string-to-float) - [Difference Between parseInt() and valueOf() in Java](https://www.baeldung.com/java-integer-parseint-vs-valueof) +- [Integer.toString() vs String.valueOf() in Java](https://www.baeldung.com/java-tostring-valueof) - More articles: [[<-- prev]](/core-java-modules/core-java-string-conversions) From 9721105cf2fbf3eed8c3808fa66b275ba8d87a73 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 16:32:08 +0500 Subject: [PATCH 02/16] Updated the README.md added link back to the article: https://www.baeldung.com/java-string-permutations --- algorithms-modules/algorithms-miscellaneous-4/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/algorithms-modules/algorithms-miscellaneous-4/README.md b/algorithms-modules/algorithms-miscellaneous-4/README.md index 2649df9fc9..e2ae542bf8 100644 --- a/algorithms-modules/algorithms-miscellaneous-4/README.md +++ b/algorithms-modules/algorithms-miscellaneous-4/README.md @@ -11,4 +11,5 @@ This module contains articles about algorithms. Some classes of algorithms, e.g. - [Find the Longest Substring without Repeating Characters](https://www.baeldung.com/java-longest-substring-without-repeated-characters) - [Permutations of an Array in Java](https://www.baeldung.com/java-array-permutations) - [Find the Smallest Missing Integer in an Array](https://www.baeldung.com/java-smallest-missing-integer-in-array) +- [Permutations of a String in Java](https://www.baeldung.com/java-string-permutations) - More articles: [[<-- prev]](/algorithms-miscellaneous-3) [[next -->]](/algorithms-miscellaneous-5) From 974174bdb9b7aac6b3fbbf9bc639efe5c23dfdcc Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 16:36:48 +0500 Subject: [PATCH 03/16] Updated README.md added link back to the article: https://www.baeldung.com/apache-kafka-check-server-is-running --- apache-kafka-2/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apache-kafka-2/README.md b/apache-kafka-2/README.md index f43d51c20c..ec9e8e2adc 100644 --- a/apache-kafka-2/README.md +++ b/apache-kafka-2/README.md @@ -4,3 +4,6 @@ This module contains articles about Apache Kafka. ##### Building the project You can build the project from the command line using: *mvn clean install*, or in an IDE. + +### Relevant Articles: +- [Guide to Check if Apache Kafka Server Is Running](https://www.baeldung.com/apache-kafka-check-server-is-running) From afc57731b479e79cf6eef2a4ae504d2bd198ad44 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 16:42:01 +0500 Subject: [PATCH 04/16] Updated README.md added link back to the article: https://www.baeldung.com/swagger-apioperation-vs-apiresponse --- spring-boot-modules/spring-boot-swagger/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-boot-modules/spring-boot-swagger/README.md b/spring-boot-modules/spring-boot-swagger/README.md index a09df23a80..c3f6578dee 100644 --- a/spring-boot-modules/spring-boot-swagger/README.md +++ b/spring-boot-modules/spring-boot-swagger/README.md @@ -6,3 +6,4 @@ - [Remove Basic Error Controller In SpringFox Swagger-UI](https://www.baeldung.com/spring-swagger-remove-error-controller) - [Setting Example and Description with Swagger](https://www.baeldung.com/swagger-set-example-description) - [Document Enum in Swagger](https://www.baeldung.com/swagger-enum) +- [@ApiOperation vs @ApiResponse in Swagger](https://www.baeldung.com/swagger-apioperation-vs-apiresponse) From 4859fc9324405061d4b077bcfbb738ec7eab5c59 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 16:50:48 +0500 Subject: [PATCH 05/16] Updated README.md added link back to the article: https://www.baeldung.com/java-read-json-from-url --- jackson-modules/jackson-conversions-2/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/jackson-modules/jackson-conversions-2/README.md b/jackson-modules/jackson-conversions-2/README.md index fa3568652a..0490f671dd 100644 --- a/jackson-modules/jackson-conversions-2/README.md +++ b/jackson-modules/jackson-conversions-2/README.md @@ -12,4 +12,5 @@ This module contains articles about Jackson conversions. - [Jackson: java.util.LinkedHashMap cannot be cast to X](https://www.baeldung.com/jackson-linkedhashmap-cannot-be-cast) - [Deserialize Snake Case to Camel Case With Jackson](https://www.baeldung.com/jackson-deserialize-snake-to-camel-case) - [Serialize and Deserialize Booleans as Integers With Jackson](https://www.baeldung.com/jackson-booleans-as-integers) +- [Reading JSON From a URL in Java](https://www.baeldung.com/java-read-json-from-url) - More articles: [[<-- prev]](../jackson-conversions) From 8bc901c7d14449fd5aa8cb6446cae64f603ac42d Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 16:59:44 +0500 Subject: [PATCH 06/16] Updated README.md added link back to the article: https://www.baeldung.com/java-check-number-positive-negative --- core-java-modules/core-java-numbers-5/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-numbers-5/README.md b/core-java-modules/core-java-numbers-5/README.md index d7e37d0ee7..37501ea31a 100644 --- a/core-java-modules/core-java-numbers-5/README.md +++ b/core-java-modules/core-java-numbers-5/README.md @@ -1,3 +1,4 @@ ### Relevant Articles: - [Check if a Number Is Odd or Even](https://www.baeldung.com/java-check-number-parity) - [How to Check Whether an Integer Exists in a Range with Java](https://www.baeldung.com/java-interval-contains-integer) +- [Check if a Number Is Positive or Negative in Java](https://www.baeldung.com/java-check-number-positive-negative) From 46b3bde188e86873d58a0ee892698bfff216181e Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 17:04:21 +0500 Subject: [PATCH 07/16] Updated README.md added link back to the article: https://www.baeldung.com/java-toggle-boolean --- core-java-modules/core-java-lang-5/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-lang-5/README.md b/core-java-modules/core-java-lang-5/README.md index 9505d02fc2..84e9a575c2 100644 --- a/core-java-modules/core-java-lang-5/README.md +++ b/core-java-modules/core-java-lang-5/README.md @@ -6,3 +6,4 @@ This module contains articles about core features in the Java language - [Difference Between == and equals() in Java](https://www.baeldung.com/java-equals-method-operator-difference) - [Advantages and Disadvantages of Using Java Wildcard Imports](https://www.baeldung.com/java-wildcard-imports) +- [Toggle a Boolean Variable in Java](https://www.baeldung.com/java-toggle-boolean) From eb6eba85752a3ae2c9775673396b1ead8c268560 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 18:29:34 +0500 Subject: [PATCH 08/16] Updated README.md added link back to the article: https://www.baeldung.com/spring-jdbc-batch-inserts --- persistence-modules/spring-jdbc/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/persistence-modules/spring-jdbc/README.md b/persistence-modules/spring-jdbc/README.md index 437a1312da..22f7fb3d63 100644 --- a/persistence-modules/spring-jdbc/README.md +++ b/persistence-modules/spring-jdbc/README.md @@ -5,3 +5,4 @@ - [Spring JdbcTemplate Unit Testing](https://www.baeldung.com/spring-jdbctemplate-testing) - [Using a List of Values in a JdbcTemplate IN Clause](https://www.baeldung.com/spring-jdbctemplate-in-list) - [Obtaining Auto-generated Keys in Spring JDBC](https://www.baeldung.com/spring-jdbc-autogenerated-keys) +- [Spring JDBC Batch Inserts](https://www.baeldung.com/spring-jdbc-batch-inserts) From 84a5e7f58f51af72f9237534705bd16f017c2904 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 18:32:51 +0500 Subject: [PATCH 09/16] Updated README.md added a link back to the article: https://www.baeldung.com/fauna-spring-building-iot-applications --- persistence-modules/fauna/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/persistence-modules/fauna/README.md b/persistence-modules/fauna/README.md index f0899ceaf7..245c2a613b 100644 --- a/persistence-modules/fauna/README.md +++ b/persistence-modules/fauna/README.md @@ -1,3 +1,4 @@ ### Relevant Articles: - [Building a web app Using Fauna and Spring for Your First web Agency Client](https://www.baeldung.com/faunadb-spring-web-app) +- [Building IoT Applications Using Fauna and Spring](https://www.baeldung.com/fauna-spring-building-iot-applications) From 3e867be8c85f8f9846d04b78d99338d76a12eba0 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 21:29:14 +0500 Subject: [PATCH 10/16] Created README.md added link back to the article: https://www.baeldung.com/spring-security-pkce-secret-clients --- spring-security-modules/spring-security-pkce/README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 spring-security-modules/spring-security-pkce/README.md diff --git a/spring-security-modules/spring-security-pkce/README.md b/spring-security-modules/spring-security-pkce/README.md new file mode 100644 index 0000000000..e23ed602bc --- /dev/null +++ b/spring-security-modules/spring-security-pkce/README.md @@ -0,0 +1,3 @@ + +### Relevant Articles: +- [PKCE Support for Secret Clients with Spring Security](https://www.baeldung.com/spring-security-pkce-secret-clients) From 6a2c013bf12ca2e92ac0e4d54cdaeeab1dabbe68 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 21:31:46 +0500 Subject: [PATCH 11/16] Updated README.md added link back to the article: https://www.baeldung.com/locked-ownable-synchronizers --- core-java-modules/core-java-concurrency-advanced-4/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-concurrency-advanced-4/README.md b/core-java-modules/core-java-concurrency-advanced-4/README.md index b9881fd475..376c5cc711 100644 --- a/core-java-modules/core-java-concurrency-advanced-4/README.md +++ b/core-java-modules/core-java-concurrency-advanced-4/README.md @@ -8,3 +8,4 @@ - [Acquire a Lock by a Key in Java](https://www.baeldung.com/java-acquire-lock-by-key) - [Differences Between set() and lazySet() in Java Atomic Variables](https://www.baeldung.com/java-atomic-set-vs-lazyset) - [Volatile vs. Atomic Variables in Java](https://www.baeldung.com/java-volatile-vs-atomic) +- [What Is “Locked Ownable Synchronizers” in Thread Dump?](https://www.baeldung.com/locked-ownable-synchronizers) From c086d40875fa73ee3cfecf1d695a0ffd8b35aea3 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 21:35:11 +0500 Subject: [PATCH 12/16] Updated README.md added link back to the article: https://www.baeldung.com/java-arrays-aslist-vs-list-of --- core-java-modules/core-java-collections-list-4/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-collections-list-4/README.md b/core-java-modules/core-java-collections-list-4/README.md index 34b680e7dc..61401f1de7 100644 --- a/core-java-modules/core-java-collections-list-4/README.md +++ b/core-java-modules/core-java-collections-list-4/README.md @@ -8,4 +8,5 @@ This module contains articles about the Java List collection - [Sort a List Alphabetically in Java](https://www.baeldung.com/java-sort-list-alphabetically) - [Arrays.asList() vs Collections.singletonList()](https://www.baeldung.com/java-aslist-vs-singletonlist) - [Replace Element at a Specific Index in a Java ArrayList](https://www.baeldung.com/java-arraylist-replace-at-index) +- [Difference Between Arrays.asList() and List.of()](https://www.baeldung.com/java-arrays-aslist-vs-list-of) - [[<-- Prev]](/core-java-modules/core-java-collections-list-3) From 966a49f0b61dae78d6598b2be2bb43fe5630c5a2 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 21:37:45 +0500 Subject: [PATCH 13/16] Updated README.md added link back to the article: https://www.baeldung.com/swagger-two-responses-one-response-code --- spring-boot-modules/spring-boot-swagger-2/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-boot-modules/spring-boot-swagger-2/README.md b/spring-boot-modules/spring-boot-swagger-2/README.md index 97c76dc431..e607b56299 100644 --- a/spring-boot-modules/spring-boot-swagger-2/README.md +++ b/spring-boot-modules/spring-boot-swagger-2/README.md @@ -1,2 +1,3 @@ -## Relevant Articles: +### Relevant Articles: +- [Swagger: Specify Two Responses with the Same Response Code](https://www.baeldung.com/swagger-two-responses-one-response-code) From 4acb523a5de6b4dfb4641aa4ea15e6bc06c3e37e Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 21:40:17 +0500 Subject: [PATCH 14/16] Updated README.md added link back to the article: https://www.baeldung.com/java-validate-cc-number --- algorithms-modules/algorithms-miscellaneous-7/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/algorithms-modules/algorithms-miscellaneous-7/README.md b/algorithms-modules/algorithms-miscellaneous-7/README.md index d220afd678..918fcd21dd 100644 --- a/algorithms-modules/algorithms-miscellaneous-7/README.md +++ b/algorithms-modules/algorithms-miscellaneous-7/README.md @@ -1,3 +1,4 @@ ### Relevant Articles: +- [Algorithm to Identify and Validate a Credit Card Number](https://www.baeldung.com/java-validate-cc-number) - More articles: [[<-- prev]](/algorithms-miscellaneous-6) From a4116d2f9f7f458eddb7233d9e84c7de05a21447 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 21:42:38 +0500 Subject: [PATCH 15/16] Updated README.md added link back to the article: https://www.baeldung.com/multitenancy-with-spring-data-jpa/ --- persistence-modules/spring-jpa-2/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/persistence-modules/spring-jpa-2/README.md b/persistence-modules/spring-jpa-2/README.md index 59543cade7..2eee4015a8 100644 --- a/persistence-modules/spring-jpa-2/README.md +++ b/persistence-modules/spring-jpa-2/README.md @@ -6,4 +6,5 @@ - [Transactions with Spring and JPA](https://www.baeldung.com/transaction-configuration-with-jpa-and-spring) - [The DAO with Spring and Hibernate](https://www.baeldung.com/persistence-layer-with-spring-and-hibernate) - [Simplify the DAO with Spring and Java Generics](https://www.baeldung.com/simplifying-the-data-access-layer-with-spring-and-java-generics) +- [Multitenancy With Spring Data JPA](https://www.baeldung.com/multitenancy-with-spring-data-jpa/) - More articles: [[<-- prev]](/spring-jpa) From 2da3b9df1d1cf7feb98963b63412892dc0aa0495 Mon Sep 17 00:00:00 2001 From: Asjad J <97493880+Asjad-J@users.noreply.github.com> Date: Thu, 25 Aug 2022 21:45:03 +0500 Subject: [PATCH 16/16] Updated README.md added link back to the article: https://www.baeldung.com/java-armstrong-numbers --- core-java-modules/core-java-numbers-5/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-numbers-5/README.md b/core-java-modules/core-java-numbers-5/README.md index 37501ea31a..f54894a227 100644 --- a/core-java-modules/core-java-numbers-5/README.md +++ b/core-java-modules/core-java-numbers-5/README.md @@ -2,3 +2,4 @@ - [Check if a Number Is Odd or Even](https://www.baeldung.com/java-check-number-parity) - [How to Check Whether an Integer Exists in a Range with Java](https://www.baeldung.com/java-interval-contains-integer) - [Check if a Number Is Positive or Negative in Java](https://www.baeldung.com/java-check-number-positive-negative) +- [Armstrong Numbers in Java](https://www.baeldung.com/java-armstrong-numbers)