From d33aa1f036558b094e4da4f0256976969655824d Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 23 Dec 2021 01:08:59 +0800 Subject: [PATCH 01/10] Update README.md --- spring-boot-modules/spring-boot-artifacts-2/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spring-boot-modules/spring-boot-artifacts-2/README.md b/spring-boot-modules/spring-boot-artifacts-2/README.md index 1ffbf8c6a9..5d0a6ebcd1 100644 --- a/spring-boot-modules/spring-boot-artifacts-2/README.md +++ b/spring-boot-modules/spring-boot-artifacts-2/README.md @@ -5,4 +5,5 @@ This module contains articles about configuring the Spring Boot build process 2. ### Relevant Articles: - [Difference Between spring-boot:repackage and Maven package](https://www.baeldung.com/spring-boot-repackage-vs-mvn-package) -- More articles: [[<-- prev]](/spring-boot-modules/spring-boot-artifacts) \ No newline at end of file +- [Intro to Spring Boot Starters](https://www.baeldung.com/spring-boot-starters) +- More articles: [[<-- prev]](/spring-boot-modules/spring-boot-artifacts) From 7cedb98fce6f94835dfdf25fe3d193fb8fa61cf3 Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 23 Dec 2021 01:17:54 +0800 Subject: [PATCH 02/10] Update README.md --- linux-bash/command-line-arguments/src/main/bash/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/linux-bash/command-line-arguments/src/main/bash/README.md b/linux-bash/command-line-arguments/src/main/bash/README.md index 27d89fff99..015d121617 100644 --- a/linux-bash/command-line-arguments/src/main/bash/README.md +++ b/linux-bash/command-line-arguments/src/main/bash/README.md @@ -1,3 +1,4 @@ ### Relevant Articles: - [How to Use Command Line Arguments in a Bash Script](https://www.baeldung.com/linux/use-command-line-arguments-in-bash-script) +- [Concatenate Two Strings to Build a Complete Path in Linux](https://www.baeldung.com/linux/concatenate-strings-to-build-path) From 2d1b4d2e477a18c61e6cd2e36fdd8d24b7eec5f7 Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 23 Dec 2021 01:32:39 +0800 Subject: [PATCH 03/10] Update README.md --- 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 f94ae75c41..ef33be8e07 100644 --- a/spring-boot-modules/spring-boot-swagger/README.md +++ b/spring-boot-modules/spring-boot-swagger/README.md @@ -2,3 +2,4 @@ - [Hiding Endpoints From Swagger Documentation in Spring Boot](https://www.baeldung.com/spring-swagger-hiding-endpoints) - [Swagger @Api Description Is Deprecated](https://www.baeldung.com/java-swagger-api-description-deprecated) +- [Generate PDF from Swagger API Documentation](https://www.baeldung.com/swagger-generate-pdf) From 74c135961b6f43ee425a003bcde7876e62c95189 Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 23 Dec 2021 01:58:49 +0800 Subject: [PATCH 04/10] Update README.md --- spring-kafka/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/spring-kafka/README.md b/spring-kafka/README.md index 0be741b393..5ff3cb625b 100644 --- a/spring-kafka/README.md +++ b/spring-kafka/README.md @@ -9,6 +9,7 @@ This module contains articles about Spring with Kafka - [Monitor the Consumer Lag in Apache Kafka](https://www.baeldung.com/java-kafka-consumer-lag) - [Send Large Messages With Kafka](https://www.baeldung.com/java-kafka-send-large-message) - [Configuring Kafka SSL Using Spring Boot](https://www.baeldung.com/spring-boot-kafka-ssl) +- [Kafka Streams With Spring Boot](https://www.baeldung.com/spring-boot-kafka-streams) ### Intro From d72ebd493d5761ee45cd13ff4286cf7db14458e1 Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 23 Dec 2021 02:03:12 +0800 Subject: [PATCH 05/10] Update README.md --- lombok/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/lombok/README.md b/lombok/README.md index b8073ff621..69b547f10c 100644 --- a/lombok/README.md +++ b/lombok/README.md @@ -15,3 +15,4 @@ This module contains articles about Project Lombok. - [Using Lombok’s @Accessors Annotation](https://www.baeldung.com/lombok-accessors) - [Omitting Getter or Setter in Lombok](https://www.baeldung.com/lombok-omit-getter-setter) - [Declaring Val and Var Variables in Lombok](https://www.baeldung.com/java-lombok-val-var) +- [Lombok Using @With Annotations](https://www.baeldung.com/lombok-with-annotations) From 243cbbb2279fa28844c603948837d6cde0bdb36e Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 23 Dec 2021 02:05:16 +0800 Subject: [PATCH 06/10] Update README.md --- core-java-modules/core-java-lang-oop-constructors/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-lang-oop-constructors/README.md b/core-java-modules/core-java-lang-oop-constructors/README.md index d3d05d31bf..6083f1d0df 100644 --- a/core-java-modules/core-java-lang-oop-constructors/README.md +++ b/core-java-modules/core-java-lang-oop-constructors/README.md @@ -9,3 +9,4 @@ This module contains article about constructors in Java - [Private Constructors in Java](https://www.baeldung.com/java-private-constructors) - [Throwing Exceptions in Constructors](https://www.baeldung.com/java-constructors-exceptions) - [Constructors in Java Abstract Classes](https://www.baeldung.com/java-abstract-classes-constructors) +- [Java Implicit Super Constructor is Undefined Error](https://www.baeldung.com/java-implicit-super-constructor-is-undefined-error) From 1670cbe475446837d85c4b5fcd20caf0a0e29bc8 Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 23 Dec 2021 02:09:49 +0800 Subject: [PATCH 07/10] Update README.md --- core-java-modules/core-java-11-2/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-11-2/README.md b/core-java-modules/core-java-11-2/README.md index 93920864cc..0a46fac19e 100644 --- a/core-java-modules/core-java-11-2/README.md +++ b/core-java-modules/core-java-11-2/README.md @@ -9,3 +9,4 @@ This module contains articles about Java 11 core features - [New Features in Java 11](https://www.baeldung.com/java-11-new-features) - [Getting the Java Version at Runtime](https://www.baeldung.com/get-java-version-runtime) - [Invoking a SOAP Web Service in Java](https://www.baeldung.com/java-soap-web-service) +- [Java HTTPS Client Certificate Authentication](https://www.baeldung.com/java-https-client-certificate-authentication) From 29e26c08c1c3a61224f758d07adb3e765e3a1160 Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 23 Dec 2021 02:15:32 +0800 Subject: [PATCH 08/10] Update README.md --- spring-boot-modules/spring-boot-2/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-boot-modules/spring-boot-2/README.md b/spring-boot-modules/spring-boot-2/README.md index e69de29bb2..7ea97f80c5 100644 --- a/spring-boot-modules/spring-boot-2/README.md +++ b/spring-boot-modules/spring-boot-2/README.md @@ -0,0 +1,3 @@ +### Relevant Articles: + +- [Speed up Spring Boot Startup Time](https://www.baeldung.com/spring-boot-startup-speed) From 53f8515461df138d002df64309c5bcc3edd6650b Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 23 Dec 2021 02:21:53 +0800 Subject: [PATCH 09/10] Update README.md --- micronaut/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/micronaut/README.md b/micronaut/README.md index 86ed705a9f..1ab31d0c0c 100644 --- a/micronaut/README.md +++ b/micronaut/README.md @@ -4,3 +4,4 @@ This module contains articles about Micronaut. ### Relevant Articles: - [Introduction to Micronaut Framework](https://www.baeldung.com/micronaut) +- [Micronaut vs. Spring Boot](https://www.baeldung.com/micronaut-vs-spring-boot) From de62a4e03c389bd9947bf28db542d8b722ab1430 Mon Sep 17 00:00:00 2001 From: johnA1331 <53036378+johnA1331@users.noreply.github.com> Date: Thu, 23 Dec 2021 02:26:02 +0800 Subject: [PATCH 10/10] Update README.md --- core-java-modules/core-java-io-4/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/core-java-modules/core-java-io-4/README.md b/core-java-modules/core-java-io-4/README.md index c837e2bffc..0ce69237bb 100644 --- a/core-java-modules/core-java-io-4/README.md +++ b/core-java-modules/core-java-io-4/README.md @@ -5,4 +5,5 @@ This module contains articles about core Java input and output (IO) ### Relevant Articles: - [Java File Separator vs File Path Separator](https://www.baeldung.com/java-file-vs-file-path-separator) +- [Simulate touch Command in Java](https://www.baeldung.com/java-simulate-touch-command) - [[<-- Prev]](/core-java-modules/core-java-io-3)