From b898d5966b4b26930dfd790117d783ba956be9b5 Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 17 Jun 2021 00:45:16 +0800 Subject: [PATCH 01/10] Update README.md --- persistence-modules/core-java-persistence-2/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/persistence-modules/core-java-persistence-2/README.md b/persistence-modules/core-java-persistence-2/README.md index cebd81388d..365e9e7256 100644 --- a/persistence-modules/core-java-persistence-2/README.md +++ b/persistence-modules/core-java-persistence-2/README.md @@ -3,3 +3,4 @@ - [Getting Database URL From JDBC Connection Object](https://www.baeldung.com/jdbc-get-url-from-connection) - [JDBC URL Format For Different Databases](https://www.baeldung.com/java-jdbc-url-format) - [How to Check if a Database Table Exists with JDBC](https://www.baeldung.com/jdbc-check-table-exists) +- [Inserting Null Into an Integer Column Using JDBC](https://www.baeldung.com/jdbc-insert-null-into-integer-column) From 3fce29a16bcb963d5b5bc11678ba5cf6d8b5f371 Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 17 Jun 2021 00:46:44 +0800 Subject: [PATCH 02/10] Update README.md --- libraries-data-3/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries-data-3/README.md b/libraries-data-3/README.md index 2c01d2e320..d3bfb2c80c 100644 --- a/libraries-data-3/README.md +++ b/libraries-data-3/README.md @@ -4,6 +4,7 @@ This module contains articles about libraries for data processing in Java. ### Relevant articles - [Kafka Streams vs Kafka Consumer](https://www.baeldung.com/java-kafka-streams-vs-kafka-consumer) +- [Kafka Topic Creation Using Java](https://www.baeldung.com/kafka-topic-creation) - More articles: [[<-- prev]](/../libraries-data-2) ##### Building the project From e8a6c8637102c8556c6471ab42b725500c5dd33d Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 17 Jun 2021 00:49:43 +0800 Subject: [PATCH 03/10] Update README.md --- java-collections-conversions-2/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/java-collections-conversions-2/README.md b/java-collections-conversions-2/README.md index 628421b0e2..83b3ec8786 100644 --- a/java-collections-conversions-2/README.md +++ b/java-collections-conversions-2/README.md @@ -8,4 +8,5 @@ This module contains articles about conversions among Collection types and array - [Mapping Lists with ModelMapper](https://www.baeldung.com/java-modelmapper-lists) - [Converting List to Map With a Custom Supplier](https://www.baeldung.com/list-to-map-supplier) - [Arrays.asList vs new ArrayList(Arrays.asList())](https://www.baeldung.com/java-arrays-aslist-vs-new-arraylist) +- [Iterate Over a Set in Java](https://www.baeldung.com/java-iterate-set) - More articles: [[<-- prev]](../java-collections-conversions) From 46b06811fb475e3869e0d4536cbde170f76a6f1b Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 17 Jun 2021 00:51:09 +0800 Subject: [PATCH 04/10] Update README.md --- core-java-modules/core-java-9/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-9/README.md b/core-java-modules/core-java-9/README.md index cab02369cc..8203755417 100644 --- a/core-java-modules/core-java-9/README.md +++ b/core-java-modules/core-java-9/README.md @@ -10,3 +10,4 @@ This module contains articles about Java 9 core features - [Initialize a HashMap in Java](https://www.baeldung.com/java-initialize-hashmap) - [Immutable ArrayList in Java](https://www.baeldung.com/java-immutable-list) - [Easy Ways to Write a Java InputStream to an OutputStream](https://www.baeldung.com/java-inputstream-to-outputstream) +- [Private Methods in Java Interfaces](https://www.baeldung.com/java-interface-private-methods) From eb8893b943f5b370e1a3b6eb38eeb1ddaf4681eb Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 17 Jun 2021 00:52:51 +0800 Subject: [PATCH 05/10] Create README.md --- core-java-modules/core-java-regex-2/README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 core-java-modules/core-java-regex-2/README.md diff --git a/core-java-modules/core-java-regex-2/README.md b/core-java-modules/core-java-regex-2/README.md new file mode 100644 index 0000000000..7920ac456d --- /dev/null +++ b/core-java-modules/core-java-regex-2/README.md @@ -0,0 +1,3 @@ +### Relevant Articles: + +- [Non-Capturing Regex Groups in Java](https://www.baeldung.com/java-regex-non-capturing-groups) From 40ae20081885a6c1d701f771ebd0c9a5633e71fc Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 17 Jun 2021 00:54:50 +0800 Subject: [PATCH 06/10] Update README.md --- core-java-modules/core-java-nio-2/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-nio-2/README.md b/core-java-modules/core-java-nio-2/README.md index ab54899501..52efa0330a 100644 --- a/core-java-modules/core-java-nio-2/README.md +++ b/core-java-modules/core-java-nio-2/README.md @@ -10,4 +10,5 @@ This module contains articles about core Java non-blocking input and output (IO) - [Using Java MappedByteBuffer](https://www.baeldung.com/java-mapped-byte-buffer) - [How to Lock a File in Java](https://www.baeldung.com/java-lock-files) - [Java NIO DatagramChannel](https://www.baeldung.com/java-nio-datagramchannel) +- [Java – Path vs File](https://www.baeldung.com/java-path-vs-file) - [[<-- Prev]](/core-java-modules/core-java-nio) From 5cf3bc80d2929aee1d03603af95730eaf02aad0e Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 17 Jun 2021 00:57:30 +0800 Subject: [PATCH 07/10] Update README.md --- logging-modules/logback/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/logging-modules/logback/README.md b/logging-modules/logback/README.md index 05a4ab9308..c9e5450cb0 100644 --- a/logging-modules/logback/README.md +++ b/logging-modules/logback/README.md @@ -3,3 +3,4 @@ - [Get Log Output in JSON](https://www.baeldung.com/java-log-json-output) - [SLF4J Warning: Class Path Contains Multiple SLF4J Bindings](https://www.baeldung.com/slf4j-classpath-multiple-bindings) - [Sending Emails with Logback](https://www.baeldung.com/logback-send-email) +- [Mask Sensitive Data in Logs With Logback](https://www.baeldung.com/logback-mask-sensitive-data) From 35187f7265274bcf3bb35ab3dc3e5f95c8033349 Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 17 Jun 2021 01:01:39 +0800 Subject: [PATCH 08/10] Update README.md --- core-java-modules/core-java-lang-4/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-lang-4/README.md b/core-java-modules/core-java-lang-4/README.md index e1023513eb..18bbf43647 100644 --- a/core-java-modules/core-java-lang-4/README.md +++ b/core-java-modules/core-java-lang-4/README.md @@ -6,3 +6,4 @@ This module contains articles about core features in the Java language - [The package-info.java File](https://www.baeldung.com/java-package-info) - [What are Compile-time Constants in Java?](https://www.baeldung.com/java-compile-time-constants) - [Java Objects.hash() vs Objects.hashCode()](https://www.baeldung.com/java-objects-hash-vs-objects-hashcode) +- [Referencing a Method in Javadoc Comments](https://www.baeldung.com/java-method-in-javadoc) From 33e89f869265659c29b4a3b0dc02620cb8db1986 Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 17 Jun 2021 01:03:50 +0800 Subject: [PATCH 09/10] Update README.md --- core-java-modules/core-java-8-2/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-8-2/README.md b/core-java-modules/core-java-8-2/README.md index c1c09d2192..7f2245ccc0 100644 --- a/core-java-modules/core-java-8-2/README.md +++ b/core-java-modules/core-java-8-2/README.md @@ -7,4 +7,5 @@ This module contains articles about Java 8 core features - [Run a Java Application from the Command Line](https://www.baeldung.com/java-run-jar-with-arguments) - [Java 8 Stream skip() vs limit()](https://www.baeldung.com/java-stream-skip-vs-limit) - [Guide to Java BiFunction Interface](https://www.baeldung.com/java-bifunction-interface) +- [Interface With Default Methods vs Abstract Class](https://www.baeldung.com/java-interface-default-method-vs-abstract-class) - [[<-- Prev]](/core-java-modules/core-java-8) From a6dcae4963ae0b0196ad4a52f4b2099749433d9f Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 17 Jun 2021 01:06:35 +0800 Subject: [PATCH 10/10] Update README.md --- spring-boot-modules/spring-boot-runtime/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-boot-modules/spring-boot-runtime/README.md b/spring-boot-modules/spring-boot-runtime/README.md index a36a17fa8e..072bd16a78 100644 --- a/spring-boot-modules/spring-boot-runtime/README.md +++ b/spring-boot-modules/spring-boot-runtime/README.md @@ -11,3 +11,4 @@ This module contains articles about administering a Spring Boot runtime - [CORS with Spring](https://www.baeldung.com/spring-cors) - [Spring – Log Incoming Requests](https://www.baeldung.com/spring-http-logging) - [How to Configure Spring Boot Tomcat](https://www.baeldung.com/spring-boot-configure-tomcat) + - [Max-HTTP-Header-Size in Spring Boot 2](https://www.baeldung.com/spring-boot-max-http-header-size)