diff --git a/README.md b/README.md
index b08a93f23e..88750cf654 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,3 @@
-**UPDATE**: The price of "Learn Spring Security OAuth" will permanently change on the 11th of December, along with the upcoming OAuth2 material: http://bit.ly/github-lss
-
The Courses
==============================
diff --git a/algorithms-genetic/README.md b/algorithms-genetic/README.md
index 1c9e831ac2..eb4e3fb798 100644
--- a/algorithms-genetic/README.md
+++ b/algorithms-genetic/README.md
@@ -5,6 +5,6 @@ This module contains articles about genetic algorithms.
### Relevant articles:
- [Introduction to Jenetics Library](https://www.baeldung.com/jenetics)
-- [Ant Colony Optimization](https://www.baeldung.com/java-ant-colony-optimization)
+- [Ant Colony Optimization with a Java Example](https://www.baeldung.com/java-ant-colony-optimization)
- [Design a Genetic Algorithm in Java](https://www.baeldung.com/java-genetic-algorithm)
- [The Traveling Salesman Problem in Java](https://www.baeldung.com/java-simulated-annealing-for-traveling-salesman)
diff --git a/algorithms-miscellaneous-1/README.md b/algorithms-miscellaneous-1/README.md
index 77c621339a..02bf874197 100644
--- a/algorithms-miscellaneous-1/README.md
+++ b/algorithms-miscellaneous-1/README.md
@@ -6,8 +6,8 @@ This module contains articles about algorithms. Some classes of algorithms, e.g.
### Relevant articles:
- [Validating Input With Finite Automata in Java](https://www.baeldung.com/java-finite-automata)
-- [Example of Hill Climbing Algorithm](https://www.baeldung.com/java-hill-climbing-algorithm)
-- [Introduction to Minimax Algorithm](https://www.baeldung.com/java-minimax-algorithm)
+- [Example of Hill Climbing Algorithm in Java](https://www.baeldung.com/java-hill-climbing-algorithm)
+- [Introduction to Minimax Algorithm with a Java Implementation](https://www.baeldung.com/java-minimax-algorithm)
- [How to Calculate Levenshtein Distance in Java?](https://www.baeldung.com/java-levenshtein-distance)
- [How to Find the Kth Largest Element in Java](https://www.baeldung.com/java-kth-largest-element)
- More articles: [[next -->]](/algorithms-miscellaneous-2)
diff --git a/algorithms-miscellaneous-4/README.md b/algorithms-miscellaneous-4/README.md
index fd33b58d72..2649df9fc9 100644
--- a/algorithms-miscellaneous-4/README.md
+++ b/algorithms-miscellaneous-4/README.md
@@ -5,8 +5,8 @@ This module contains articles about algorithms. Some classes of algorithms, e.g.
### Relevant articles:
- [Multi-Swarm Optimization Algorithm in Java](https://www.baeldung.com/java-multi-swarm-algorithm)
-- [Check If a String Contains All The Letters of The Alphabet](https://www.baeldung.com/java-string-contains-all-letters)
-- [Find the Middle Element of a Linked List](https://www.baeldung.com/java-linked-list-middle-element)
+- [Check If a String Contains All The Letters of The Alphabet with Java](https://www.baeldung.com/java-string-contains-all-letters)
+- [Find the Middle Element of a Linked List in Java](https://www.baeldung.com/java-linked-list-middle-element)
- [Find Substrings That Are Palindromes in Java](https://www.baeldung.com/java-palindrome-substrings)
- [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)
diff --git a/algorithms-miscellaneous-5/README.md b/algorithms-miscellaneous-5/README.md
index e5d46ace1c..54b936586f 100644
--- a/algorithms-miscellaneous-5/README.md
+++ b/algorithms-miscellaneous-5/README.md
@@ -9,11 +9,11 @@ This module contains articles about algorithms. Some classes of algorithms, e.g.
- [Reversing a Binary Tree in Java](https://www.baeldung.com/java-reversing-a-binary-tree)
- [Find If Two Numbers Are Relatively Prime in Java](https://www.baeldung.com/java-two-relatively-prime-numbers)
- [Knapsack Problem Implementation in Java](https://www.baeldung.com/java-knapsack)
-- [How to Determine if a Binary Tree is Balanced](https://www.baeldung.com/java-balanced-binary-tree)
+- [How to Determine if a Binary Tree is Balanced in Java](https://www.baeldung.com/java-balanced-binary-tree)
- [Overview of Combinatorial Problems in Java](https://www.baeldung.com/java-combinatorial-algorithms)
-- [Prim’s Algorithm](https://www.baeldung.com/java-prim-algorithm)
-- [Maximum Subarray Problem](https://www.baeldung.com/java-maximum-subarray)
-- [How to Merge Two Sorted Arrays](https://www.baeldung.com/java-merge-sorted-arrays)
-- [Median of Stream of Integers using Heap](https://www.baeldung.com/java-stream-integers-median-using-heap)
+- [Prim’s Algorithm with a Java Implementation](https://www.baeldung.com/java-prim-algorithm)
+- [Maximum Subarray Problem in Java](https://www.baeldung.com/java-maximum-subarray)
+- [How to Merge Two Sorted Arrays in Java](https://www.baeldung.com/java-merge-sorted-arrays)
+- [Median of Stream of Integers using Heap in Java](https://www.baeldung.com/java-stream-integers-median-using-heap)
- More articles: [[<-- prev]](/algorithms-miscellaneous-4) [[next -->]](/algorithms-miscellaneous-6)
diff --git a/algorithms-miscellaneous-6/README.md b/algorithms-miscellaneous-6/README.md
index 5c2306d794..f21eddeed8 100644
--- a/algorithms-miscellaneous-6/README.md
+++ b/algorithms-miscellaneous-6/README.md
@@ -1,13 +1,13 @@
### Relevant Articles:
-- [Boruvka’s Algorithm for Minimum Spanning Trees](https://www.baeldung.com/java-boruvka-algorithm)
+- [Boruvka’s Algorithm for Minimum Spanning Trees in Java](https://www.baeldung.com/java-boruvka-algorithm)
- [Gradient Descent in Java](https://www.baeldung.com/java-gradient-descent)
-- [Kruskal’s Algorithm for Spanning Trees](https://www.baeldung.com/java-spanning-trees-kruskal)
+- [Kruskal’s Algorithm for Spanning Trees with a Java Implementation](https://www.baeldung.com/java-spanning-trees-kruskal)
- [Balanced Brackets Algorithm in Java](https://www.baeldung.com/java-balanced-brackets-algorithm)
- [Efficiently Merge Sorted Java Sequences](https://www.baeldung.com/java-merge-sorted-sequences)
- [Introduction to Greedy Algorithms with Java](https://www.baeldung.com/java-greedy-algorithms)
- [The Caesar Cipher in Java](https://www.baeldung.com/java-caesar-cipher)
- [Implementing a 2048 Solver in Java](https://www.baeldung.com/2048-java-solver)
-- [Finding Top K Elements in an Array](https://www.baeldung.com/java-array-top-elements)
+- [Finding Top K Elements in a Java Array](https://www.baeldung.com/java-array-top-elements)
- [Reversing a Linked List in Java](https://www.baeldung.com/java-reverse-linked-list)
- More articles: [[<-- prev]](/algorithms-miscellaneous-5)
diff --git a/algorithms-searching/README.md b/algorithms-searching/README.md
index a3ea023da3..7d10100832 100644
--- a/algorithms-searching/README.md
+++ b/algorithms-searching/README.md
@@ -8,8 +8,8 @@ This module contains articles about searching algorithms.
- [Depth First Search in Java](https://www.baeldung.com/java-depth-first-search)
- [Interpolation Search in Java](https://www.baeldung.com/java-interpolation-search)
- [Breadth-First Search Algorithm in Java](https://www.baeldung.com/java-breadth-first-search)
-- [String Search Algorithms for Large Texts](https://www.baeldung.com/java-full-text-search-algorithms)
-- [Monte Carlo Tree Search for Tic-Tac-Toe Game](https://www.baeldung.com/java-monte-carlo-tree-search)
+- [String Search Algorithms for Large Texts with Java](https://www.baeldung.com/java-full-text-search-algorithms)
+- [Monte Carlo Tree Search for Tic-Tac-Toe Game in Java](https://www.baeldung.com/java-monte-carlo-tree-search)
- [Range Search Algorithm in Java](https://www.baeldung.com/java-range-search)
-- [Fast Pattern Matching of Strings Using Suffix Tree](https://www.baeldung.com/java-pattern-matching-suffix-tree)
-- [Find the Kth Smallest Element in Two Sorted Arrays](https://www.baeldung.com/java-kth-smallest-element-in-sorted-arrays)
+- [Fast Pattern Matching of Strings Using Suffix Tree in Java](https://www.baeldung.com/java-pattern-matching-suffix-tree)
+- [Find the Kth Smallest Element in Two Sorted Arrays in Java](https://www.baeldung.com/java-kth-smallest-element-in-sorted-arrays)
diff --git a/algorithms-sorting-2/README.md b/algorithms-sorting-2/README.md
index 71c9b8f86c..b31cfceb42 100644
--- a/algorithms-sorting-2/README.md
+++ b/algorithms-sorting-2/README.md
@@ -2,6 +2,6 @@
- [Sorting a String Alphabetically in Java](https://www.baeldung.com/java-sort-string-alphabetically)
- [Sorting Strings by Contained Numbers in Java](https://www.baeldung.com/java-sort-strings-contained-numbers)
-- [How an In-Place Sorting Algorithm Works](https://www.baeldung.com/java-in-place-sorting)
-- [Partitioning and Sorting Arrays with Many Repeated Entries](https://www.baeldung.com/java-sorting-arrays-with-repeated-entries)
+- [Guide to In-Place Sorting Algorithm Works with a Java Implementation](https://www.baeldung.com/java-in-place-sorting)
+- [Partitioning and Sorting Arrays with Many Repeated Entries with Java Examples](https://www.baeldung.com/java-sorting-arrays-with-repeated-entries)
- More articles: [[<-- prev]](/algorithms-sorting)
diff --git a/apache-spark/README.md b/apache-spark/README.md
index c60b556d51..3a2d2f4e15 100644
--- a/apache-spark/README.md
+++ b/apache-spark/README.md
@@ -8,3 +8,4 @@ This module contains articles about Apache Spark
- [Building a Data Pipeline with Kafka, Spark Streaming and Cassandra](https://www.baeldung.com/kafka-spark-data-pipeline)
- [Machine Learning with Spark MLlib](https://www.baeldung.com/spark-mlib-machine-learning)
- [Introduction to Spark Graph Processing with GraphFrames](https://www.baeldung.com/spark-graph-graphframes)
+- [Apache Spark: Differences between Dataframes, Datasets and RDDs](https://www.baeldung.com/java-spark-dataframe-dataset-rdd)
diff --git a/atomikos/pom.xml b/atomikos/pom.xml
index d680a3ca77..8918de7b77 100644
--- a/atomikos/pom.xml
+++ b/atomikos/pom.xml
@@ -51,7 +51,7 @@
org.hibernate
- hibernate-entitymanager
+ hibernate-core
${hibernate.version}
provided
diff --git a/aws-lambda/lambda/pom.xml b/aws-lambda/lambda/pom.xml
index 2d903aabc5..1f446e04c0 100644
--- a/aws-lambda/lambda/pom.xml
+++ b/aws-lambda/lambda/pom.xml
@@ -89,7 +89,6 @@
1.1.1
- 2.5
1.3.0
1.2.0
2.8.2
diff --git a/aws-lambda/shipping-tracker/ShippingFunction/src/main/java/com/baeldung/lambda/shipping/App.java b/aws-lambda/shipping-tracker/ShippingFunction/src/main/java/com/baeldung/lambda/shipping/App.java
index 719725598c..95fd058667 100644
--- a/aws-lambda/shipping-tracker/ShippingFunction/src/main/java/com/baeldung/lambda/shipping/App.java
+++ b/aws-lambda/shipping-tracker/ShippingFunction/src/main/java/com/baeldung/lambda/shipping/App.java
@@ -6,10 +6,12 @@ import com.amazonaws.services.lambda.runtime.events.APIGatewayProxyRequestEvent;
import com.amazonaws.services.lambda.runtime.events.APIGatewayProxyResponseEvent;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
+import com.zaxxer.hikari.HikariDataSource;
import org.hibernate.SessionFactory;
import org.hibernate.boot.MetadataSources;
import org.hibernate.boot.registry.StandardServiceRegistry;
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
+import org.hibernate.engine.jdbc.connections.spi.ConnectionProvider;
import java.util.HashMap;
import java.util.Map;
@@ -22,11 +24,14 @@ import static org.hibernate.cfg.AvailableSettings.PASS;
*/
public class App implements RequestHandler {
private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
+ private SessionFactory sessionFactory = createSessionFactory();
public APIGatewayProxyResponseEvent handleRequest(APIGatewayProxyRequestEvent input, Context context) {
- try (SessionFactory sessionFactory = createSessionFactory()) {
+ try {
ShippingService service = new ShippingService(sessionFactory, new ShippingDao());
return routeRequest(input, service);
+ } finally {
+ flushConnectionPool();
}
}
@@ -105,4 +110,12 @@ private static final ObjectMapper OBJECT_MAPPER = new ObjectMapper();
.buildMetadata()
.buildSessionFactory();
}
+
+ private void flushConnectionPool() {
+ ConnectionProvider connectionProvider = sessionFactory.getSessionFactoryOptions()
+ .getServiceRegistry()
+ .getService(ConnectionProvider.class);
+ HikariDataSource hikariDataSource = connectionProvider.unwrap(HikariDataSource.class);
+ hikariDataSource.getHikariPoolMXBean().softEvictConnections();
+ }
}
diff --git a/blade/pom.xml b/blade/pom.xml
index 178d1afb52..458ec40051 100644
--- a/blade/pom.xml
+++ b/blade/pom.xml
@@ -154,7 +154,6 @@
2.0.14.RELEASE
4.2.1
- 3.8.1
1.18.4
4.5.6
4.5.6
diff --git a/core-java-modules/core-java-10/README.md b/core-java-modules/core-java-10/README.md
index 23f598b902..38b1db1c05 100644
--- a/core-java-modules/core-java-10/README.md
+++ b/core-java-modules/core-java-10/README.md
@@ -10,3 +10,4 @@ This module contains articles about Java 10 core features
- [Deep Dive Into the New Java JIT Compiler – Graal](https://www.baeldung.com/graal-java-jit-compiler)
- [Copying Sets in Java](https://www.baeldung.com/java-copy-sets)
- [Converting between a List and a Set in Java](https://www.baeldung.com/convert-list-to-set-and-set-to-list)
+- [Java IndexOutOfBoundsException “Source Does Not Fit in Dest”](https://www.baeldung.com/java-indexoutofboundsexception)
diff --git a/core-java-modules/core-java-11-2/README.md b/core-java-modules/core-java-11-2/README.md
index 834f310fce..c87936b07d 100644
--- a/core-java-modules/core-java-11-2/README.md
+++ b/core-java-modules/core-java-11-2/README.md
@@ -6,3 +6,4 @@ This module contains articles about Java 11 core features
- [Guide to Java 8 Optional](https://www.baeldung.com/java-optional)
- [Guide to Java Reflection](http://www.baeldung.com/java-reflection)
- [Guide to Java 8’s Collectors](https://www.baeldung.com/java-8-collectors)
+- [New Features in Java 11](https://www.baeldung.com/java-11-new-features)
diff --git a/core-java-modules/core-java-11-2/pom.xml b/core-java-modules/core-java-11-2/pom.xml
index e2b129ae00..b92963a5c8 100644
--- a/core-java-modules/core-java-11-2/pom.xml
+++ b/core-java-modules/core-java-11-2/pom.xml
@@ -28,6 +28,29 @@
${assertj.version}
test
+
+ org.mock-server
+ mockserver-junit-jupiter
+ ${mockserver.version}
+
+
+ org.junit.jupiter
+ junit-jupiter-engine
+ ${junit.jupiter.version}
+ test
+
+
+ org.junit.jupiter
+ junit-jupiter-params
+ ${junit.jupiter.version}
+ test
+
+
+ org.junit.jupiter
+ junit-jupiter-api
+ ${junit.jupiter.version}
+ test
+
@@ -48,7 +71,9 @@
11
11
29.0-jre
+ 5.7.0
3.17.2
+ 5.11.1
diff --git a/core-java-modules/core-java-11-2/src/main/java/com/baeldung/features/MainClass.java b/core-java-modules/core-java-11-2/src/main/java/com/baeldung/features/MainClass.java
new file mode 100644
index 0000000000..b00c56fcd7
--- /dev/null
+++ b/core-java-modules/core-java-11-2/src/main/java/com/baeldung/features/MainClass.java
@@ -0,0 +1,17 @@
+package com.baeldung.features;
+
+public class MainClass {
+
+ private static boolean mainPrivateMethod() {
+ return true;
+ }
+
+ public static class NestedClass {
+
+ boolean nestedPublicMethod() {
+ return mainPrivateMethod();
+ }
+
+ }
+
+}
diff --git a/core-java-modules/core-java-11-2/src/test/java/com/baeldung/features/HttpClientIntegrationTest.java b/core-java-modules/core-java-11-2/src/test/java/com/baeldung/features/HttpClientIntegrationTest.java
new file mode 100644
index 0000000000..1d49f5dbd1
--- /dev/null
+++ b/core-java-modules/core-java-11-2/src/test/java/com/baeldung/features/HttpClientIntegrationTest.java
@@ -0,0 +1,54 @@
+package com.baeldung.features;
+
+import org.junit.jupiter.api.AfterAll;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Test;
+import org.mockserver.integration.ClientAndServer;
+import org.mockserver.model.HttpStatusCode;
+import org.mockserver.socket.PortFactory;
+
+import java.io.IOException;
+import java.net.URI;
+import java.net.http.HttpClient;
+import java.net.http.HttpRequest;
+import java.net.http.HttpResponse;
+import java.time.Duration;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.mockserver.integration.ClientAndServer.startClientAndServer;
+
+class HttpClientIntegrationTest {
+
+ private static ClientAndServer mockServer;
+ private static int port;
+
+ @BeforeAll
+ static void startServer() {
+ port = PortFactory.findFreePort();
+ mockServer = startClientAndServer(port);
+ mockServer.when(new org.mockserver.model.HttpRequest().withMethod("GET"))
+ .respond(new org.mockserver.model.HttpResponse()
+ .withStatusCode(HttpStatusCode.OK_200.code())
+ .withBody("Hello from the server!"));
+ }
+
+ @AfterAll
+ static void stopServer() {
+ mockServer.stop();
+ }
+
+ @Test
+ void givenSampleHttpRequest_whenRequestIsSent_thenServerResponseIsReceived() throws IOException, InterruptedException {
+ HttpClient httpClient = HttpClient.newBuilder()
+ .version(HttpClient.Version.HTTP_2)
+ .connectTimeout(Duration.ofSeconds(20))
+ .build();
+ HttpRequest httpRequest = HttpRequest.newBuilder()
+ .GET()
+ .uri(URI.create("http://localhost:" + port))
+ .build();
+ HttpResponse httpResponse = httpClient.send(httpRequest, HttpResponse.BodyHandlers.ofString());
+ assertThat(httpResponse.body()).isEqualTo("Hello from the server!");
+ }
+
+}
diff --git a/core-java-modules/core-java-11-2/src/test/java/com/baeldung/features/JavaElevenFeaturesUnitTest.java b/core-java-modules/core-java-11-2/src/test/java/com/baeldung/features/JavaElevenFeaturesUnitTest.java
new file mode 100644
index 0000000000..61ce9c7c13
--- /dev/null
+++ b/core-java-modules/core-java-11-2/src/test/java/com/baeldung/features/JavaElevenFeaturesUnitTest.java
@@ -0,0 +1,61 @@
+package com.baeldung.features;
+
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.io.TempDir;
+
+import javax.annotation.Nonnull;
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.util.Arrays;
+import java.util.List;
+import java.util.function.Predicate;
+import java.util.stream.Collectors;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+class JavaElevenFeaturesUnitTest {
+
+ @Test
+ void givenMultilineString_whenExtractingNonBlankStrippedLines_thenLinesAreReturned() {
+ String multilineString = "Baeldung helps \n \n developers \n explore Java.";
+ List lines = multilineString.lines()
+ .filter(line -> !line.isBlank())
+ .map(String::strip)
+ .collect(Collectors.toList());
+ assertThat(lines).containsExactly("Baeldung helps", "developers", "explore Java.");
+ }
+
+ @Test
+ void givenTemporaryFile_whenReadingStringContent_thenContentIsReturned(@TempDir Path tempDir) throws IOException {
+ Path filePath = Files.writeString(Files.createTempFile(tempDir, "demo", ".txt"), "Sample text");
+ String fileContent = Files.readString(filePath);
+ assertThat(fileContent).isEqualTo("Sample text");
+ }
+
+ @Test
+ void givenSampleList_whenConvertingToArray_thenItemsRemainUnchanged() {
+ List sampleList = Arrays.asList("Java", "Kotlin");
+ String[] sampleArray = sampleList.toArray(String[]::new);
+ assertThat(sampleArray).containsExactly("Java", "Kotlin");
+ }
+
+ @Test
+ void givenSampleList_whenConvertingToUppercaseString_thenUppercaseIsReturned() {
+ List sampleList = Arrays.asList("Java", "Kotlin");
+ String resultString = sampleList.stream()
+ .map((@Nonnull var x) -> x.toUpperCase())
+ .collect(Collectors.joining(", "));
+ assertThat(resultString).isEqualTo("JAVA, KOTLIN");
+ }
+
+ @Test
+ void givenSampleList_whenExtractingNonBlankValues_thenOnlyNonBlanksAreReturned() {
+ List sampleList = Arrays.asList("Java", "\n \n", "Kotlin", " ");
+ List withoutBlanks = sampleList.stream()
+ .filter(Predicate.not(String::isBlank))
+ .collect(Collectors.toList());
+ assertThat(withoutBlanks).containsExactly("Java", "Kotlin");
+ }
+
+}
diff --git a/core-java-modules/core-java-11-2/src/test/java/com/baeldung/features/NestedClassesUnitTest.java b/core-java-modules/core-java-11-2/src/test/java/com/baeldung/features/NestedClassesUnitTest.java
new file mode 100644
index 0000000000..902ad9c6f8
--- /dev/null
+++ b/core-java-modules/core-java-11-2/src/test/java/com/baeldung/features/NestedClassesUnitTest.java
@@ -0,0 +1,37 @@
+package com.baeldung.features;
+
+import org.junit.jupiter.api.Test;
+
+import java.util.Arrays;
+import java.util.Set;
+import java.util.stream.Collectors;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+class NestedClassesUnitTest {
+
+ @Test
+ public void giveNestedClass_whenCallingMainClassPrivateMethod_thenNoExceptionIsThrown() {
+ MainClass.NestedClass nestedInstance = new MainClass.NestedClass();
+ assertThat(nestedInstance.nestedPublicMethod()).isTrue();
+ }
+
+ @Test
+ public void giveNestedClass_whenCheckingNestmate_thenNestedClassIsReturned() {
+ assertThat(MainClass.class.isNestmateOf(MainClass.NestedClass.class)).isTrue();
+ }
+
+ @Test
+ public void giveNestedClass_whenCheckingNestHost_thenMainClassIsReturned() {
+ assertThat(MainClass.NestedClass.class.getNestHost()).isEqualTo(MainClass.class);
+ }
+
+ @Test
+ public void giveNestedClass_whenCheckingNestMembers_thenNestMembersAreReturned() {
+ Set nestedMembers = Arrays.stream(MainClass.NestedClass.class.getNestMembers())
+ .map(Class::getName)
+ .collect(Collectors.toSet());
+ assertThat(nestedMembers).contains(MainClass.class.getName(), MainClass.NestedClass.class.getName());
+ }
+
+}
diff --git a/core-java-modules/core-java-11/src/test/java/com/baeldung/java11/httpclient/test/HttpClientUnitTest.java b/core-java-modules/core-java-11/src/test/java/com/baeldung/java11/httpclient/test/HttpClientUnitTest.java
index 42f56838c4..2a2540a517 100644
--- a/core-java-modules/core-java-11/src/test/java/com/baeldung/java11/httpclient/test/HttpClientUnitTest.java
+++ b/core-java-modules/core-java-11/src/test/java/com/baeldung/java11/httpclient/test/HttpClientUnitTest.java
@@ -64,7 +64,7 @@ public class HttpClientUnitTest {
.send(request, HttpResponse.BodyHandlers.ofString());
assertThat(response.statusCode(), equalTo(HttpURLConnection.HTTP_MOVED_PERM));
- assertThat(response.body(), containsString("https://stackoverflow.com/"));
+ assertTrue(response.headers().map().get("location").stream().anyMatch("https://stackoverflow.com/"::equals));
}
@Test
diff --git a/core-java-modules/core-java-11/src/test/java/com/baeldung/java11/httpclient/test/HttpRequestUnitTest.java b/core-java-modules/core-java-11/src/test/java/com/baeldung/java11/httpclient/test/HttpRequestUnitTest.java
index b87e6b3c6e..a3a5592cd9 100644
--- a/core-java-modules/core-java-11/src/test/java/com/baeldung/java11/httpclient/test/HttpRequestUnitTest.java
+++ b/core-java-modules/core-java-11/src/test/java/com/baeldung/java11/httpclient/test/HttpRequestUnitTest.java
@@ -18,6 +18,7 @@ import java.security.NoSuchAlgorithmException;
import java.time.Duration;
import org.junit.Test;
+import org.junit.jupiter.api.Disabled;
public class HttpRequestUnitTest {
@@ -48,7 +49,12 @@ public class HttpRequestUnitTest {
assertThat(response.version(), equalTo(HttpClient.Version.HTTP_2));
}
- @Test
+ /*
+ * This test will fail as soon as the given URL returns a HTTP 2 response.
+ * Therefore, let's leave it commented out.
+ * */
+ @Test
+ @Disabled
public void shouldFallbackToHttp1_1WhenWebsiteDoesNotUseHttp2() throws IOException, InterruptedException, URISyntaxException, NoSuchAlgorithmException {
HttpRequest request = HttpRequest.newBuilder()
.uri(new URI("https://postman-echo.com/get"))
diff --git a/core-java-modules/core-java-12/README.md b/core-java-modules/core-java-12/README.md
index 6c603e4dea..c28df26c6f 100644
--- a/core-java-modules/core-java-12/README.md
+++ b/core-java-modules/core-java-12/README.md
@@ -2,3 +2,4 @@
- [String API Updates in Java 12](https://www.baeldung.com/java12-string-api)
+- [Java 12 New Features](https://www.baeldung.com/java-12-new-features)
diff --git a/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/CompactNumbersUnitTest.java b/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/CompactNumbersUnitTest.java
new file mode 100644
index 0000000000..08a6d58d72
--- /dev/null
+++ b/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/CompactNumbersUnitTest.java
@@ -0,0 +1,21 @@
+package java.com.baeldung.newfeatures;
+
+import org.junit.Test;
+
+import java.text.NumberFormat;
+import java.util.Locale;
+
+import static org.junit.Assert.assertEquals;
+
+public class CompactNumbersUnitTest {
+
+ @Test
+ public void givenNumber_thenCompactValues() {
+ NumberFormat likesShort = NumberFormat.getCompactNumberInstance(new Locale("en", "US"), NumberFormat.Style.SHORT);
+ likesShort.setMaximumFractionDigits(2);
+ assertEquals("2.59K", likesShort.format(2592));
+ NumberFormat likesLong = NumberFormat.getCompactNumberInstance(new Locale("en", "US"), NumberFormat.Style.LONG);
+ likesLong.setMaximumFractionDigits(2);
+ assertEquals("2.59 thousand", likesShort.format(2592));
+ }
+}
diff --git a/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/FileMismatchUnitTest.java b/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/FileMismatchUnitTest.java
new file mode 100644
index 0000000000..7f081fe399
--- /dev/null
+++ b/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/FileMismatchUnitTest.java
@@ -0,0 +1,32 @@
+package java.com.baeldung.newfeatures;
+
+import org.junit.Test;
+
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Path;
+
+import static org.junit.Assert.assertEquals;
+
+public class FileMismatchUnitTest {
+
+ @Test
+ public void givenIdenticalFiles_thenShouldNotFindMismatch() throws IOException {
+ Path filePath1 = Files.createTempFile("file1", ".txt");
+ Path filePath2 = Files.createTempFile("file2", ".txt");
+ Files.writeString(filePath1, "Java 12 Article");
+ Files.writeString(filePath2, "Java 12 Article");
+ long mismatch = Files.mismatch(filePath1, filePath2);
+ assertEquals(-1, mismatch);
+ }
+
+ @Test
+ public void givenDifferentFiles_thenShouldFindMismatch() throws IOException {
+ Path filePath3 = Files.createTempFile("file3", ".txt");
+ Path filePath4 = Files.createTempFile("file4", ".txt");
+ Files.writeString(filePath3, "Java 12 Article");
+ Files.writeString(filePath4, "Java 12 Tutorial");
+ long mismatch = Files.mismatch(filePath3, filePath4);
+ assertEquals(8, mismatch);
+ }
+}
diff --git a/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/StringUnitTest.java b/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/StringUnitTest.java
new file mode 100644
index 0000000000..5ae51bd960
--- /dev/null
+++ b/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/StringUnitTest.java
@@ -0,0 +1,15 @@
+package java.com.baeldung.newfeatures;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertEquals;
+
+public class StringUnitTest {
+
+ @Test
+ public void givenString_thenRevertValue() {
+ String text = "Baeldung";
+ String transformed = text.transform(value -> new StringBuilder(value).reverse().toString());
+ assertEquals("gnudleaB", transformed);
+ }
+}
diff --git a/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/TeeingCollectorUnitTest.java b/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/TeeingCollectorUnitTest.java
new file mode 100644
index 0000000000..30a5cb40a7
--- /dev/null
+++ b/core-java-modules/core-java-12/src/test/java/com/baeldung/newfeatures/TeeingCollectorUnitTest.java
@@ -0,0 +1,18 @@
+package java.com.baeldung.newfeatures;
+
+import org.junit.Test;
+
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+import static org.junit.Assert.assertEquals;
+
+public class TeeingCollectorUnitTest {
+
+ @Test
+ public void givenSetOfNumbers_thenCalculateAverage() {
+ double mean = Stream.of(1, 2, 3, 4, 5)
+ .collect(Collectors.teeing(Collectors.summingDouble(i -> i), Collectors.counting(), (sum, count) -> sum / count));
+ assertEquals(3.0, mean);
+ }
+}
diff --git a/core-java-modules/core-java-14/README.md b/core-java-modules/core-java-14/README.md
index d382c4814a..004b3587c4 100644
--- a/core-java-modules/core-java-14/README.md
+++ b/core-java-modules/core-java-14/README.md
@@ -10,3 +10,4 @@ This module contains articles about Java 14.
- [Helpful NullPointerExceptions in Java 14](https://www.baeldung.com/java-14-nullpointerexception)
- [Foreign Memory Access API in Java 14](https://www.baeldung.com/java-foreign-memory-access)
- [Java 14 Record Keyword](https://www.baeldung.com/java-record-keyword)
+- [Java 14 – New Features](https://www.baeldung.com/java-14-new-features)
diff --git a/core-java-modules/core-java-14/pom.xml b/core-java-modules/core-java-14/pom.xml
index 96cb6b37e7..e977f39e9d 100644
--- a/core-java-modules/core-java-14/pom.xml
+++ b/core-java-modules/core-java-14/pom.xml
@@ -44,6 +44,8 @@
${maven.compiler.release}
--enable-preview
+ 14
+ 14
diff --git a/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/character/IsLetterOrAlphabetUnitTest.java b/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/character/IsLetterOrAlphabetUnitTest.java
new file mode 100644
index 0000000000..44c712a17f
--- /dev/null
+++ b/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/character/IsLetterOrAlphabetUnitTest.java
@@ -0,0 +1,30 @@
+package com.baeldung.java14.character;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.assertFalse;
+
+public class IsLetterOrAlphabetUnitTest {
+
+ @Test
+ public void givenACharacter_whenLetter_thenAssertIsLetterTrue() {
+ assertTrue(Character.isLetter(65));
+ }
+
+ @Test
+ public void givenACharacter_whenLetter_thenAssertIsAlphabeticTrue() {
+ assertTrue(Character.isAlphabetic(65));
+ }
+
+ @Test
+ public void givenACharacter_whenAlphabeticAndNotLetter_thenAssertIsLetterFalse() {
+ assertFalse(Character.isLetter(837));
+ }
+
+ @Test
+ public void givenACharacter_whenAlphabeticAndNotLetter_thenAssertIsAlphabeticTrue() {
+ assertTrue(Character.isAlphabetic(837));
+ }
+
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/newfeatues/MultilineUnitTest.java b/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/newfeatues/MultilineUnitTest.java
new file mode 100644
index 0000000000..4efd1ff362
--- /dev/null
+++ b/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/newfeatues/MultilineUnitTest.java
@@ -0,0 +1,26 @@
+package com.baeldung.java14.newfeatues;
+
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+
+public class MultilineUnitTest {
+
+ @SuppressWarnings("preview")
+ String multiline = """
+ A quick brown fox jumps over a lazy dog; \
+ the lazy dog howls loudly.""";
+
+ @SuppressWarnings("preview")
+ String anotherMultiline = """
+ A quick brown fox jumps over a lazy dog;
+ the lazy dog howls loudly.""";
+
+ @Test
+ public void givenMultilineString_whenSlashUsed_thenNoNewLine() {
+ assertFalse(multiline.contains("\n"));
+ assertTrue(anotherMultiline.contains("\n"));
+ }
+
+}
diff --git a/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/newfeatues/RecordUnitTest.java b/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/newfeatues/RecordUnitTest.java
new file mode 100644
index 0000000000..3d7a55d3e6
--- /dev/null
+++ b/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/newfeatues/RecordUnitTest.java
@@ -0,0 +1,38 @@
+package com.baeldung.java14.newfeatues;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+
+public class RecordUnitTest {
+
+ @SuppressWarnings("preview")
+ public record User(int id, String password) {
+ };
+
+ private User user1 = new User(0, "UserOne");
+
+ @Test
+ public void givenRecord_whenObjInitialized_thenValuesCanBeFetchedWithGetters() {
+
+ assertEquals(0, user1.id());
+ assertEquals("UserOne", user1.password());
+ }
+
+ @Test
+ public void whenRecord_thenEqualsImplemented() {
+
+ User user2 = user1;
+
+ assertEquals(user1, user2);
+ }
+
+ @Test
+ public void whenRecord_thenToStringImplemented() {
+
+ assertTrue(user1.toString()
+ .contains("UserOne"));
+ }
+
+}
diff --git a/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/newfeatues/SwitchExprUnitTest.java b/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/newfeatues/SwitchExprUnitTest.java
new file mode 100644
index 0000000000..896b3ec7de
--- /dev/null
+++ b/core-java-modules/core-java-14/src/test/java/com/baeldung/java14/newfeatues/SwitchExprUnitTest.java
@@ -0,0 +1,50 @@
+package com.baeldung.java14.newfeatues;
+
+import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+
+public class SwitchExprUnitTest {
+
+ @Test
+ public void givenDay_whenSunday_thenWeekend() {
+ assertTrue(isTodayHolidayInJava8("SUNDAY"));
+
+ assertTrue(isTodayHolidayInJava14("SUNDAY"));
+
+ assertThatExceptionOfType(IllegalArgumentException.class).isThrownBy(() -> isTodayHolidayInJava8("SOMEDAY"));
+
+ assertThatExceptionOfType(IllegalArgumentException.class).isThrownBy(() -> isTodayHolidayInJava14("SOMEDAY"));
+ }
+
+ private boolean isTodayHolidayInJava8(String day) {
+
+ boolean isTodayHoliday;
+ switch (day) {
+ case "MONDAY":
+ case "TUESDAY":
+ case "WEDNESDAY":
+ case "THURSDAY":
+ case "FRIDAY":
+ isTodayHoliday = false;
+ break;
+ case "SATURDAY":
+ case "SUNDAY":
+ isTodayHoliday = true;
+ break;
+ default:
+ throw new IllegalArgumentException("What's a " + day);
+ }
+ return isTodayHoliday;
+ }
+
+ private boolean isTodayHolidayInJava14(String day) {
+ return switch (day) {
+ case "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY" -> false;
+ case "SATURDAY", "SUNDAY" -> true;
+ default -> throw new IllegalArgumentException("What's a " + day);
+ };
+ }
+
+}
diff --git a/core-java-modules/core-java-15/.mvn/jvm.config b/core-java-modules/core-java-15/.mvn/jvm.config
new file mode 100644
index 0000000000..50f549be0a
--- /dev/null
+++ b/core-java-modules/core-java-15/.mvn/jvm.config
@@ -0,0 +1 @@
+--enable-preview
\ No newline at end of file
diff --git a/core-java-modules/core-java-15/README.md b/core-java-modules/core-java-15/README.md
new file mode 100644
index 0000000000..de503fbb31
--- /dev/null
+++ b/core-java-modules/core-java-15/README.md
@@ -0,0 +1,7 @@
+## Core Java 15
+
+This module contains articles about Java 15.
+
+### Relevant articles
+
+- [Sealed Classes and Interfaces in Java 15](https://www.baeldung.com/java-sealed-classes-interfaces)
diff --git a/core-java-modules/core-java-15/pom.xml b/core-java-modules/core-java-15/pom.xml
new file mode 100644
index 0000000000..3b0d324d10
--- /dev/null
+++ b/core-java-modules/core-java-15/pom.xml
@@ -0,0 +1,76 @@
+
+
+ 4.0.0
+ core-java-15
+ core-java-15
+ jar
+ http://maven.apache.org
+
+
+ com.baeldung
+ parent-modules
+ 1.0.0-SNAPSHOT
+ ../../pom.xml
+
+
+
+
+ org.apache.commons
+ commons-lang3
+ ${commons-lang3.version}
+
+
+ org.assertj
+ assertj-core
+ ${assertj.version}
+ test
+
+
+ org.junit.jupiter
+ junit-jupiter-engine
+ ${junit-jupiter.version}
+ test
+
+
+ org.junit.jupiter
+ junit-jupiter-api
+ ${junit-jupiter.version}
+ test
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ ${maven-compiler-plugin.version}
+
+ ${maven.compiler.release}
+ --enable-preview
+ 14
+ 14
+
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+ ${surefire.plugin.version}
+
+ --enable-preview
+
+
+
+
+
+
+ 15
+ 3.17.2
+ 3.8.1
+ 3.0.0-M3
+
+
+
\ No newline at end of file
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/alternative/Vehicles.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/alternative/Vehicles.java
new file mode 100644
index 0000000000..091c5841bf
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/alternative/Vehicles.java
@@ -0,0 +1,49 @@
+package com.baeldung.sealed.alternative;
+
+public class Vehicles {
+
+ abstract static class Vehicle {
+
+ private final String registrationNumber;
+
+ public Vehicle(String registrationNumber) {
+ this.registrationNumber = registrationNumber;
+ }
+
+ public String getRegistrationNumber() {
+ return registrationNumber;
+ }
+
+ }
+
+ public static final class Car extends Vehicle {
+
+ private final int numberOfSeats;
+
+ public Car(int numberOfSeats, String registrationNumber) {
+ super(registrationNumber);
+ this.numberOfSeats = numberOfSeats;
+ }
+
+ public int getNumberOfSeats() {
+ return numberOfSeats;
+ }
+
+ }
+
+ public static final class Truck extends Vehicle {
+
+ private final int loadCapacity;
+
+ public Truck(int loadCapacity, String registrationNumber) {
+ super(registrationNumber);
+ this.loadCapacity = loadCapacity;
+ }
+
+ public int getLoadCapacity() {
+ return loadCapacity;
+ }
+
+ }
+
+}
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Car.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Car.java
new file mode 100644
index 0000000000..7dce266da7
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Car.java
@@ -0,0 +1,21 @@
+package com.baeldung.sealed.classes;
+
+public non-sealed class Car extends Vehicle implements Service {
+
+ private final int numberOfSeats;
+
+ public Car(int numberOfSeats, String registrationNumber) {
+ super(registrationNumber);
+ this.numberOfSeats = numberOfSeats;
+ }
+
+ public int getNumberOfSeats() {
+ return numberOfSeats;
+ }
+
+ @Override
+ public int getMaxServiceIntervalInMonths() {
+ return 12;
+ }
+
+}
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Service.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Service.java
new file mode 100644
index 0000000000..9486b302f1
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Service.java
@@ -0,0 +1,11 @@
+package com.baeldung.sealed.classes;
+
+public sealed interface Service permits Car, Truck {
+
+ int getMaxServiceIntervalInMonths();
+
+ default int getMaxDistanceBetweenServicesInKilometers() {
+ return 100000;
+ }
+
+}
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Truck.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Truck.java
new file mode 100644
index 0000000000..8d5234342b
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Truck.java
@@ -0,0 +1,21 @@
+package com.baeldung.sealed.classes;
+
+public final class Truck extends Vehicle implements Service {
+
+ private final int loadCapacity;
+
+ public Truck(int loadCapacity, String registrationNumber) {
+ super(registrationNumber);
+ this.loadCapacity = loadCapacity;
+ }
+
+ public int getLoadCapacity() {
+ return loadCapacity;
+ }
+
+ @Override
+ public int getMaxServiceIntervalInMonths() {
+ return 18;
+ }
+
+}
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Vehicle.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Vehicle.java
new file mode 100644
index 0000000000..79eda0c790
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/classes/Vehicle.java
@@ -0,0 +1,15 @@
+package com.baeldung.sealed.classes;
+
+public abstract sealed class Vehicle permits Car, Truck {
+
+ protected final String registrationNumber;
+
+ public Vehicle(String registrationNumber) {
+ this.registrationNumber = registrationNumber;
+ }
+
+ public String getRegistrationNumber() {
+ return registrationNumber;
+ }
+
+}
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/records/Car.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/records/Car.java
new file mode 100644
index 0000000000..74b6ed1405
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/records/Car.java
@@ -0,0 +1,14 @@
+package com.baeldung.sealed.records;
+
+public record Car(int numberOfSeats, String registrationNumber) implements Vehicle {
+
+ @Override
+ public String getRegistrationNumber() {
+ return registrationNumber;
+ }
+
+ public int getNumberOfSeats() {
+ return numberOfSeats;
+ }
+
+}
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/records/Truck.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/records/Truck.java
new file mode 100644
index 0000000000..1b887ae014
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/records/Truck.java
@@ -0,0 +1,14 @@
+package com.baeldung.sealed.records;
+
+public record Truck(int loadCapacity, String registrationNumber) implements Vehicle {
+
+ @Override
+ public String getRegistrationNumber() {
+ return registrationNumber;
+ }
+
+ public int getLoadCapacity() {
+ return loadCapacity;
+ }
+
+}
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/records/Vehicle.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/records/Vehicle.java
new file mode 100644
index 0000000000..c51f8e97c6
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/sealed/records/Vehicle.java
@@ -0,0 +1,7 @@
+package com.baeldung.sealed.records;
+
+public sealed interface Vehicle permits Car, Truck {
+
+ String getRegistrationNumber();
+
+}
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/records/Person.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/records/Person.java
new file mode 100644
index 0000000000..74cf5edf9c
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/records/Person.java
@@ -0,0 +1,15 @@
+package com.baeldung.whatsnew.records;
+
+/**
+ * Java record with a header indicating 2 fields.
+ */
+public record Person(String name, int age) {
+ /**
+ * Public constructor that does some basic validation.
+ */
+ public Person {
+ if (age < 0) {
+ throw new IllegalArgumentException("Age cannot be negative");
+ }
+ }
+}
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/sealedclasses/Employee.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/sealedclasses/Employee.java
new file mode 100644
index 0000000000..ec85c371b7
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/sealedclasses/Employee.java
@@ -0,0 +1,9 @@
+package com.baeldung.whatsnew.sealedclasses;
+
+import java.util.Date;
+
+public non-sealed class Employee extends Person {
+ public Date getHiredDate() {
+ return new Date();
+ }
+}
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/sealedclasses/Manager.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/sealedclasses/Manager.java
new file mode 100644
index 0000000000..79c50b057e
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/sealedclasses/Manager.java
@@ -0,0 +1,4 @@
+package com.baeldung.whatsnew.sealedclasses;
+
+public final class Manager extends Person {
+}
diff --git a/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/sealedclasses/Person.java b/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/sealedclasses/Person.java
new file mode 100644
index 0000000000..2a52bc1a73
--- /dev/null
+++ b/core-java-modules/core-java-15/src/main/java/com/baeldung/whatsnew/sealedclasses/Person.java
@@ -0,0 +1,21 @@
+package com.baeldung.whatsnew.sealedclasses;
+
+import java.util.Date;
+
+public sealed class Person permits Employee, Manager {
+ /**
+ * Demonstration of pattern matching for instanceof
+ *
+ * @param person A Person object
+ * @return
+ */
+ public static void patternMatchingDemo(Person person) {
+ if(person instanceof Employee employee) {
+ Date hiredDate = employee.getHiredDate();
+ }
+
+ if(person instanceof Employee employee && employee.getHiredDate() != null) {
+ Date hiredDate = employee.getHiredDate();
+ }
+ }
+}
diff --git a/core-java-modules/core-java-15/src/test/java/com/baeldung/sealed/classes/VehicleUnitTest.java b/core-java-modules/core-java-15/src/test/java/com/baeldung/sealed/classes/VehicleUnitTest.java
new file mode 100644
index 0000000000..b614981a43
--- /dev/null
+++ b/core-java-modules/core-java-15/src/test/java/com/baeldung/sealed/classes/VehicleUnitTest.java
@@ -0,0 +1,76 @@
+package com.baeldung.sealed.classes;
+
+import org.assertj.core.api.Assertions;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Test;
+
+import java.lang.constant.ClassDesc;
+
+public class VehicleUnitTest {
+
+ private static Vehicle car;
+ private static Vehicle truck;
+
+ @BeforeAll
+ public static void createInstances() {
+ car = new Car(5, "VZ500DA");
+ truck = new Truck(19000, "VZ600TA");
+ }
+
+ @Test
+ public void givenCar_whenUsingReflectionAPI_thenSuperClassIsSealed() {
+ Assertions.assertThat(car.getClass().isSealed()).isEqualTo(false);
+ Assertions.assertThat(car.getClass().getSuperclass().isSealed()).isEqualTo(true);
+ Assertions.assertThat(car.getClass().getSuperclass().permittedSubclasses())
+ .contains(ClassDesc.of(car.getClass().getCanonicalName()));
+ }
+
+ @Test
+ public void givenTruck_whenUsingReflectionAPI_thenSuperClassIsSealed() {
+ Assertions.assertThat(truck.getClass().isSealed()).isEqualTo(false);
+ Assertions.assertThat(truck.getClass().getSuperclass().isSealed()).isEqualTo(true);
+ Assertions.assertThat(truck.getClass().getSuperclass().permittedSubclasses())
+ .contains(ClassDesc.of(truck.getClass().getCanonicalName()));
+ }
+
+ @Test
+ public void givenCar_whenGettingPropertyTraditionalWay_thenNumberOfSeatsPropertyIsReturned() {
+ Assertions.assertThat(getPropertyTraditionalWay(car)).isEqualTo(5);
+ }
+
+ @Test
+ public void givenCar_whenGettingPropertyViaPatternMatching_thenNumberOfSeatsPropertyIsReturned() {
+ Assertions.assertThat(getPropertyViaPatternMatching(car)).isEqualTo(5);
+ }
+
+ @Test
+ public void givenTruck_whenGettingPropertyTraditionalWay_thenLoadCapacityIsReturned() {
+ Assertions.assertThat(getPropertyTraditionalWay(truck)).isEqualTo(19000);
+ }
+
+ @Test
+ public void givenTruck_whenGettingPropertyViaPatternMatching_thenLoadCapacityIsReturned() {
+ Assertions.assertThat(getPropertyViaPatternMatching(truck)).isEqualTo(19000);
+ }
+
+ private int getPropertyTraditionalWay(Vehicle vehicle) {
+ if (vehicle instanceof Car) {
+ return ((Car) vehicle).getNumberOfSeats();
+ } else if (vehicle instanceof Truck) {
+ return ((Truck) vehicle).getLoadCapacity();
+ } else {
+ throw new RuntimeException("Unknown instance of Vehicle");
+ }
+ }
+
+ private int getPropertyViaPatternMatching(Vehicle vehicle) {
+ if (vehicle instanceof Car car) {
+ return car.getNumberOfSeats();
+ } else if (vehicle instanceof Truck truck) {
+ return truck.getLoadCapacity();
+ } else {
+ throw new RuntimeException("Unknown instance of Vehicle");
+ }
+ }
+
+}
diff --git a/core-java-modules/core-java-15/src/test/java/com/baeldung/sealed/records/VehicleUnitTest.java b/core-java-modules/core-java-15/src/test/java/com/baeldung/sealed/records/VehicleUnitTest.java
new file mode 100644
index 0000000000..ac8a8c953c
--- /dev/null
+++ b/core-java-modules/core-java-15/src/test/java/com/baeldung/sealed/records/VehicleUnitTest.java
@@ -0,0 +1,76 @@
+package com.baeldung.sealed.records;
+
+import org.assertj.core.api.Assertions;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Test;
+
+import java.lang.constant.ClassDesc;
+
+public class VehicleUnitTest {
+
+ private static Vehicle car;
+ private static Vehicle truck;
+
+ @BeforeAll
+ public static void createInstances() {
+ car = new Car(4, "VZ500DA");
+ truck = new Truck(16000, "VZ600TA");
+ }
+
+ @Test
+ public void givenCar_whenUsingReflectionAPI_thenInterfaceIsSealed() {
+ Assertions.assertThat(car.getClass().isSealed()).isEqualTo(false);
+ Assertions.assertThat(car.getClass().getInterfaces()[0].isSealed()).isEqualTo(true);
+ Assertions.assertThat(car.getClass().getInterfaces()[0].permittedSubclasses())
+ .contains(ClassDesc.of(car.getClass().getCanonicalName()));
+ }
+
+ @Test
+ public void givenTruck_whenUsingReflectionAPI_thenInterfaceIsSealed() {
+ Assertions.assertThat(truck.getClass().isSealed()).isEqualTo(false);
+ Assertions.assertThat(truck.getClass().getInterfaces()[0].isSealed()).isEqualTo(true);
+ Assertions.assertThat(truck.getClass().getInterfaces()[0].permittedSubclasses())
+ .contains(ClassDesc.of(truck.getClass().getCanonicalName()));
+ }
+
+ @Test
+ public void givenCar_whenGettingPropertyTraditionalWay_thenNumberOfSeatsPropertyIsReturned() {
+ Assertions.assertThat(getPropertyTraditionalWay(car)).isEqualTo(4);
+ }
+
+ @Test
+ public void givenCar_whenGettingPropertyViaPatternMatching_thenNumberOfSeatsPropertyIsReturned() {
+ Assertions.assertThat(getPropertyViaPatternMatching(car)).isEqualTo(4);
+ }
+
+ @Test
+ public void givenTruck_whenGettingPropertyTraditionalWay_thenLoadCapacityIsReturned() {
+ Assertions.assertThat(getPropertyTraditionalWay(truck)).isEqualTo(16000);
+ }
+
+ @Test
+ public void givenTruck_whenGettingPropertyViaPatternMatching_thenLoadCapacityIsReturned() {
+ Assertions.assertThat(getPropertyViaPatternMatching(truck)).isEqualTo(16000);
+ }
+
+ private int getPropertyTraditionalWay(Vehicle vehicle) {
+ if (vehicle instanceof Car) {
+ return ((Car) vehicle).getNumberOfSeats();
+ } else if (vehicle instanceof Truck) {
+ return ((Truck) vehicle).getLoadCapacity();
+ } else {
+ throw new RuntimeException("Unknown instance of Vehicle");
+ }
+ }
+
+ private int getPropertyViaPatternMatching(Vehicle vehicle) {
+ if (vehicle instanceof Car car) {
+ return car.getNumberOfSeats();
+ } else if (vehicle instanceof Truck truck) {
+ return truck.getLoadCapacity();
+ } else {
+ throw new RuntimeException("Unknown instance of Vehicle");
+ }
+ }
+
+}
diff --git a/core-java-modules/core-java-9-jigsaw/src/test/java/com/baeldung/java9/modules/ModuleAPIUnitTest.java b/core-java-modules/core-java-9-jigsaw/src/test/java/com/baeldung/java9/modules/ModuleAPIUnitTest.java
index aa2fb34753..b909636b56 100644
--- a/core-java-modules/core-java-9-jigsaw/src/test/java/com/baeldung/java9/modules/ModuleAPIUnitTest.java
+++ b/core-java-modules/core-java-9-jigsaw/src/test/java/com/baeldung/java9/modules/ModuleAPIUnitTest.java
@@ -2,8 +2,7 @@ package com.baeldung.java9.modules;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.CoreMatchers.nullValue;
-import static org.hamcrest.Matchers.contains;
-import static org.hamcrest.Matchers.containsInAnyOrder;
+import static org.hamcrest.Matchers.*;
import static org.hamcrest.collection.IsEmptyCollection.empty;
import static org.junit.Assert.*;
@@ -74,7 +73,6 @@ public class ModuleAPIUnitTest {
ModuleLayer javaBaseModuleLayer = javaBaseModule.getLayer();
assertTrue(javaBaseModuleLayer.configuration().findModule(JAVA_BASE_MODULE_NAME).isPresent());
- assertThat(javaBaseModuleLayer.configuration().modules().size(), is(78));
assertTrue(javaBaseModuleLayer.parents().get(0).configuration().parents().isEmpty());
}
@@ -108,8 +106,7 @@ public class ModuleAPIUnitTest {
.collect(Collectors.toSet());
assertThat(javaBaseRequires, empty());
- assertThat(javaSqlRequires.size(), is(3));
- assertThat(javaSqlRequiresNames, containsInAnyOrder("java.base", "java.xml", "java.logging"));
+ assertThat(javaSqlRequiresNames, hasItems("java.base", "java.xml", "java.logging"));
}
@Test
@@ -127,16 +124,13 @@ public class ModuleAPIUnitTest {
@Test
public void givenModules_whenAccessingModuleDescriptorExports_thenExportsAreReturned() {
- Set javaBaseExports = javaBaseModule.getDescriptor().exports();
Set javaSqlExports = javaSqlModule.getDescriptor().exports();
Set javaSqlExportsSource = javaSqlExports.stream()
.map(Exports::source)
.collect(Collectors.toSet());
- assertThat(javaBaseExports.size(), is(108));
- assertThat(javaSqlExports.size(), is(3));
- assertThat(javaSqlExportsSource, containsInAnyOrder("java.sql", "javax.transaction.xa", "javax.sql"));
+ assertThat(javaSqlExportsSource, hasItems("java.sql", "javax.sql"));
}
@Test
@@ -144,7 +138,6 @@ public class ModuleAPIUnitTest {
Set javaBaseUses = javaBaseModule.getDescriptor().uses();
Set javaSqlUses = javaSqlModule.getDescriptor().uses();
- assertThat(javaBaseUses.size(), is(34));
assertThat(javaSqlUses, contains("java.sql.Driver"));
}
diff --git a/core-java-modules/core-java-9/pom.xml b/core-java-modules/core-java-9/pom.xml
index d7894934b1..001faf88cb 100644
--- a/core-java-modules/core-java-9/pom.xml
+++ b/core-java-modules/core-java-9/pom.xml
@@ -47,12 +47,12 @@
org.apache.commons
commons-lang3
- 3.11
+ ${commons-lang3.version}
commons-io
commons-io
- 2.7
+ ${commons-io.version}
diff --git a/core-java-modules/core-java-arrays-guides/README.md b/core-java-modules/core-java-arrays-guides/README.md
index 934833b31b..7338ff9523 100644
--- a/core-java-modules/core-java-arrays-guides/README.md
+++ b/core-java-modules/core-java-arrays-guides/README.md
@@ -7,3 +7,4 @@ This module contains complete guides about arrays in Java
- [Guide to the java.util.Arrays Class](https://www.baeldung.com/java-util-arrays)
- [What is \[Ljava.lang.Object;?](https://www.baeldung.com/java-tostring-array)
- [Guide to ArrayStoreException](https://www.baeldung.com/java-arraystoreexception)
+- [Creating a Generic Array in Java](https://www.baeldung.com/java-generic-array)
diff --git a/core-java-modules/core-java-arrays-guides/src/main/java/com/baeldung/genericarrays/MyStack.java b/core-java-modules/core-java-arrays-guides/src/main/java/com/baeldung/genericarrays/MyStack.java
new file mode 100644
index 0000000000..02659f13bc
--- /dev/null
+++ b/core-java-modules/core-java-arrays-guides/src/main/java/com/baeldung/genericarrays/MyStack.java
@@ -0,0 +1,30 @@
+package com.baeldung.genericarrays;
+
+import java.lang.reflect.Array;
+
+public class MyStack {
+ private E[] elements;
+ private int size = 0;
+
+ public MyStack(Class clazz, int capacity) {
+ elements = (E[]) Array.newInstance(clazz, capacity);
+ }
+
+ public void push(E item) {
+ if (size == elements.length) {
+ throw new RuntimeException();
+ }
+ elements[size++] = item;
+ }
+
+ public E pop() {
+ if (size == 0) {
+ throw new RuntimeException();
+ }
+ return elements[--size];
+ }
+
+ public E[] getAllElements() {
+ return elements;
+ }
+}
diff --git a/core-java-modules/core-java-arrays-guides/src/test/java/com/baeldung/genericarrays/ListToArrayUnitTest.java b/core-java-modules/core-java-arrays-guides/src/test/java/com/baeldung/genericarrays/ListToArrayUnitTest.java
new file mode 100644
index 0000000000..5fd0385181
--- /dev/null
+++ b/core-java-modules/core-java-arrays-guides/src/test/java/com/baeldung/genericarrays/ListToArrayUnitTest.java
@@ -0,0 +1,24 @@
+package com.baeldung.genericarrays;
+
+import org.junit.Test;
+
+import java.util.ArrayList;
+import java.util.LinkedList;
+import java.util.List;
+
+import static org.junit.Assert.assertEquals;
+
+public class ListToArrayUnitTest {
+
+ @Test
+ public void givenListOfItems_whenToArray_thenReturnArrayOfItems() {
+ List items = new LinkedList<>();
+ items.add("first item");
+ items.add("second item");
+
+ String[] itemsAsArray = items.toArray(new String[0]);
+
+ assertEquals("first item", itemsAsArray[0]);
+ assertEquals("second item", itemsAsArray[1]);
+ }
+}
diff --git a/core-java-modules/core-java-arrays-guides/src/test/java/com/baeldung/genericarrays/MyStackUnitTest.java b/core-java-modules/core-java-arrays-guides/src/test/java/com/baeldung/genericarrays/MyStackUnitTest.java
new file mode 100644
index 0000000000..e36c5169a5
--- /dev/null
+++ b/core-java-modules/core-java-arrays-guides/src/test/java/com/baeldung/genericarrays/MyStackUnitTest.java
@@ -0,0 +1,44 @@
+package com.baeldung.genericarrays;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertEquals;
+
+public class MyStackUnitTest {
+
+ @Test
+ public void givenStackWithTwoItems_whenPop_thenReturnLastAdded() {
+ MyStack myStack = new MyStack<>(String.class, 2);
+ myStack.push("hello");
+ myStack.push("example");
+
+ assertEquals("example", myStack.pop());
+ }
+
+ @Test (expected = RuntimeException.class)
+ public void givenStackWithFixedCapacity_whenExceedCapacity_thenThrowException() {
+ MyStack myStack = new MyStack<>(Integer.class, 2);
+ myStack.push(100);
+ myStack.push(200);
+ myStack.push(300);
+ }
+
+ @Test(expected = RuntimeException.class)
+ public void givenStack_whenPopOnEmptyStack_thenThrowException() {
+ MyStack myStack = new MyStack<>(Integer.class, 1);
+ myStack.push(100);
+ myStack.pop();
+ myStack.pop();
+ }
+
+ @Test
+ public void givenStackWithItems_whenGetAllElements_thenSizeShouldEqualTotal() {
+ MyStack myStack = new MyStack<>(String.class, 2);
+ myStack.push("hello");
+ myStack.push("example");
+
+ String[] items = myStack.getAllElements();
+
+ assertEquals(2, items.length);
+ }
+}
diff --git a/core-java-modules/core-java-arrays-operations-advanced/pom.xml b/core-java-modules/core-java-arrays-operations-advanced/pom.xml
index d73fdcee28..c7ea09c616 100644
--- a/core-java-modules/core-java-arrays-operations-advanced/pom.xml
+++ b/core-java-modules/core-java-arrays-operations-advanced/pom.xml
@@ -29,8 +29,6 @@
- 3.9
-
3.10.0
\ No newline at end of file
diff --git a/core-java-modules/core-java-arrays-operations-basic/pom.xml b/core-java-modules/core-java-arrays-operations-basic/pom.xml
index 64856d9b39..dcee6547a0 100644
--- a/core-java-modules/core-java-arrays-operations-basic/pom.xml
+++ b/core-java-modules/core-java-arrays-operations-basic/pom.xml
@@ -68,11 +68,7 @@
3.2.0
-
- 3.9
-
1.19
-
3.10.0
\ No newline at end of file
diff --git a/core-java-modules/core-java-arrays-sorting/pom.xml b/core-java-modules/core-java-arrays-sorting/pom.xml
index 9b307870a1..9b900c3de6 100644
--- a/core-java-modules/core-java-arrays-sorting/pom.xml
+++ b/core-java-modules/core-java-arrays-sorting/pom.xml
@@ -76,12 +76,8 @@
3.2.0
-
- 3.9
28.2-jre
-
1.19
-
3.10.0
\ No newline at end of file
diff --git a/core-java-modules/core-java-char/README.md b/core-java-modules/core-java-char/README.md
new file mode 100644
index 0000000000..fd79da15ab
--- /dev/null
+++ b/core-java-modules/core-java-char/README.md
@@ -0,0 +1,6 @@
+## Core Java Character
+
+This module contains articles about Java Character Class
+
+### Relevant Articles:
+- [Character#isAlphabetic vs Character#isLetter](https://www.baeldung.com/java-character-isletter-isalphabetic)
diff --git a/core-java-modules/core-java-char/pom.xml b/core-java-modules/core-java-char/pom.xml
new file mode 100644
index 0000000000..3691079482
--- /dev/null
+++ b/core-java-modules/core-java-char/pom.xml
@@ -0,0 +1,42 @@
+
+
+ 4.0.0
+ core-java-char
+ 0.1.0-SNAPSHOT
+ core-java-char
+ jar
+
+ com.baeldung.core-java-modules
+ core-java-modules
+ 0.0.1-SNAPSHOT
+ ../
+
+
+
+
+ org.assertj
+ assertj-core
+ ${assertj.version}
+ test
+
+
+ org.openjdk.jmh
+ jmh-core
+ ${openjdk.jmh.version}
+
+
+ org.openjdk.jmh
+ jmh-generator-annprocess
+ ${openjdk.jmh.version}
+
+
+
+
+ 1.19
+ 3.11.1
+
+
+
diff --git a/core-java-modules/core-java-char/src/test/java/com/baeldung/character/CharacterGeneralCategoryTypeUnitTest.java b/core-java-modules/core-java-char/src/test/java/com/baeldung/character/CharacterGeneralCategoryTypeUnitTest.java
new file mode 100644
index 0000000000..9fab13df45
--- /dev/null
+++ b/core-java-modules/core-java-char/src/test/java/com/baeldung/character/CharacterGeneralCategoryTypeUnitTest.java
@@ -0,0 +1,38 @@
+package com.baeldung.character;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.assertEquals;
+
+public class CharacterGeneralCategoryTypeUnitTest {
+ @Test
+ public void givenACharacter_whenUpperCaseLetter_thenAssertTrue() {
+ assertEquals(Character.UPPERCASE_LETTER, Character.getType('U'));
+ }
+
+ @Test
+ public void givenACharacter_whenLowerCaseLetter_thenAssertTrue() {
+ assertEquals(Character.LOWERCASE_LETTER, Character.getType('u'));
+ }
+
+ @Test
+ public void givenACharacter_whenTitleCaseLetter_thenAssertTrue() {
+ assertEquals(Character.TITLECASE_LETTER, Character.getType('\u01f2'));
+ }
+
+ @Test
+ public void givenACharacter_whenModifierLetter_thenAssertTrue() {
+ assertEquals(Character.MODIFIER_LETTER, Character.getType('\u02b0'));
+ }
+
+ @Test
+ public void givenACharacter_whenOtherLetter_thenAssertTrue() {
+ assertEquals(Character.OTHER_LETTER, Character.getType('\u05d0'));
+ }
+
+ @Test
+ public void givenACharacter_whenLetterNumber_thenAssertTrue() {
+ assertEquals(Character.LETTER_NUMBER, Character.getType('\u2164'));
+ }
+}
diff --git a/core-java-modules/core-java-char/src/test/java/com/baeldung/character/IsLetterOrAlphabetUnitTest.java b/core-java-modules/core-java-char/src/test/java/com/baeldung/character/IsLetterOrAlphabetUnitTest.java
new file mode 100644
index 0000000000..3de3a16e6a
--- /dev/null
+++ b/core-java-modules/core-java-char/src/test/java/com/baeldung/character/IsLetterOrAlphabetUnitTest.java
@@ -0,0 +1,49 @@
+package com.baeldung.character;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.assertFalse;
+
+public class IsLetterOrAlphabetUnitTest {
+
+ @Test
+ public void givenACharacter_whenUpperCaseLetter_thenAssertIsAlphabeticTrue() {
+ assertTrue(Character.isAlphabetic('A'));
+ }
+
+ @Test
+ public void givenACharacter_whenTitleCaseLetter_thenAssertIsAlphabeticTrue() {
+ assertTrue(Character.isAlphabetic('\u01f2'));
+ }
+
+ @Test
+ public void givenACharacter_whenLowerCaseLetter_thenAssertIsLetterTrue() {
+ assertTrue(Character.isAlphabetic('a'));
+ }
+
+ @Test
+ public void givenACharacter_whenModifierLetter_thenAssertIsLetterTrue() {
+ assertTrue(Character.isAlphabetic('\u02b0'));
+ }
+
+ @Test
+ public void givenACharacter_whenLetter_thenAssertIsLetterTrue() {
+ assertTrue(Character.isLetter('a'));
+ }
+
+ @Test
+ public void givenACharacter_whenLetter_thenAssertIsAlphabeticTrue() {
+ assertTrue(Character.isAlphabetic('a'));
+ }
+
+ @Test
+ public void givenACharacter_whenAlphabeticAndNotLetter_thenAssertIsLetterFalse() {
+ assertFalse(Character.isLetter('\u2164'));
+ }
+
+ @Test
+ public void givenACharacter_whenAlphabeticAndNotLetter_thenAssertIsAlphabeticTrue() {
+ assertTrue(Character.isAlphabetic('\u2164'));
+ }
+}
diff --git a/core-java-modules/core-java-collections-3/README.md b/core-java-modules/core-java-collections-3/README.md
index e21e3642f9..6bc9139856 100644
--- a/core-java-modules/core-java-collections-3/README.md
+++ b/core-java-modules/core-java-collections-3/README.md
@@ -14,3 +14,4 @@
- [Convert an Array of Primitives to a List](https://www.baeldung.com/java-primitive-array-to-list)
- [A Guide to BitSet in Java](https://www.baeldung.com/java-bitset)
- [Get the First Key and Value From a HashMap](https://www.baeldung.com/java-hashmap-get-first-entry)
+- [Performance of removeAll() in a HashSet](https://www.baeldung.com/java-hashset-removeall-performance)
diff --git a/core-java-modules/core-java-collections-3/pom.xml b/core-java-modules/core-java-collections-3/pom.xml
index a9a05f5092..602fcf60f4 100644
--- a/core-java-modules/core-java-collections-3/pom.xml
+++ b/core-java-modules/core-java-collections-3/pom.xml
@@ -35,7 +35,7 @@
org.apache.commons
commons-lang3
- 3.10
+ ${commons-lang3.version}
diff --git a/core-java-modules/core-java-collections-4/README.md b/core-java-modules/core-java-collections-4/README.md
new file mode 100644
index 0000000000..6e117c98b1
--- /dev/null
+++ b/core-java-modules/core-java-collections-4/README.md
@@ -0,0 +1,7 @@
+=========
+
+## Core Java Collections Cookbooks and Examples
+
+### Relevant Articles:
+
+- [ArrayList vs. LinkedList vs. HashMap in Java](https://www.baeldung.com/java-arraylist-vs-linkedlist-vs-hashmap)
diff --git a/core-java-modules/core-java-collections-4/pom.xml b/core-java-modules/core-java-collections-4/pom.xml
new file mode 100644
index 0000000000..0e3cabf40e
--- /dev/null
+++ b/core-java-modules/core-java-collections-4/pom.xml
@@ -0,0 +1,31 @@
+
+
+ 4.0.0
+ core-java-collections-4
+ 0.1.0-SNAPSHOT
+ core-java-collections-4
+ jar
+
+ com.baeldung.core-java-modules
+ core-java-modules
+ 0.0.1-SNAPSHOT
+ ../pom.xml
+
+
+
+
+ org.assertj
+ assertj-core
+ ${assertj.version}
+ test
+
+
+
+
+ 3.18.0
+
+
+
diff --git a/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/ArrayListUnitTest.java b/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/ArrayListUnitTest.java
new file mode 100644
index 0000000000..bc6a07d274
--- /dev/null
+++ b/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/ArrayListUnitTest.java
@@ -0,0 +1,30 @@
+package com.baeldung.collections.comparation;
+
+import org.junit.jupiter.api.Test;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class ArrayListUnitTest {
+
+ @Test
+ void givenArrayList_whenItemAddedToSpecificIndex_thenItCanBeRetrieved() {
+ List list = new ArrayList<>();
+ list.add("Daniel");
+ list.add(0, "Marko");
+ assertThat(list).hasSize(2);
+ assertThat(list.get(0)).isEqualTo("Marko");
+ }
+
+ @Test
+ void givenArrayList_whenItemRemovedViaIndex_thenListSizeIsReduced() {
+ List list = new ArrayList<>(Arrays.asList("Daniel", "Marko"));
+ list.remove(1);
+ assertThat(list).hasSize(1);
+ assertThat(list).doesNotContain("Marko");
+ }
+
+}
diff --git a/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/HashMapUnitTest.java b/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/HashMapUnitTest.java
new file mode 100644
index 0000000000..3b595472e0
--- /dev/null
+++ b/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/HashMapUnitTest.java
@@ -0,0 +1,31 @@
+package com.baeldung.collections.comparation;
+
+import org.junit.jupiter.api.Test;
+
+import java.util.Arrays;
+import java.util.HashMap;
+import java.util.LinkedList;
+import java.util.Map;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class HashMapUnitTest {
+
+ @Test
+ void givenHashMap_whenItemAddedByKey_thenItCanBeRetrieved() {
+ Map map = new HashMap<>();
+ map.put("123456", "Daniel");
+ map.put("654321", "Marko");
+ assertThat(map.get("654321")).isEqualTo("Marko");
+ }
+
+ @Test
+ void givenHashMap_whenItemRemovedByKey_thenMapSizeIsReduced() {
+ Map map = new HashMap<>();
+ map.put("123456", "Daniel");
+ map.put("654321", "Marko");
+ map.remove("654321");
+ assertThat(map).hasSize(1);
+ }
+
+}
diff --git a/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/LinkedListUnitTest.java b/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/LinkedListUnitTest.java
new file mode 100644
index 0000000000..aa6b7fa923
--- /dev/null
+++ b/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/LinkedListUnitTest.java
@@ -0,0 +1,41 @@
+package com.baeldung.collections.comparation;
+
+import org.junit.jupiter.api.Test;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.LinkedList;
+import java.util.List;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class LinkedListUnitTest {
+
+ @Test
+ void givenLinkedList_whenItemIsAppended_thenItCanBeRetrieved() {
+ LinkedList list = new LinkedList<>();
+ list.addLast("Daniel");
+ list.addFirst("Marko");
+ assertThat(list).hasSize(2);
+ assertThat(list.getLast()).isEqualTo("Daniel");
+ }
+
+ @Test
+ void givenLinkedList_whenItemIsRemoved_thenListSizeIsReduced() {
+ LinkedList list = new LinkedList<>(Arrays.asList("Daniel", "Marko", "David"));
+ list.removeFirst();
+ list.removeLast();
+ assertThat(list).hasSize(1);
+ assertThat(list).containsExactly("Marko");
+ }
+
+ @Test
+ void givenLinkedList_whenItemInserted_thenItCanBeRetrievedAndDeleted() {
+ LinkedList list = new LinkedList<>();
+ list.push("Daniel");
+ list.push("Marko");
+ assertThat(list.poll()).isEqualTo("Marko");
+ assertThat(list).hasSize(1);
+ }
+
+}
diff --git a/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/ListVsMapUnitTest.java b/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/ListVsMapUnitTest.java
new file mode 100644
index 0000000000..dd6bf760fd
--- /dev/null
+++ b/core-java-modules/core-java-collections-4/src/test/java/com/baeldung/collections/comparation/ListVsMapUnitTest.java
@@ -0,0 +1,32 @@
+package com.baeldung.collections.comparation;
+
+import static org.assertj.core.api.Assertions.*;
+import org.junit.jupiter.api.Test;
+
+import java.util.*;
+
+class ListVsMapUnitTest {
+
+ @Test
+ void givenList_whenIteratingTroughValues_thenEachValueIsPresent() {
+ List list = new ArrayList<>();
+ list.add("Daniel");
+ list.add("Marko");
+ for (String name : list) {
+ assertThat(name).isIn(list);
+ }
+ assertThat(list).containsExactly("Daniel", "Marko");
+ }
+
+ @Test
+ void givenMap_whenIteratingTroughValues_thenEachValueIsPresent() {
+ Map map = new HashMap<>();
+ map.put(1, "Daniel");
+ map.put(2, "Marko");
+ for (String name : map.values()) {
+ assertThat(name).isIn(map.values());
+ }
+ assertThat(map.values()).containsExactlyInAnyOrder("Daniel", "Marko");
+ }
+
+}
diff --git a/core-java-modules/core-java-collections-array-list/README.md b/core-java-modules/core-java-collections-array-list/README.md
index 3637f835cf..d24f7492bb 100644
--- a/core-java-modules/core-java-collections-array-list/README.md
+++ b/core-java-modules/core-java-collections-array-list/README.md
@@ -8,4 +8,4 @@ This module contains articles about the Java ArrayList collection
- [ClassCastException: Arrays$ArrayList cannot be cast to ArrayList](https://www.baeldung.com/java-classcastexception-arrays-arraylist)
- [Multi Dimensional ArrayList in Java](https://www.baeldung.com/java-multi-dimensional-arraylist)
- [Removing an Element From an ArrayList](https://www.baeldung.com/java-arraylist-remove-element)
-
+- [The Capacity of an ArrayList vs the Size of an Array in Java](https://www.baeldung.com/java-list-capacity-array-size)
diff --git a/core-java-modules/core-java-collections-array-list/src/test/java/com/baeldung/listcapacityvsarraysize/ArrayCreatorUnitTest.java b/core-java-modules/core-java-collections-array-list/src/test/java/com/baeldung/listcapacityvsarraysize/ArrayCreatorUnitTest.java
new file mode 100644
index 0000000000..74c8b93872
--- /dev/null
+++ b/core-java-modules/core-java-collections-array-list/src/test/java/com/baeldung/listcapacityvsarraysize/ArrayCreatorUnitTest.java
@@ -0,0 +1,20 @@
+package com.baeldung.listcapacityvsarraysize;
+
+import org.junit.jupiter.api.Test;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertThrows;
+
+class ArrayCreatorUnitTest {
+
+ @Test
+ void whenSizeOfAnArrayIsNonZero_thenReturnNewArrayOfGivenSize() {
+ Integer[] array = new Integer[10];
+ assertEquals(10, array.length);
+ }
+
+ @Test
+ void whenSizeOfAnArrayIsLessThanZero_thenThrowException() {
+ assertThrows(NegativeArraySizeException.class, () -> { Integer[] array = new Integer[-1]; });
+ }
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-collections-array-list/src/test/java/com/baeldung/listcapacityvsarraysize/ArrayListCreatorUnitTest.java b/core-java-modules/core-java-collections-array-list/src/test/java/com/baeldung/listcapacityvsarraysize/ArrayListCreatorUnitTest.java
new file mode 100644
index 0000000000..62efe43af4
--- /dev/null
+++ b/core-java-modules/core-java-collections-array-list/src/test/java/com/baeldung/listcapacityvsarraysize/ArrayListCreatorUnitTest.java
@@ -0,0 +1,27 @@
+package com.baeldung.listcapacityvsarraysize;
+
+import org.junit.jupiter.api.Test;
+
+import java.util.ArrayList;
+
+import static org.junit.jupiter.api.Assertions.*;
+
+class ArrayListCreatorUnitTest {
+
+ @Test
+ void givenValidCapacityOfList_whenCreateListInvoked_thenCreateNewArrayListWithGivenCapacity() {
+ ArrayList list = new ArrayList<>(100);
+
+ assertNotNull(list);
+ }
+
+ @Test
+ void givenInvalidCapacityOfList_whenCreateListInvoked_thenThrowException() {
+ assertThrows(IllegalArgumentException.class, () -> new ArrayList<>(-1));
+ }
+
+ @Test
+ void givenValidCapacityOfList_whenCreateListInvoked_thenCreateNewArrayListWithSizeZero() {
+ assertEquals(0, new ArrayList(100).size());
+ }
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-collections-list/pom.xml b/core-java-modules/core-java-collections-list/pom.xml
index 509f58ea61..76ca66fe70 100644
--- a/core-java-modules/core-java-collections-list/pom.xml
+++ b/core-java-modules/core-java-collections-list/pom.xml
@@ -36,7 +36,6 @@
4.1
- 3.8.1
3.11.1
diff --git a/core-java-modules/core-java-collections-maps-3/README.md b/core-java-modules/core-java-collections-maps-3/README.md
index 7386f7e9b7..918c81fe4b 100644
--- a/core-java-modules/core-java-collections-maps-3/README.md
+++ b/core-java-modules/core-java-collections-maps-3/README.md
@@ -6,4 +6,5 @@ This module contains articles about Map data structures in Java.
- [Java TreeMap vs HashMap](https://www.baeldung.com/java-treemap-vs-hashmap)
- [Comparing Two HashMaps in Java](https://www.baeldung.com/java-compare-hashmaps)
- [The Map.computeIfAbsent() Method](https://www.baeldung.com/java-map-computeifabsent)
+- [Collections.synchronizedMap vs. ConcurrentHashMap](https://www.baeldung.com/java-synchronizedmap-vs-concurrenthashmap)
- More articles: [[<-- prev]](/core-java-modules/core-java-collections-maps-2)
diff --git a/core-java-modules/core-java-collections-maps-3/pom.xml b/core-java-modules/core-java-collections-maps-3/pom.xml
index f547968b22..577ad58255 100644
--- a/core-java-modules/core-java-collections-maps-3/pom.xml
+++ b/core-java-modules/core-java-collections-maps-3/pom.xml
@@ -15,7 +15,11 @@
-
+
+ org.openjdk.jmh
+ jmh-core
+ ${jmh-core.version}
+
diff --git a/core-java-modules/core-java-collections-maps-3/src/main/java/com/baeldung/map/concurrenthashmap/MapPerformanceComparison.java b/core-java-modules/core-java-collections-maps-3/src/main/java/com/baeldung/map/concurrenthashmap/MapPerformanceComparison.java
new file mode 100644
index 0000000000..c788dbc27d
--- /dev/null
+++ b/core-java-modules/core-java-collections-maps-3/src/main/java/com/baeldung/map/concurrenthashmap/MapPerformanceComparison.java
@@ -0,0 +1,96 @@
+package com.baeldung.map.concurrenthashmap;
+
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.concurrent.ConcurrentHashMap;
+import java.util.concurrent.TimeUnit;
+
+import org.openjdk.jmh.annotations.Benchmark;
+import org.openjdk.jmh.annotations.BenchmarkMode;
+import org.openjdk.jmh.annotations.Fork;
+import org.openjdk.jmh.annotations.Mode;
+import org.openjdk.jmh.annotations.OutputTimeUnit;
+import org.openjdk.jmh.annotations.Scope;
+import org.openjdk.jmh.annotations.Setup;
+import org.openjdk.jmh.annotations.State;
+import org.openjdk.jmh.annotations.Threads;
+import org.openjdk.jmh.annotations.Warmup;
+
+@Fork(5)
+@Threads(10)
+@Warmup(iterations = 5)
+@State(Scope.Benchmark)
+@BenchmarkMode(Mode.AverageTime)
+@OutputTimeUnit(TimeUnit.NANOSECONDS)
+public class MapPerformanceComparison {
+
+ private int TEST_NO_ITEMS;
+
+ public static void main(String[] args) throws Exception {
+ org.openjdk.jmh.Main.main(args);
+ }
+
+ @Setup
+ public void setup() {
+ TEST_NO_ITEMS = 1000;
+ }
+
+ @Benchmark
+ public void randomReadAndWriteSynchronizedMap() {
+ Map map = Collections.synchronizedMap(new HashMap());
+ performReadAndWriteTest(map);
+ }
+
+ @Benchmark
+ public void randomReadAndWriteConcurrentHashMap() {
+ Map map = new ConcurrentHashMap<>();
+ performReadAndWriteTest(map);
+ }
+
+ private void performReadAndWriteTest(final Map map) {
+ for (int i = 0; i < TEST_NO_ITEMS; i++) {
+ Integer randNumber = (int) Math.ceil(Math.random() * TEST_NO_ITEMS);
+ map.get(String.valueOf(randNumber));
+ map.put(String.valueOf(randNumber), randNumber);
+ }
+ }
+
+ @Benchmark
+ public void randomWriteSynchronizedMap() {
+ Map map = Collections.synchronizedMap(new HashMap());
+ performWriteTest(map);
+ }
+
+ @Benchmark
+ public void randomWriteConcurrentHashMap() {
+ Map map = new ConcurrentHashMap<>();
+ performWriteTest(map);
+ }
+
+ private void performWriteTest(final Map map) {
+ for (int i = 0; i < TEST_NO_ITEMS; i++) {
+ Integer randNumber = (int) Math.ceil(Math.random() * TEST_NO_ITEMS);
+ map.put(String.valueOf(randNumber), randNumber);
+ }
+ }
+
+ @Benchmark
+ public void randomReadSynchronizedMap() {
+ Map map = Collections.synchronizedMap(new HashMap());
+ performReadTest(map);
+ }
+
+ @Benchmark
+ public void randomReadConcurrentHashMap() {
+ Map map = new ConcurrentHashMap<>();
+ performReadTest(map);
+ }
+
+ private void performReadTest(final Map map) {
+ for (int i = 0; i < TEST_NO_ITEMS; i++) {
+ Integer randNumber = (int) Math.ceil(Math.random() * TEST_NO_ITEMS);
+ map.get(String.valueOf(randNumber));
+ }
+ }
+}
diff --git a/core-java-modules/core-java-collections-maps-3/src/test/java/com/baeldung/map/concurrenthashmap/ConcurrentModificationErrorUnitTest.java b/core-java-modules/core-java-collections-maps-3/src/test/java/com/baeldung/map/concurrenthashmap/ConcurrentModificationErrorUnitTest.java
new file mode 100644
index 0000000000..4264e613f2
--- /dev/null
+++ b/core-java-modules/core-java-collections-maps-3/src/test/java/com/baeldung/map/concurrenthashmap/ConcurrentModificationErrorUnitTest.java
@@ -0,0 +1,70 @@
+package com.baeldung.map.concurrenthashmap;
+
+import java.util.Collections;
+import java.util.ConcurrentModificationException;
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.LinkedHashMap;
+import java.util.Map;
+import java.util.Map.Entry;
+import java.util.TreeMap;
+import java.util.concurrent.ConcurrentHashMap;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+public class ConcurrentModificationErrorUnitTest {
+
+ @Test(expected = ConcurrentModificationException.class)
+ public void whenRemoveAndAddOnHashMap_thenConcurrentModificationError() {
+ Map map = new HashMap<>();
+ map.put(1, "baeldung");
+ map.put(2, "HashMap");
+ Map synchronizedMap = Collections.synchronizedMap(map);
+ Iterator> iterator = synchronizedMap.entrySet().iterator();
+ while (iterator.hasNext()) {
+ synchronizedMap.put(3, "Modification");
+ iterator.next();
+ }
+ }
+
+ @Test(expected = ConcurrentModificationException.class)
+ public void whenRemoveAndAddOnTreeMap_thenConcurrentModificationError() {
+ Map map = new TreeMap<>();
+ map.put(1, "baeldung");
+ map.put(2, "HashMap");
+ Map synchronizedMap = Collections.synchronizedMap(map);
+ Iterator> iterator = synchronizedMap.entrySet().iterator();
+ while (iterator.hasNext()) {
+ synchronizedMap.put(3, "Modification");
+ iterator.next();
+ }
+ }
+
+ @Test(expected = ConcurrentModificationException.class)
+ public void whenRemoveAndAddOnLinkedHashMap_thenConcurrentModificationError() {
+ Map map = new LinkedHashMap<>();
+ map.put(1, "baeldung");
+ map.put(2, "HashMap");
+ Map synchronizedMap = Collections.synchronizedMap(map);
+ Iterator> iterator = synchronizedMap.entrySet().iterator();
+ while (iterator.hasNext()) {
+ synchronizedMap.put(3, "Modification");
+ iterator.next();
+ }
+ }
+
+ @Test
+ public void whenRemoveAndAddOnConcurrentHashMap_thenNoError() {
+ Map map = new ConcurrentHashMap<>();
+ map.put(1, "baeldung");
+ map.put(2, "HashMap");
+ Iterator> iterator = map.entrySet().iterator();
+ while (iterator.hasNext()) {
+ map.put(3, "Modification");
+ iterator.next();
+ }
+
+ Assert.assertEquals(3, map.size());
+ }
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-collections-maps-3/src/test/java/com/baeldung/map/concurrenthashmap/NullAllowInMapUnitTest.java b/core-java-modules/core-java-collections-maps-3/src/test/java/com/baeldung/map/concurrenthashmap/NullAllowInMapUnitTest.java
new file mode 100644
index 0000000000..594e8ec3b4
--- /dev/null
+++ b/core-java-modules/core-java-collections-maps-3/src/test/java/com/baeldung/map/concurrenthashmap/NullAllowInMapUnitTest.java
@@ -0,0 +1,73 @@
+package com.baeldung.map.concurrenthashmap;
+
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.LinkedHashMap;
+import java.util.Map;
+import java.util.TreeMap;
+import java.util.concurrent.ConcurrentHashMap;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+public class NullAllowInMapUnitTest {
+
+ @Test
+ public void givenHashMapBackedSynchronizedMap_whenNullAsKey_thenNoError() {
+ Map map = Collections
+ .synchronizedMap(new HashMap());
+ map.put(null, 1);
+ Assert.assertTrue(map.get(null).equals(1));
+ }
+
+
+ @Test(expected = NullPointerException.class)
+ public void givenTreeMapBackedSynchronizedMap_whenNullAsKey_thenException() {
+ Map map = Collections.synchronizedMap(new TreeMap());
+ map.put(null, 1);
+ Assert.assertTrue(map.get(null).equals(1));
+ }
+
+ @Test
+ public void givenLinkedHashMapBackedSynchronizedMap_whenNullAsKey_thenNoError() {
+ Map map = Collections
+ .synchronizedMap(new LinkedHashMap());
+ map.put(null, 1);
+ Assert.assertTrue(map.get(null).equals(1));
+ }
+
+ @Test(expected = NullPointerException.class)
+ public void givenConcurrentHasMap_whenNullAsKey_thenException() {
+ Map map = new ConcurrentHashMap<>();
+ map.put(null, 1);
+ }
+
+ @Test
+ public void givenHashMapBackedSynchronizedMap_whenNullAsValue_thenNoError() {
+ Map map = Collections.synchronizedMap(new HashMap());
+ map.put("1", null);
+ Assert.assertNull(map.get("1"));
+ }
+
+ @Test
+ public void givenTreeMapBackedSynchronizedMap_whenNullAsValue_thenNoError() {
+ Map map = Collections.synchronizedMap(new TreeMap());
+ map.put("1", null);
+ Assert.assertNull(map.get("1"));
+ }
+
+ @Test
+ public void givenLinkedHashMapBackedSynchronizedMap_whenNullAsValue_thenNoError() {
+ Map map = Collections
+ .synchronizedMap(new LinkedHashMap());
+ map.put("1", null);
+ Assert.assertNull(map.get("1"));
+ }
+
+ @Test(expected = NullPointerException.class)
+ public void givenConcurrentHasMap_whenNullAsValue_thenException() {
+ Map map = new ConcurrentHashMap<>();
+ map.put("1", null);
+ }
+
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterJCStressUnitTest.java b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterJCStressManualTest.java
similarity index 74%
rename from core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterJCStressUnitTest.java
rename to core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterJCStressManualTest.java
index 6c76505347..0e6b41d1e9 100644
--- a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterJCStressUnitTest.java
+++ b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterJCStressManualTest.java
@@ -10,11 +10,17 @@ import org.openjdk.jcstress.annotations.Outcome;
import org.openjdk.jcstress.annotations.State;
import org.openjdk.jcstress.infra.results.I_Result;
+/**
+ * This is defined as a manual test because it tries to simulate the race conditions
+ * in a concurrent program that is poorly designed and hence may fail nondeterministically.
+ * This will help the CI jobs to ignore these tests and a developer to run them manually.
+ *
+ */
@JCStressTest
@Outcome(id = "1", expect = ACCEPTABLE_INTERESTING, desc = "One update lost.")
@Outcome(id = "2", expect = ACCEPTABLE, desc = "Both updates.")
@State
-public class MyCounterJCStressUnitTest {
+public class MyCounterJCStressManualTest {
private MyCounter counter;
diff --git a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterMultithreadedTCUnitTest.java b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterMultithreadedTCManualTest.java
similarity index 59%
rename from core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterMultithreadedTCUnitTest.java
rename to core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterMultithreadedTCManualTest.java
index 8a0bedf6c2..985e316635 100644
--- a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterMultithreadedTCUnitTest.java
+++ b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterMultithreadedTCManualTest.java
@@ -1,12 +1,17 @@
package com.baeldung.concurrent;
-import org.junit.Ignore;
import org.junit.Test;
import edu.umd.cs.mtc.MultithreadedTestCase;
import edu.umd.cs.mtc.TestFramework;
-public class MyCounterMultithreadedTCUnitTest extends MultithreadedTestCase {
+/**
+ * This is defined as a manual test because it tries to simulate the race conditions
+ * in a concurrent program that is poorly designed and hence may fail nondeterministically.
+ * This will help the CI jobs to ignore these tests and a developer to run them manually.
+ *
+ */
+public class MyCounterMultithreadedTCManualTest extends MultithreadedTestCase {
private MyCounter counter;
@@ -29,9 +34,8 @@ public class MyCounterMultithreadedTCUnitTest extends MultithreadedTestCase {
assertEquals(2, counter.getCount());
}
- @Ignore
@Test
public void testCounter() throws Throwable {
- TestFramework.runManyTimes(new MyCounterMultithreadedTCUnitTest(), 1000);
+ TestFramework.runManyTimes(new MyCounterMultithreadedTCManualTest(), 1000);
}
}
diff --git a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterSimpleManualTest.java b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterSimpleManualTest.java
new file mode 100644
index 0000000000..cba30da34b
--- /dev/null
+++ b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterSimpleManualTest.java
@@ -0,0 +1,63 @@
+package com.baeldung.concurrent;
+
+import static org.junit.Assert.assertEquals;
+
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.ExecutorService;
+import java.util.concurrent.Executors;
+
+import org.junit.Test;
+
+/**
+ * This is defined as a manual test because it tries to simulate the race conditions
+ * in a concurrent program that is poorly designed and hence may fail nondeterministically.
+ * This will help the CI jobs to ignore these tests and a developer to run them manually.
+ *
+ */
+public class MyCounterSimpleManualTest {
+
+ @Test
+ public void testCounter() {
+ MyCounter counter = new MyCounter();
+ for (int i = 0; i < 500; i++)
+ counter.increment();
+ assertEquals(500, counter.getCount());
+ }
+
+ @Test
+ public void testCounterWithConcurrency() throws InterruptedException {
+ int numberOfThreads = 100;
+ ExecutorService service = Executors.newFixedThreadPool(10);
+ CountDownLatch latch = new CountDownLatch(numberOfThreads);
+ MyCounter counter = new MyCounter();
+ for (int i = 0; i < numberOfThreads; i++) {
+ service.execute(() -> {
+ counter.increment();
+ latch.countDown();
+ });
+ }
+ latch.await();
+ assertEquals(numberOfThreads, counter.getCount());
+ }
+
+ @Test
+ public void testSummationWithConcurrencyAndWait() throws InterruptedException {
+ int numberOfThreads = 2;
+ ExecutorService service = Executors.newFixedThreadPool(10);
+ CountDownLatch latch = new CountDownLatch(numberOfThreads);
+ MyCounter counter = new MyCounter();
+ for (int i = 0; i < numberOfThreads; i++) {
+ service.submit(() -> {
+ try {
+ counter.incrementWithWait();
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ latch.countDown();
+ });
+ }
+ latch.await();
+ assertEquals(numberOfThreads, counter.getCount());
+ }
+
+}
diff --git a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterSimpleUnitTest.java b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterSimpleUnitTest.java
deleted file mode 100644
index 9a405e7e24..0000000000
--- a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterSimpleUnitTest.java
+++ /dev/null
@@ -1,60 +0,0 @@
-package com.baeldung.concurrent;
-
-import static org.junit.Assert.assertEquals;
-
-import java.util.concurrent.CountDownLatch;
-import java.util.concurrent.ExecutorService;
-import java.util.concurrent.Executors;
-
-import org.junit.Ignore;
-import org.junit.Test;
-
-public class MyCounterSimpleUnitTest {
-
- @Test
- public void testCounter() {
- MyCounter counter = new MyCounter();
- for (int i = 0; i < 500; i++)
- counter.increment();
- assertEquals(500, counter.getCount());
- }
-
- @Ignore
- @Test
- public void testCounterWithConcurrency() throws InterruptedException {
- int numberOfThreads = 100;
- ExecutorService service = Executors.newFixedThreadPool(10);
- CountDownLatch latch = new CountDownLatch(numberOfThreads);
- MyCounter counter = new MyCounter();
- for (int i = 0; i < numberOfThreads; i++) {
- service.execute(() -> {
- counter.increment();
- latch.countDown();
- });
- }
- latch.await();
- assertEquals(numberOfThreads, counter.getCount());
- }
-
- @Ignore
- @Test
- public void testSummationWithConcurrencyAndWait() throws InterruptedException {
- int numberOfThreads = 2;
- ExecutorService service = Executors.newFixedThreadPool(10);
- CountDownLatch latch = new CountDownLatch(numberOfThreads);
- MyCounter counter = new MyCounter();
- for (int i = 0; i < numberOfThreads; i++) {
- service.submit(() -> {
- try {
- counter.incrementWithWait();
- } catch (InterruptedException e) {
- e.printStackTrace();
- }
- latch.countDown();
- });
- }
- latch.await();
- assertEquals(numberOfThreads, counter.getCount());
- }
-
-}
diff --git a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterTempusFugitManualTest.java b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterTempusFugitManualTest.java
new file mode 100644
index 0000000000..a4ac643f7e
--- /dev/null
+++ b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterTempusFugitManualTest.java
@@ -0,0 +1,41 @@
+package com.baeldung.concurrent;
+
+import static org.junit.Assert.assertEquals;
+
+import org.junit.AfterClass;
+import org.junit.Rule;
+import org.junit.Test;
+
+import com.google.code.tempusfugit.concurrency.ConcurrentRule;
+import com.google.code.tempusfugit.concurrency.RepeatingRule;
+import com.google.code.tempusfugit.concurrency.annotations.Concurrent;
+import com.google.code.tempusfugit.concurrency.annotations.Repeating;
+
+/**
+ * This is defined as a manual test because it tries to simulate the race conditions
+ * in a concurrent program that is poorly designed and hence may fail nondeterministically.
+ * This will help the CI jobs to ignore these tests and a developer to run them manually.
+ *
+ */
+public class MyCounterTempusFugitManualTest {
+
+ @Rule
+ public ConcurrentRule concurrently = new ConcurrentRule();
+ @Rule
+ public RepeatingRule rule = new RepeatingRule();
+
+ private static MyCounter counter = new MyCounter();
+
+ @Test
+ @Concurrent(count = 2)
+ @Repeating(repetition = 10)
+ public void runsMultipleTimes() {
+ counter.increment();
+ }
+
+ @AfterClass
+ public static void annotatedTestRunsMultipleTimes() throws InterruptedException {
+ assertEquals(counter.getCount(), 20);
+ }
+
+}
diff --git a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterTempusFugitUnitTest.java b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterTempusFugitUnitTest.java
deleted file mode 100644
index 36a2031e78..0000000000
--- a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterTempusFugitUnitTest.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.baeldung.concurrent;
-
-import static org.junit.Assert.assertEquals;
-
-import org.junit.AfterClass;
-import org.junit.Ignore;
-import org.junit.Rule;
-import org.junit.Test;
-
-import com.google.code.tempusfugit.concurrency.ConcurrentRule;
-import com.google.code.tempusfugit.concurrency.RepeatingRule;
-import com.google.code.tempusfugit.concurrency.annotations.Concurrent;
-import com.google.code.tempusfugit.concurrency.annotations.Repeating;
-
-public class MyCounterTempusFugitUnitTest {
-
- @Rule
- public ConcurrentRule concurrently = new ConcurrentRule();
- @Rule
- public RepeatingRule rule = new RepeatingRule();
-
- private static MyCounter counter = new MyCounter();
-
- @Ignore
- @Test
- @Concurrent(count = 2)
- @Repeating(repetition = 10)
- public void runsMultipleTimes() {
- counter.increment();
- }
-
- @AfterClass
- public static void annotatedTestRunsMultipleTimes() throws InterruptedException {
- assertEquals(counter.getCount(), 20);
- }
-
-}
diff --git a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterThreadWeaverManualTest.java b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterThreadWeaverManualTest.java
new file mode 100644
index 0000000000..2acfc4ee71
--- /dev/null
+++ b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterThreadWeaverManualTest.java
@@ -0,0 +1,48 @@
+package com.baeldung.concurrent;
+
+import static org.junit.Assert.assertEquals;
+
+import org.junit.Test;
+
+import com.google.testing.threadtester.AnnotatedTestRunner;
+import com.google.testing.threadtester.ThreadedAfter;
+import com.google.testing.threadtester.ThreadedBefore;
+import com.google.testing.threadtester.ThreadedMain;
+import com.google.testing.threadtester.ThreadedSecondary;
+
+/**
+ * This is defined as a manual test because it tries to simulate the race conditions
+ * in a concurrent program that is poorly designed and hence may fail nondeterministically.
+ * This will help the CI jobs to ignore these tests and a developer to run them manually.
+ *
+ */
+public class MyCounterThreadWeaverManualTest {
+
+ private MyCounter counter;
+
+ @ThreadedBefore
+ public void before() {
+ counter = new MyCounter();
+ }
+
+ @ThreadedMain
+ public void mainThread() {
+ counter.increment();
+ }
+
+ @ThreadedSecondary
+ public void secondThread() {
+ counter.increment();
+ }
+
+ @ThreadedAfter
+ public void after() {
+ assertEquals(2, counter.getCount());
+ }
+
+ @Test
+ public void testCounter() {
+ new AnnotatedTestRunner().runTests(this.getClass(), MyCounter.class);
+ }
+
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterThreadWeaverUnitTest.java b/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterThreadWeaverUnitTest.java
deleted file mode 100644
index e65a963584..0000000000
--- a/core-java-modules/core-java-concurrency-2/src/test/java/com/baeldung/concurrent/MyCounterThreadWeaverUnitTest.java
+++ /dev/null
@@ -1,44 +0,0 @@
-package com.baeldung.concurrent;
-
-import static org.junit.Assert.assertEquals;
-
-import org.junit.Ignore;
-import org.junit.Test;
-
-import com.google.testing.threadtester.AnnotatedTestRunner;
-import com.google.testing.threadtester.ThreadedAfter;
-import com.google.testing.threadtester.ThreadedBefore;
-import com.google.testing.threadtester.ThreadedMain;
-import com.google.testing.threadtester.ThreadedSecondary;
-
-public class MyCounterThreadWeaverUnitTest {
-
- private MyCounter counter;
-
- @ThreadedBefore
- public void before() {
- counter = new MyCounter();
- }
-
- @ThreadedMain
- public void mainThread() {
- counter.increment();
- }
-
- @ThreadedSecondary
- public void secondThread() {
- counter.increment();
- }
-
- @ThreadedAfter
- public void after() {
- assertEquals(2, counter.getCount());
- }
-
- @Ignore
- @Test
- public void testCounter() {
- new AnnotatedTestRunner().runTests(this.getClass(), MyCounter.class);
- }
-
-}
\ No newline at end of file
diff --git a/core-java-modules/core-java-concurrency-advanced-3/README.md b/core-java-modules/core-java-concurrency-advanced-3/README.md
index 7d98e462d7..9495d5f479 100644
--- a/core-java-modules/core-java-concurrency-advanced-3/README.md
+++ b/core-java-modules/core-java-concurrency-advanced-3/README.md
@@ -13,7 +13,7 @@ This module contains articles about advanced topics about multithreading with co
- [Java Thread Deadlock and Livelock](https://www.baeldung.com/java-deadlock-livelock)
- [Guide to AtomicStampedReference in Java](https://www.baeldung.com/java-atomicstampedreference)
- [The ABA Problem in Concurrency](https://www.baeldung.com/cs/aba-concurrency)
-- [Introduction to Lock-Free Data Structures](https://www.baeldung.com/lock-free-programming)
+- [Introduction to Lock-Free Data Structures with Java Examples](https://www.baeldung.com/lock-free-programming)
- [Introduction to Exchanger in Java](https://www.baeldung.com/java-exchanger)
- [Why Not To Start A Thread In The Constructor?](https://www.baeldung.com/java-thread-constructor)
- [[<-- previous]](/core-java-modules/core-java-concurrency-advanced-2)
diff --git a/core-java-modules/core-java-concurrency-advanced-4/README.md b/core-java-modules/core-java-concurrency-advanced-4/README.md
new file mode 100644
index 0000000000..98f2894515
--- /dev/null
+++ b/core-java-modules/core-java-concurrency-advanced-4/README.md
@@ -0,0 +1,3 @@
+### Relevant Articles:
+
+- [Binary Semaphore vs Reentrant Lock](https://www.baeldung.com/java-binary-semaphore-vs-reentrant-lock)
diff --git a/core-java-modules/core-java-concurrency-advanced-4/pom.xml b/core-java-modules/core-java-concurrency-advanced-4/pom.xml
new file mode 100644
index 0000000000..eb9ed3adc1
--- /dev/null
+++ b/core-java-modules/core-java-concurrency-advanced-4/pom.xml
@@ -0,0 +1,47 @@
+
+
+
+ 4.0.0
+ core-java-concurrency-advanced-4
+ 0.1.0-SNAPSHOT
+ core-java-concurrency-advanced-4
+ jar
+
+ com.baeldung.core-java-modules
+ core-java-modules
+ 0.0.1-SNAPSHOT
+ ../
+
+
+
+
+
+
+ core-java-concurrency-advanced-4
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+
+ ${maven.compiler.source}
+ ${maven.compiler.target}
+
+
+
+
+
+ src/main/resources
+ true
+
+
+
+
+
+ 1.8
+ 1.8
+
+
+
diff --git a/core-java-modules/core-java-concurrency-advanced-4/src/test/java/com/baeldung/binarysemaphorereentrantlock/BinarySemaphoreVsReentrantLockUnitTest.java b/core-java-modules/core-java-concurrency-advanced-4/src/test/java/com/baeldung/binarysemaphorereentrantlock/BinarySemaphoreVsReentrantLockUnitTest.java
new file mode 100644
index 0000000000..f456e82f39
--- /dev/null
+++ b/core-java-modules/core-java-concurrency-advanced-4/src/test/java/com/baeldung/binarysemaphorereentrantlock/BinarySemaphoreVsReentrantLockUnitTest.java
@@ -0,0 +1,58 @@
+package com.baeldung.binarysemaphorereentrantlock;
+
+import static org.junit.Assert.assertEquals;
+import java.util.concurrent.Semaphore;
+import java.util.concurrent.locks.ReentrantLock;
+
+import org.junit.Test;
+
+public class BinarySemaphoreVsReentrantLockUnitTest {
+
+ @Test
+ public void givenBinarySemaphore_whenAcquireAndRelease_thenCheckAvailablePermits() throws InterruptedException {
+ Semaphore binarySemaphore = new Semaphore(1);
+ try {
+ binarySemaphore.acquire();
+ assertEquals(0, binarySemaphore.availablePermits());
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ } finally {
+ binarySemaphore.release();
+ assertEquals(1, binarySemaphore.availablePermits());
+ }
+ }
+
+ @Test
+ public void givenReentrantLock_whenLockAndUnlock_thenCheckHoldCountAndIsLocked() throws InterruptedException {
+ ReentrantLock reentrantLock = new ReentrantLock();
+ try {
+ reentrantLock.lock();
+ assertEquals(1, reentrantLock.getHoldCount());
+ assertEquals(true, reentrantLock.isLocked());
+ } finally {
+ reentrantLock.unlock();
+ assertEquals(0, reentrantLock.getHoldCount());
+ assertEquals(false, reentrantLock.isLocked());
+ }
+ }
+
+ @Test
+ public void givenReentrantLock_whenLockMultipleTimes_thenUnlockMultipleTimesToRelease() throws InterruptedException {
+ ReentrantLock reentrantLock = new ReentrantLock();
+ try {
+ reentrantLock.lock();
+ reentrantLock.lock();
+ assertEquals(2, reentrantLock.getHoldCount());
+ assertEquals(true, reentrantLock.isLocked());
+ } finally {
+ reentrantLock.unlock();
+ assertEquals(1, reentrantLock.getHoldCount());
+ assertEquals(true, reentrantLock.isLocked());
+
+ reentrantLock.unlock();
+ assertEquals(0, reentrantLock.getHoldCount());
+ assertEquals(false, reentrantLock.isLocked());
+ }
+ }
+
+}
diff --git a/core-java-modules/core-java-concurrency-basic-2/src/main/java/com/baeldung/concurrent/stopexecution/StopExecution.java b/core-java-modules/core-java-concurrency-basic-2/src/main/java/com/baeldung/concurrent/stopexecution/StopExecution.java
new file mode 100644
index 0000000000..20f66da5da
--- /dev/null
+++ b/core-java-modules/core-java-concurrency-basic-2/src/main/java/com/baeldung/concurrent/stopexecution/StopExecution.java
@@ -0,0 +1,263 @@
+package com.baeldung.concurrent.stopexecution;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.Reader;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Timer;
+import java.util.TimerTask;
+import java.util.concurrent.ExecutorService;
+import java.util.concurrent.Executors;
+import java.util.concurrent.Future;
+import java.util.concurrent.ScheduledExecutorService;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.TimeoutException;
+
+public class StopExecution {
+ private static final Logger LOG = LoggerFactory.getLogger(StopExecution.class);
+
+ public static void main(String[] args) {
+ StopExecution stopExecution = new StopExecution();
+ //stopExecution.testUsingLoop();
+ //stopExecution.testTimer();
+ stopExecution.testScheduledExecutor();
+ LOG.info("done");
+ }
+
+ public void testUsingLoop() {
+ long start = System.currentTimeMillis();
+ long end = start + 5000;
+ List items = new ArrayList<>();
+ int counter = 0;
+
+ // Let this loop run only upto 5 seconds
+ while (System.currentTimeMillis() < end && counter < items.size()) {
+ // Fetch the item from the list.
+ // Some expensive operation on the item.
+ try {
+ Thread.sleep(100);
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ counter++;
+ }
+ }
+
+ public static void testThreads() {
+ Thread thread = new Thread(new Runnable() {
+ @Override
+ public void run() {
+ LOG.info("inside run");
+
+ try {
+ Thread.sleep(10000);
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ LOG.info("exit run");
+ }
+ });
+ thread.start();
+ while (thread.getState() != Thread.State.TERMINATED) {
+ LOG.info(thread.getState().name());
+ try {
+ Thread.sleep(500);
+ } catch (InterruptedException e) {
+ e.printStackTrace();
+ }
+ }
+ }
+
+ public static void testExecutor() {
+ final ExecutorService service = Executors.newSingleThreadExecutor();
+ Future f = null;
+ try {
+ f = service.submit(() -> {
+ // Do you long running calculation here
+ try {
+ Thread.sleep(2737); // Simulate some delay
+ } catch (InterruptedException e) {
+ LOG.info("Interrupted");
+ return "interrupted";
+ }
+ LOG.info("Sleep finished");
+ return "42";
+ });
+
+ LOG.info(f.get(2, TimeUnit.SECONDS));
+ } catch (TimeoutException e) {
+ f.cancel(true);
+ LOG.error("Calculation took to long");
+ } catch (Exception e) {
+ throw new RuntimeException(e);
+ } finally {
+ service.shutdown();
+ }
+ }
+
+ public void testExecutor2() {
+ final ExecutorService service = Executors.newSingleThreadExecutor();
+ Future f = null;
+ try {
+ f = service.submit(new LongRunningTask());
+ LOG.info("testExecutor2");
+ f.get(1, TimeUnit.SECONDS);
+ } catch (final TimeoutException e) {
+ f.cancel(true);
+ LOG.error("Calculation took to long");
+ } catch (final Exception e) {
+ throw new RuntimeException(e);
+ } finally {
+ service.shutdownNow();
+ }
+ }
+
+ public void testScheduledExecutor() {
+ LOG.info("testScheduledExecutor");
+ ScheduledExecutorService executor = Executors.newScheduledThreadPool(2);
+ Future future = executor.submit(new LongRunningTask());
+ executor.schedule(new Runnable() {
+ public void run() {
+ future.cancel(true);
+ }
+ }, 1000, TimeUnit.MILLISECONDS);
+ executor.shutdown();
+ }
+
+ public void testThreadAndInterrupt() {
+
+ Thread t;
+ try {
+ t = new Thread(new LongRunningTask());
+
+ LOG.info("testExecutor3");
+ long end = System.currentTimeMillis() + 2000;
+ t.start();
+ while (t.isAlive() && System.currentTimeMillis() < end) {
+ Thread.sleep(50);
+ }
+ t.interrupt();
+ } catch (final Exception e) {
+ throw new RuntimeException(e);
+ }
+ }
+
+ public void testTimer() {
+ LOG.info("Timer test");
+ Thread t = new Thread(new LongRunningTask());
+ Timer timeoutTimer = new Timer();
+ timeoutTimer.schedule(new TimeOutTask(t, timeoutTimer), 1000);
+ t.start();
+ }
+
+ class MyRunnableTask implements Runnable {
+ public void run() {
+ try {
+ LOG.info("MyRunnable...");
+ Thread.sleep(10000);
+ } catch (InterruptedException ie) {
+ LOG.info("MyRunnable interrupted...");
+ }
+ }
+ }
+
+ class TimeOutTask extends TimerTask {
+ private Thread t;
+ private Timer timer;
+
+ TimeOutTask(Thread t, Timer timer) {
+ this.t = t;
+ this.timer = timer;
+ }
+
+ public void run() {
+ if (t != null && t.isAlive()) {
+ t.interrupt();
+ timer.cancel();
+ }
+ }
+ }
+
+ class LongRunningTask implements Runnable {
+ @Override
+ public void run() {
+ longRunningSort();
+ }
+
+ private void longRunningOperation() {
+ LOG.info("long Running operation started");
+
+ try {
+ //Thread.sleep(500);
+ longFileRead();
+ LOG.info("long running operation finished");
+ } catch (InterruptedException e) {
+ LOG.info("long Running operation interrupted");
+ }
+ }
+
+ private void longRunningSort() {
+ LOG.info("long Running task started");
+ // Do you long running calculation here
+ int len = 100000;
+ List numbers = new ArrayList<>();
+ try {
+ for (int i = len; i > 0; i--) {
+ //Thread.sleep(5)
+ numbers.add(i);
+ }
+
+ int i = 0;
+ for (i = 0; i < len; i++) {
+ int minIndex = i;
+ for (int j = i + 1; j < len; j++) {
+ if (numbers.get(minIndex) > numbers.get(j))
+ minIndex = j;
+ }
+ if (minIndex != i) {
+ int temp = numbers.get(i);
+ numbers.set(i, numbers.get(minIndex));
+ numbers.set(minIndex, temp);
+ }
+ throwExceptionOnThreadInterrupt();
+ }
+ LOG.info("Index position: " + i);
+ LOG.info("Long running task finished");
+ } catch (InterruptedException e) {
+ LOG.info("long Running operation interrupted");
+ }
+ }
+
+ private void longFileRead() throws InterruptedException {
+ String file = "input.txt";
+ ClassLoader classloader = getClass().getClassLoader();
+
+ try (InputStream inputStream = classloader.getResourceAsStream(file)) {
+ Reader inputStreamReader = new InputStreamReader(inputStream);
+
+ int data = inputStreamReader.read();
+ while (data != -1) {
+ char theChar = (char) data;
+ data = inputStreamReader.read();
+ throwExceptionOnThreadInterrupt();
+ }
+ } catch (IOException e) {
+ LOG.error("Exception: ", e);
+ }
+ }
+
+ private void throwExceptionOnThreadInterrupt() throws InterruptedException {
+ if (Thread.currentThread().interrupted()) {
+ throw new InterruptedException();
+ }
+ }
+ }
+
+}
+
+
diff --git a/core-java-modules/core-java-datetime-conversion/src/test/java/com/baeldung/datetime/ConvertInstantToTimestampUnitTest.java b/core-java-modules/core-java-datetime-conversion/src/test/java/com/baeldung/datetime/ConvertInstantToTimestampUnitTest.java
index e5fd80285c..bb36dd634e 100644
--- a/core-java-modules/core-java-datetime-conversion/src/test/java/com/baeldung/datetime/ConvertInstantToTimestampUnitTest.java
+++ b/core-java-modules/core-java-datetime-conversion/src/test/java/com/baeldung/datetime/ConvertInstantToTimestampUnitTest.java
@@ -6,6 +6,7 @@ import java.sql.Timestamp;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.time.Instant;
+import java.time.format.DateTimeFormatter;
import java.util.TimeZone;
import static org.assertj.core.api.Assertions.assertThat;
@@ -21,9 +22,12 @@ public class ConvertInstantToTimestampUnitTest {
instant = timestamp.toInstant();
assertThat(instant.toEpochMilli()).isEqualTo(timestamp.getTime());
- DateFormat df = DateFormat.getDateTimeInstance();
- df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SS'Z'");
+ DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
+ formatter = formatter.withZone(TimeZone.getTimeZone("UTC").toZoneId());
+
+ DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
df.setTimeZone(TimeZone.getTimeZone("UTC"));
- assertThat(instant.toString()).isEqualTo(df.format(timestamp).toString());
+
+ assertThat(formatter.format(instant)).isEqualTo(df.format(timestamp));
}
}
diff --git a/core-java-modules/core-java-datetime-string/src/test/java/com/baeldung/date/StringToDateUnitTest.java b/core-java-modules/core-java-datetime-string/src/test/java/com/baeldung/date/StringToDateUnitTest.java
index e07422a9c6..0d2bb810f0 100644
--- a/core-java-modules/core-java-datetime-string/src/test/java/com/baeldung/date/StringToDateUnitTest.java
+++ b/core-java-modules/core-java-datetime-string/src/test/java/com/baeldung/date/StringToDateUnitTest.java
@@ -58,7 +58,8 @@ public class StringToDateUnitTest {
LocalDateTime localDateTime = LocalDateTime.of(2015, 05, 05, 10, 15, 30);
ZonedDateTime expectedZonedDateTime = ZonedDateTime.of(localDateTime, ZoneId.of("Europe/Paris"));
- ZonedDateTime zonedDateTime = ZonedDateTime.parse("2015-05-05T10:15:30+01:00[Europe/Paris]");
+ DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss z");
+ ZonedDateTime zonedDateTime = ZonedDateTime.parse("2015-05-05 10:15:30 Europe/Paris", formatter);
assertThat(zonedDateTime).isEqualTo(expectedZonedDateTime);
}
diff --git a/core-java-modules/core-java-datetime-string/src/test/java/com/baeldung/datetime/DateTimeFormatterUnitTest.java b/core-java-modules/core-java-datetime-string/src/test/java/com/baeldung/datetime/DateTimeFormatterUnitTest.java
index f3b2b11893..b1c88cb44c 100644
--- a/core-java-modules/core-java-datetime-string/src/test/java/com/baeldung/datetime/DateTimeFormatterUnitTest.java
+++ b/core-java-modules/core-java-datetime-string/src/test/java/com/baeldung/datetime/DateTimeFormatterUnitTest.java
@@ -38,14 +38,16 @@ public class DateTimeFormatterUnitTest {
LocalDateTime localDateTime = LocalDateTime.of(2018, 1, 1, 10, 15, 50, 500);
ZoneId losAngelesTimeZone = TimeZone.getTimeZone("America/Los_Angeles").toZoneId();
- DateTimeFormatter localizedFormatter = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.FULL);
- DateTimeFormatter frLocalizedFormatter =
- DateTimeFormatter.ofLocalizedDateTime(FormatStyle.FULL).withLocale(Locale.FRANCE);
+ DateTimeFormatter localizedFormatter = DateTimeFormatter.ofPattern("EEEE, MMMM dd, yyyy z", Locale.US);
+ DateTimeFormatter frLocalizedFormatter = DateTimeFormatter.ofPattern("EEEE, MMMM dd, yyyy z", Locale.FRANCE);
String formattedDateTime = localizedFormatter.format(ZonedDateTime.of(localDateTime, losAngelesTimeZone));
String frFormattedDateTime = frLocalizedFormatter.format(ZonedDateTime.of(localDateTime, losAngelesTimeZone));
- Assert.assertEquals("Monday, January 1, 2018 10:15:50 AM PST", formattedDateTime);
- Assert.assertEquals("lundi 1 janvier 2018 10 h 15 PST", frFormattedDateTime);
+ System.out.println(formattedDateTime);
+ System.out.println(frFormattedDateTime);
+
+ Assert.assertEquals("Monday, January 01, 2018 PST", formattedDateTime);
+ Assert.assertEquals("lundi, janvier 01, 2018 PST", frFormattedDateTime);
}
@Test
@@ -105,14 +107,15 @@ public class DateTimeFormatterUnitTest {
Assert.assertEquals("8/23/16", DateTimeFormatter.ofLocalizedDate(FormatStyle.SHORT).format(anotherSummerDay));
}
- @Test
- public void shouldPrintStyledDateTime() {
- LocalDateTime anotherSummerDay = LocalDateTime.of(2016, 8, 23, 13, 12, 45);
- Assert.assertEquals("Tuesday, August 23, 2016 1:12:45 PM EET", DateTimeFormatter.ofLocalizedDateTime(FormatStyle.FULL).withZone(ZoneId.of("Europe/Helsinki")).format(anotherSummerDay));
- Assert.assertEquals("August 23, 2016 1:12:45 PM EET", DateTimeFormatter.ofLocalizedDateTime(FormatStyle.LONG).withZone(ZoneId.of("Europe/Helsinki")).format(anotherSummerDay));
- Assert.assertEquals("Aug 23, 2016 1:12:45 PM", DateTimeFormatter.ofLocalizedDateTime(FormatStyle.MEDIUM).withZone(ZoneId.of("Europe/Helsinki")).format(anotherSummerDay));
- Assert.assertEquals("8/23/16 1:12 PM", DateTimeFormatter.ofLocalizedDateTime(FormatStyle.SHORT).withZone(ZoneId.of("Europe/Helsinki")).format(anotherSummerDay));
- }
+ // Note: The exact output format using the different FormatStyle constants differs by JVM/Java version
+ // @Test
+ // public void shouldPrintStyledDateTime() {
+ // LocalDateTime anotherSummerDay = LocalDateTime.of(2016, 8, 23, 13, 12, 45);
+ // Assert.assertEquals("Tuesday, August 23, 2016 1:12:45 PM EET", DateTimeFormatter.ofLocalizedDateTime(FormatStyle.FULL).withZone(ZoneId.of("Europe/Helsinki")).format(anotherSummerDay));
+ // Assert.assertEquals("August 23, 2016 1:12:45 PM EET", DateTimeFormatter.ofLocalizedDateTime(FormatStyle.LONG).withZone(ZoneId.of("Europe/Helsinki")).format(anotherSummerDay));
+ // Assert.assertEquals("Aug 23, 2016 1:12:45 PM", DateTimeFormatter.ofLocalizedDateTime(FormatStyle.MEDIUM).withZone(ZoneId.of("Europe/Helsinki")).format(anotherSummerDay));
+ // Assert.assertEquals("8/23/16 1:12 PM", DateTimeFormatter.ofLocalizedDateTime(FormatStyle.SHORT).withZone(ZoneId.of("Europe/Helsinki")).format(anotherSummerDay));
+ // }
@Test
public void shouldPrintFormattedDateTimeWithPredefined() {
@@ -126,11 +129,12 @@ public class DateTimeFormatterUnitTest {
Assert.assertEquals(LocalDate.of(2018, 3, 12), LocalDate.from(DateTimeFormatter.ISO_LOCAL_DATE.parse("2018-03-09")).plusDays(3));
}
- @Test
- public void shouldParseFormatStyleFull() {
- ZonedDateTime dateTime = ZonedDateTime.from(DateTimeFormatter.ofLocalizedDateTime(FormatStyle.FULL).parse("Tuesday, August 23, 2016 1:12:45 PM EET"));
- Assert.assertEquals(ZonedDateTime.of(LocalDateTime.of(2016, 8, 23, 22, 12, 45), ZoneId.of("Europe/Bucharest")), dateTime.plusHours(9));
- }
+ // Note: The exact output format using the different FormatStyle constants differs by JVM/Java version
+ // @Test
+ // public void shouldParseFormatStyleFull() {
+ // ZonedDateTime dateTime = ZonedDateTime.from(DateTimeFormatter.ofLocalizedDateTime(FormatStyle.FULL).parse("Tuesday, August 23, 2016 1:12:45 PM EET"));
+ // Assert.assertEquals(ZonedDateTime.of(LocalDateTime.of(2016, 8, 23, 22, 12, 45), ZoneId.of("Europe/Bucharest")), dateTime.plusHours(9));
+ // }
@Test
public void shouldParseDateWithCustomFormatter() {
diff --git a/core-java-modules/core-java-exceptions-3/README.md b/core-java-modules/core-java-exceptions-3/README.md
index 4e3dd22bb8..e1372381a8 100644
--- a/core-java-modules/core-java-exceptions-3/README.md
+++ b/core-java-modules/core-java-exceptions-3/README.md
@@ -3,3 +3,8 @@
- [NoSuchMethodError in Java](https://www.baeldung.com/java-nosuchmethod-error)
- [IllegalArgumentException or NullPointerException for a Null Parameter?](https://www.baeldung.com/java-illegalargumentexception-or-nullpointerexception)
- [IllegalMonitorStateException in Java](https://www.baeldung.com/java-illegalmonitorstateexception)
+- [AbstractMethodError in Java](https://www.baeldung.com/java-abstractmethoderror)
+- [Java IndexOutOfBoundsException “Source Does Not Fit in Dest”](https://www.baeldung.com/java-indexoutofboundsexception)
+- [Localizing Exception Messages in Java](https://www.baeldung.com/java-localize-exception-messages)
+- [Explanation of ClassCastException in Java](https://www.baeldung.com/java-classcastexception)
+- [NoSuchFieldError in Java](https://www.baeldung.com/java-nosuchfielderror)
diff --git a/core-java-modules/core-java-exceptions-3/pom.xml b/core-java-modules/core-java-exceptions-3/pom.xml
index b909572afe..8c36fd0af1 100644
--- a/core-java-modules/core-java-exceptions-3/pom.xml
+++ b/core-java-modules/core-java-exceptions-3/pom.xml
@@ -17,6 +17,14 @@
+
+
+ com.h2database
+ h2
+ 1.4.191
+ test
+
+
org.assertj
diff --git a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingAddAllMethodDemo.java b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingAddAllMethodDemo.java
new file mode 100644
index 0000000000..34e6f1c998
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingAddAllMethodDemo.java
@@ -0,0 +1,14 @@
+package com.baeldung.exception.indexoutofbounds;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class CopyListUsingAddAllMethodDemo {
+ static List copyList(List source) {
+ List destination = new ArrayList<>();
+
+ destination.addAll(source);
+
+ return destination;
+ }
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingCollectionsCopyMethodDemo.java b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingCollectionsCopyMethodDemo.java
new file mode 100644
index 0000000000..664e2152d8
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingCollectionsCopyMethodDemo.java
@@ -0,0 +1,10 @@
+package com.baeldung.exception.indexoutofbounds;
+
+import java.util.Collections;
+import java.util.List;
+
+public class CopyListUsingCollectionsCopyMethodDemo {
+ static void copyList(List source, List destination) {
+ Collections.copy(destination, source);
+ }
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingConstructorDemo.java b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingConstructorDemo.java
new file mode 100644
index 0000000000..493031ba0a
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingConstructorDemo.java
@@ -0,0 +1,10 @@
+package com.baeldung.exception.indexoutofbounds;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class CopyListUsingConstructorDemo {
+ static List copyList(List source) {
+ return new ArrayList<>(source);
+ }
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingJava8StreamDemo.java b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingJava8StreamDemo.java
new file mode 100644
index 0000000000..d9d0247d2f
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/CopyListUsingJava8StreamDemo.java
@@ -0,0 +1,12 @@
+package com.baeldung.exception.indexoutofbounds;
+
+import java.util.List;
+import java.util.stream.Collectors;
+
+public class CopyListUsingJava8StreamDemo {
+ static List copyList(List source) {
+ return source
+ .stream()
+ .collect(Collectors.toList());
+ }
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/IndexOutOfBoundsExceptionDemo.java b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/IndexOutOfBoundsExceptionDemo.java
new file mode 100644
index 0000000000..78b7b03bc1
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exception/indexoutofbounds/IndexOutOfBoundsExceptionDemo.java
@@ -0,0 +1,13 @@
+package com.baeldung.exception.indexoutofbounds;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+public class IndexOutOfBoundsExceptionDemo {
+ static List copyList(List source) {
+ List destination = new ArrayList<>(source.size());
+ Collections.copy(destination, source);
+ return destination;
+ }
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/classcastexception/Reptile.java b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/classcastexception/Amphibian.java
similarity index 59%
rename from core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/classcastexception/Reptile.java
rename to core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/classcastexception/Amphibian.java
index ed4b0273e5..f31c19bc0f 100644
--- a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/classcastexception/Reptile.java
+++ b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/classcastexception/Amphibian.java
@@ -1,9 +1,9 @@
package com.baeldung.exceptions.classcastexception;
-public class Reptile implements Animal {
+public class Amphibian implements Animal {
@Override
public String getName() {
- return "Reptile";
+ return "Amphibian";
}
}
diff --git a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/classcastexception/Frog.java b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/classcastexception/Frog.java
index 0a0b2d1f63..a3837f4c2f 100644
--- a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/classcastexception/Frog.java
+++ b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/classcastexception/Frog.java
@@ -1,6 +1,6 @@
package com.baeldung.exceptions.classcastexception;
-public class Frog extends Reptile {
+public class Frog extends Amphibian {
@Override
public String getName() {
diff --git a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/localization/LocalizedException.java b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/localization/LocalizedException.java
new file mode 100644
index 0000000000..c3f9980b99
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/localization/LocalizedException.java
@@ -0,0 +1,47 @@
+package com.baeldung.exceptions.localization;
+
+import java.util.Locale;
+
+public class LocalizedException extends Exception {
+
+ private static final long serialVersionUID = 1L;
+
+ private final String messageKey;
+ private final Locale locale;
+
+ public LocalizedException(String messageKey) {
+ this(messageKey, Locale.getDefault());
+ }
+
+ public LocalizedException(String messageKey, Locale locale) {
+ this.messageKey = messageKey;
+ this.locale = locale;
+ }
+
+ /**
+ * @return a localized message based on the messageKey provided at instantiation.
+ */
+ public String getMessage() {
+
+ /*
+ * This is a deliberate role reversal of the default implementation of getLocalizedMessage.
+ * some logging frameworks like Log4J 1 & 2 and Logback will use getMessage instead of
+ * getLocalizedMessage when logging Throwables. If we want to use these frameworks in client
+ * applications to log localized messages, then we'll need to override getMessage in a
+ * similar fashion to return the appropriate content. Or, you can call getLocalizedMessage
+ * on your own to create the log content.
+ */
+ return getLocalizedMessage();
+ }
+
+ /**
+ * @return a localized message based on the messageKey provided at instantiation.
+ */
+ public String getLocalizedMessage() {
+
+ /*
+ * java.util.logging uses getLocalizedMessage when logging Throwables.
+ */
+ return Messages.getMessageForLocale(messageKey, locale);
+ }
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/localization/Messages.java b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/localization/Messages.java
new file mode 100644
index 0000000000..1079bedd1a
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/localization/Messages.java
@@ -0,0 +1,27 @@
+package com.baeldung.exceptions.localization;
+
+import java.util.Locale;
+import java.util.ResourceBundle;
+
+public class Messages {
+
+ /**
+ * Retrieves the value for the messageKey from the locale-specific messages.properties, or from
+ * the base messages.properties for unsupported locales.
+ *
+ * @param messageKey The key for the message in the messages.properties ResourceBundle.
+ * @param locale The locale to search the message key.
+ * @return The value defined for the messageKey in the provided locale.
+ */
+ public static String getMessageForLocale(String messageKey, Locale locale) {
+
+ /*
+ * For more complex implementations, you will want a var-args parameter for MessageFormat
+ * substitutions. Then we can read the value from the bundle and pass the value with the
+ * substitutions to MessageFormat to create the final message value.
+ */
+ return ResourceBundle.getBundle("messages", locale)
+ .getString(messageKey);
+ }
+
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/nosuchfielderror/Dependency.java b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/nosuchfielderror/Dependency.java
new file mode 100644
index 0000000000..31ac54ac6b
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/nosuchfielderror/Dependency.java
@@ -0,0 +1,8 @@
+package com.baeldung.exceptions.nosuchfielderror;
+
+public class Dependency {
+
+ // This needed to be commented post compilation of NoSuchFielDError and Compile
+ public static String message = "Hello Baeldung!!";
+
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/nosuchfielderror/FieldErrorExample.java b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/nosuchfielderror/FieldErrorExample.java
new file mode 100644
index 0000000000..021ed57d87
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/main/java/com/baeldung/exceptions/nosuchfielderror/FieldErrorExample.java
@@ -0,0 +1,20 @@
+package com.baeldung.exceptions.nosuchfielderror;
+
+public class FieldErrorExample {
+
+ public static void main(String... args) {
+
+ fetchAndPrint();
+ }
+
+ public static String getDependentMessage() {
+
+ return Dependency.message;
+ }
+
+ public static void fetchAndPrint() {
+
+ System.out.println(getDependentMessage());
+ }
+
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-exceptions-3/src/main/resources/messages.properties b/core-java-modules/core-java-exceptions-3/src/main/resources/messages.properties
new file mode 100644
index 0000000000..b6122d7f21
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/main/resources/messages.properties
@@ -0,0 +1 @@
+message.exception = I am an exception.
\ No newline at end of file
diff --git a/core-java-modules/core-java-exceptions-3/src/main/resources/messages_fr.properties b/core-java-modules/core-java-exceptions-3/src/main/resources/messages_fr.properties
new file mode 100644
index 0000000000..f28e0d54ff
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/main/resources/messages_fr.properties
@@ -0,0 +1 @@
+message.exception = Je suis une exception.
\ No newline at end of file
diff --git a/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingAddAllMethodDemoUnitTest.java b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingAddAllMethodDemoUnitTest.java
new file mode 100644
index 0000000000..204bbff696
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingAddAllMethodDemoUnitTest.java
@@ -0,0 +1,18 @@
+package com.baeldung.exception.indexoutofbounds;
+
+import org.junit.jupiter.api.Test;
+
+import java.util.Arrays;
+import java.util.List;
+
+import static org.junit.jupiter.api.Assertions.*;
+
+class CopyListUsingAddAllMethodDemoUnitTest {
+
+ @Test
+ void whenPassValidArrayList_thenCopyListUsingAddAllMethod() {
+ List source = Arrays.asList(11, 22, 33);
+
+ assertEquals(source, CopyListUsingAddAllMethodDemo.copyList(source));
+ }
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingCollectionsCopyMethodDemoUnitTest.java b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingCollectionsCopyMethodDemoUnitTest.java
new file mode 100644
index 0000000000..7ebf7461a6
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingCollectionsCopyMethodDemoUnitTest.java
@@ -0,0 +1,31 @@
+package com.baeldung.exception.indexoutofbounds;
+
+import org.junit.jupiter.api.Test;
+
+import java.util.Arrays;
+import java.util.List;
+
+import static org.junit.jupiter.api.Assertions.*;
+
+public class CopyListUsingCollectionsCopyMethodDemoUnitTest {
+ @Test
+ void whenCopyListUsingCollectionsCopy_thenOverrideAllDestinationListValues() {
+ List source = Arrays.asList(11, 22, 33);
+ List destination = Arrays.asList(1, 2, 3);
+
+ CopyListUsingCollectionsCopyMethodDemo.copyList(source, destination);
+
+ assertEquals(source, destination);
+ }
+
+ @Test
+ void whenCopyListUsingCollectionsCopy_thenOverrideInitialDestinationValuesAndOthersShouldBeUnchanged(){
+ List source = Arrays.asList(11, 22, 33);
+ List destination = Arrays.asList(1, 2, 3, 4, 5);
+ List expectedList = Arrays.asList(11, 22, 33, 4, 5);
+
+ CopyListUsingCollectionsCopyMethodDemo.copyList(source, destination);
+
+ assertEquals(expectedList, destination);
+ }
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingConstructorDemoUnitTest.java b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingConstructorDemoUnitTest.java
new file mode 100644
index 0000000000..cd15c5055c
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingConstructorDemoUnitTest.java
@@ -0,0 +1,18 @@
+package com.baeldung.exception.indexoutofbounds;
+
+import org.junit.jupiter.api.Test;
+
+import java.util.Arrays;
+import java.util.List;
+
+import static org.junit.jupiter.api.Assertions.*;
+
+class CopyListUsingConstructorDemoUnitTest {
+
+ @Test
+ void whenCopyListUsingConstructor_thenMakeACopyOfList() {
+ List source = Arrays.asList(11, 22, 33);
+
+ assertEquals(source, CopyListUsingConstructorDemo.copyList(source));
+ }
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingJava8StreamDemoUnitTest.java b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingJava8StreamDemoUnitTest.java
new file mode 100644
index 0000000000..9fb8e16b2a
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/CopyListUsingJava8StreamDemoUnitTest.java
@@ -0,0 +1,18 @@
+package com.baeldung.exception.indexoutofbounds;
+
+import org.junit.jupiter.api.Test;
+
+import java.util.Arrays;
+import java.util.List;
+
+import static org.junit.jupiter.api.Assertions.*;
+
+class CopyListUsingJava8StreamDemoUnitTest {
+
+ @Test
+ void whenCopyListUsingStream_thenMakeACopyOfArrayList() {
+ List source = Arrays.asList(11, 22, 33);
+
+ assertEquals(source, CopyListUsingJava8StreamDemo.copyList(source));
+ }
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/IndexOutOfBoundsExceptionDemoUnitTest.java b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/IndexOutOfBoundsExceptionDemoUnitTest.java
new file mode 100644
index 0000000000..9929fa78d3
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exception/indexoutofbounds/IndexOutOfBoundsExceptionDemoUnitTest.java
@@ -0,0 +1,28 @@
+package com.baeldung.exception.indexoutofbounds;
+
+import org.junit.jupiter.api.Test;
+
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.List;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertThrows;
+
+
+class IndexOutOfBoundsExceptionDemoUnitTest {
+
+ @Test
+ void givenDestinationArrayListSizeIsZero_whenCopySourceArrayListToDestination_thenShouldThrowIndexOutOfBoundsException() {
+ List source = Arrays.asList(1, 2, 3, 4, 5);
+
+ assertThrows(IndexOutOfBoundsException.class, () -> IndexOutOfBoundsExceptionDemo.copyList(source));
+ }
+
+ @Test
+ void givenSourceAndDestinationListSizeIsEqual_whenCopySourceArrayListToDestination_thenShouldNotThrowIndexOutOfBoundsException() {
+ List source = Collections.emptyList();
+
+ assertEquals(source, IndexOutOfBoundsExceptionDemo.copyList(source));
+ }
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/abstractmethoderror/AbstractMethodErrorUnitTest.java b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/abstractmethoderror/AbstractMethodErrorUnitTest.java
new file mode 100644
index 0000000000..cadc884487
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/abstractmethoderror/AbstractMethodErrorUnitTest.java
@@ -0,0 +1,23 @@
+package com.baeldung.exceptions.abstractmethoderror;
+
+
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Test;
+
+import java.sql.Connection;
+import java.sql.DriverManager;
+import java.sql.SQLException;
+
+import static org.junit.jupiter.api.Assertions.assertNotNull;
+
+class AbstractMethodErrorUnitTest {
+ private static final String url = "jdbc:h2:mem:A-DATABASE;INIT=CREATE SCHEMA IF NOT EXISTS myschema";
+ private static final String username = "sa";
+
+ @Test
+ void givenOldH2Database_whenCallgetSchemaMethod_thenThrowAbstractMethodError() throws SQLException {
+ Connection conn = DriverManager.getConnection(url, username, "");
+ assertNotNull(conn);
+ Assertions.assertThrows(AbstractMethodError.class, () -> conn.getSchema());
+ }
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/illegalmonitorstate/IllegalMonitorStateExceptionUnitTest.java b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/illegalmonitorstate/IllegalMonitorStateExceptionUnitTest.java
index a729facdbd..82c00bc72f 100644
--- a/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/illegalmonitorstate/IllegalMonitorStateExceptionUnitTest.java
+++ b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/illegalmonitorstate/IllegalMonitorStateExceptionUnitTest.java
@@ -20,6 +20,8 @@ public class IllegalMonitorStateExceptionUnitTest {
senderThread.join(1000);
receiverThread.join(1000);
+
+ Thread.sleep(2000);
assertEquals("test", receiver.getMessage());
assertFalse(sender.hasIllegalMonitorStateExceptionOccurred());
diff --git a/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/localization/LocalizedExceptionUnitTest.java b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/localization/LocalizedExceptionUnitTest.java
new file mode 100644
index 0000000000..a46ca05d23
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/localization/LocalizedExceptionUnitTest.java
@@ -0,0 +1,61 @@
+package com.baeldung.exceptions.localization;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+import java.util.Locale;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class LocalizedExceptionUnitTest {
+
+ private Locale originalDefaultLocale;
+
+ @Before
+ public void saveOriginalDefaultLocale() {
+ originalDefaultLocale = Locale.getDefault();
+ }
+
+ @After
+ public void restoreOriginalDefaultLocale() {
+ Locale.setDefault(originalDefaultLocale);
+ }
+
+ @Test
+ public void givenUsEnglishDefaultLocale_whenLocalizingMessage_thenMessageComesFromDefaultMessages() {
+ Locale.setDefault(Locale.US);
+
+ LocalizedException localizedException = new LocalizedException("message.exception");
+ String usEnglishLocalizedExceptionMessage = localizedException.getLocalizedMessage();
+
+ assertThat(usEnglishLocalizedExceptionMessage).isEqualTo("I am an exception.");
+ }
+
+ @Test
+ public void givenFranceFrenchDefaultLocale_whenLocalizingMessage_thenMessageComesFromFrenchTranslationMessages() {
+ Locale.setDefault(Locale.FRANCE);
+
+ LocalizedException localizedException = new LocalizedException("message.exception");
+ String franceFrenchLocalizedExceptionMessage = localizedException.getLocalizedMessage();
+
+ assertThat(franceFrenchLocalizedExceptionMessage).isEqualTo("Je suis une exception.");
+ }
+
+ @Test
+ public void givenUsEnglishProvidedLocale_whenLocalizingMessage_thenMessageComesFromDefaultMessage() {
+ LocalizedException localizedException = new LocalizedException("message.exception", Locale.US);
+ String usEnglishLocalizedExceptionMessage = localizedException.getLocalizedMessage();
+
+ assertThat(usEnglishLocalizedExceptionMessage).isEqualTo("I am an exception.");
+ }
+
+ @Test
+ public void givenFranceFrenchProvidedLocale_whenLocalizingMessage_thenMessageComesFromFrenchTranslationMessages() {
+ LocalizedException localizedException = new LocalizedException("message.exception", Locale.FRANCE);
+ String franceFrenchLocalizedExceptionMessage = localizedException.getLocalizedMessage();
+
+ assertThat(franceFrenchLocalizedExceptionMessage).isEqualTo("Je suis une exception.");
+ }
+
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/localization/MessagesUnitTest.java b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/localization/MessagesUnitTest.java
new file mode 100644
index 0000000000..7a6cb8ed32
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/localization/MessagesUnitTest.java
@@ -0,0 +1,25 @@
+package com.baeldung.exceptions.localization;
+
+import org.junit.Test;
+
+import java.util.Locale;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class MessagesUnitTest {
+
+ @Test
+ public void givenUsEnglishLocale_whenRetrievingMessage_thenEnglishTranslationIsReturned() {
+ String translatedMessage = Messages.getMessageForLocale("message.exception", Locale.US);
+
+ assertThat(translatedMessage).isEqualTo("I am an exception.");
+ }
+
+ @Test
+ public void givenFranceFrenchLocale_whenRetrievingMessage_thenFrenchTranslationIsReturned() {
+ String translatedMessage = Messages.getMessageForLocale("message.exception", Locale.FRANCE);
+
+ assertThat(translatedMessage).isEqualTo("Je suis une exception.");
+ }
+
+}
diff --git a/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/nosuchfielderror/FieldErrorExampleUnitTest.java b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/nosuchfielderror/FieldErrorExampleUnitTest.java
new file mode 100644
index 0000000000..d9a3efacc8
--- /dev/null
+++ b/core-java-modules/core-java-exceptions-3/src/test/java/com/baeldung/exceptions/nosuchfielderror/FieldErrorExampleUnitTest.java
@@ -0,0 +1,16 @@
+package com.baeldung.exceptions.nosuchfielderror;
+
+import static org.junit.Assert.assertTrue;
+
+import org.junit.Test;
+
+public class FieldErrorExampleUnitTest {
+
+ @Test
+ public void whenDependentMessage_returnMessage() {
+
+ String dependentMessage = FieldErrorExample.getDependentMessage();
+ assertTrue("Hello Baeldung!!".equals(dependentMessage));
+ }
+
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-functional/README.md b/core-java-modules/core-java-functional/README.md
new file mode 100644
index 0000000000..5891b4a943
--- /dev/null
+++ b/core-java-modules/core-java-functional/README.md
@@ -0,0 +1,3 @@
+## Relevant articles:
+
+- [Functional Programming in Java](https://www.baeldung.com/java-functional-programming)
diff --git a/core-java-modules/core-java-functional/pom.xml b/core-java-modules/core-java-functional/pom.xml
new file mode 100644
index 0000000000..f00600c794
--- /dev/null
+++ b/core-java-modules/core-java-functional/pom.xml
@@ -0,0 +1,18 @@
+
+
+ 4.0.0
+ core-java-functional
+ 0.1.0-SNAPSHOT
+ core-java-functional
+ jar
+
+ com.baeldung.core-java-modules
+ core-java-modules
+ 0.0.1-SNAPSHOT
+ ../
+
+
+
\ No newline at end of file
diff --git a/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/Currying.java b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/Currying.java
new file mode 100644
index 0000000000..594fea4b8c
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/Currying.java
@@ -0,0 +1,26 @@
+package com.baeldung.functional;
+
+import java.util.function.Function;
+
+public class Currying {
+
+ private static Function> weight = mass -> gravity -> mass * gravity;
+
+ private static Function weightOnEarth = weight.apply(9.81);
+
+ private static Function weightOnMars = weight.apply(3.75);
+
+ public static Double weightOnEarth(Double mass) {
+ return weightOnEarth.apply(mass);
+ }
+
+ public static Double weightOnMars(Double mass) {
+ return weightOnMars.apply(mass);
+ }
+
+ public static Function weightOnEarth() {
+ final double gravity = 9.81;
+ return mass -> mass * gravity;
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/FirstClassFunctions.java b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/FirstClassFunctions.java
new file mode 100644
index 0000000000..13b408ab27
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/FirstClassFunctions.java
@@ -0,0 +1,24 @@
+package com.baeldung.functional;
+
+import java.util.Collections;
+import java.util.Comparator;
+import java.util.List;
+
+public class FirstClassFunctions {
+
+ public static List sortWithoutLambda(List numbers) {
+ Collections.sort(numbers, new Comparator() {
+ @Override
+ public int compare(Integer n1, Integer n2) {
+ return n1.compareTo(n2);
+ }
+ });
+ return numbers;
+ }
+
+ public static List sortWithLambda(List numbers) {
+ Collections.sort(numbers, (n1, n2) -> n1.compareTo(n2));
+ return numbers;
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/FunctionComposition.java b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/FunctionComposition.java
new file mode 100644
index 0000000000..57103be98a
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/FunctionComposition.java
@@ -0,0 +1,20 @@
+package com.baeldung.functional;
+
+import java.util.function.Function;
+
+public class FunctionComposition {
+
+ private static Function log = (value) -> Math.log(value);
+ private static Function sqrt = (value) -> Math.sqrt(value);
+
+ public static Double logThenSqrt(Double number) {
+ Function logThenSqrt = sqrt.compose(log);
+ return (logThenSqrt.apply(3.14));
+ }
+
+ public static Double sqrtThenLog(Double number) {
+ Function sqrtThenLog = sqrt.andThen(log);
+ return (sqrtThenLog.apply(3.14));
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/ImmutableData.java b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/ImmutableData.java
new file mode 100644
index 0000000000..738680f743
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/ImmutableData.java
@@ -0,0 +1,36 @@
+package com.baeldung.functional;
+
+public class ImmutableData {
+
+ private final String someData;
+
+ private final AnotherImmutableData anotherImmutableData;
+
+ public ImmutableData(final String someData, final AnotherImmutableData anotherImmutableData) {
+ this.someData = someData;
+ this.anotherImmutableData = anotherImmutableData;
+ }
+
+ public String getSomeData() {
+ return someData;
+ }
+
+ public AnotherImmutableData getAnotherImmutableData() {
+ return anotherImmutableData;
+ }
+
+ public class AnotherImmutableData {
+
+ private final Integer someOtherData;
+
+ public AnotherImmutableData(final Integer someData) {
+ this.someOtherData = someData;
+ }
+
+ public Integer getSomeOtherData() {
+ return someOtherData;
+ }
+
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/Monads.java b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/Monads.java
new file mode 100644
index 0000000000..c1223c73c7
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/Monads.java
@@ -0,0 +1,11 @@
+package com.baeldung.functional;
+
+import java.util.Optional;
+
+public class Monads {
+
+ public static Optional add(Optional val1, Optional val2) {
+ return val1.flatMap(first -> val2.flatMap(second -> Optional.of(first + second)));
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/PureFunctions.java b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/PureFunctions.java
new file mode 100644
index 0000000000..522b9de9eb
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/PureFunctions.java
@@ -0,0 +1,13 @@
+package com.baeldung.functional;
+
+import java.util.List;
+import java.util.stream.Collectors;
+
+public class PureFunctions {
+
+ public static Integer sum(List numbers) {
+ return numbers.stream()
+ .collect(Collectors.summingInt(Integer::intValue));
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/Recursion.java b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/Recursion.java
new file mode 100644
index 0000000000..d5492df69d
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/Recursion.java
@@ -0,0 +1,17 @@
+package com.baeldung.functional;
+
+public class Recursion {
+
+ public static Integer headRecursion(Integer number) {
+
+ return (number == 1) ? 1 : number * headRecursion(number - 1);
+
+ }
+
+ public static Integer tailRecursion(Integer number, Integer result) {
+
+ return (number == 1) ? result : tailRecursion(number - 1, result * number);
+
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/ReferentialTransparency.java b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/ReferentialTransparency.java
new file mode 100644
index 0000000000..1392cdd00a
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/main/java/com/baeldung/functional/ReferentialTransparency.java
@@ -0,0 +1,39 @@
+package com.baeldung.functional;
+
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
+public class ReferentialTransparency {
+
+ private static Logger logger = Logger.getGlobal();
+
+ public void main() {
+
+ String data = new SimpleData().setData("Baeldung")
+ .getData();
+ logger.log(Level.INFO, new SimpleData().setData("Baeldung")
+ .getData());
+ logger.log(Level.INFO, data);
+ logger.log(Level.INFO, "Baeldung");
+ }
+
+ public class SimpleData {
+
+ private Logger logger = Logger.getGlobal();
+
+ private String data;
+
+ public String getData() {
+ logger.log(Level.INFO, "Get data called for SimpleData");
+ return data;
+ }
+
+ public SimpleData setData(String data) {
+ logger.log(Level.INFO, "Set data called for SimpleData");
+ this.data = data;
+ return this;
+ }
+
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/CurryingUnitTest.java b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/CurryingUnitTest.java
new file mode 100644
index 0000000000..0cf96ed566
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/CurryingUnitTest.java
@@ -0,0 +1,22 @@
+package com.baeldung.functional;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import org.junit.Test;
+
+public class CurryingUnitTest {
+
+ @Test
+ public void testWeightOnEarth() {
+
+ assertEquals(588.6, Currying.weightOnEarth(60.0), 0.1);
+
+ }
+
+ @Test
+ public void testWeightOnMars() {
+
+ assertEquals(225.0, Currying.weightOnMars(60.0), 0.1);
+
+ }
+}
diff --git a/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/FirstClassFunctionsUnitTest.java b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/FirstClassFunctionsUnitTest.java
new file mode 100644
index 0000000000..8056b44f21
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/FirstClassFunctionsUnitTest.java
@@ -0,0 +1,27 @@
+package com.baeldung.functional;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import java.util.Arrays;
+
+import org.junit.Test;
+
+public class FirstClassFunctionsUnitTest {
+
+ @Test
+ public void testSortingWithoutLambda() {
+
+ assertEquals(new Integer(8), FirstClassFunctions.sortWithoutLambda(Arrays.asList(new Integer(10), new Integer(8)))
+ .get(0));
+
+ }
+
+ @Test
+ public void testSortingWithLambda() {
+
+ assertEquals(new Integer(8), FirstClassFunctions.sortWithLambda(Arrays.asList(new Integer(10), new Integer(8)))
+ .get(0));
+
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/FunctionCompositionUnitTest.java b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/FunctionCompositionUnitTest.java
new file mode 100644
index 0000000000..48d8fb695c
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/FunctionCompositionUnitTest.java
@@ -0,0 +1,23 @@
+package com.baeldung.functional;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import org.junit.Test;
+
+public class FunctionCompositionUnitTest {
+
+ @Test
+ public void testLogThenSqrt() {
+
+ assertEquals(1.07, FunctionComposition.logThenSqrt(3.14), 0.01);
+
+ }
+
+ @Test
+ public void testSqrtThenLog() {
+
+ assertEquals(0.57, FunctionComposition.sqrtThenLog(3.14), 0.01);
+
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/MonadsUnitTest.java b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/MonadsUnitTest.java
new file mode 100644
index 0000000000..8258eef59e
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/MonadsUnitTest.java
@@ -0,0 +1,19 @@
+package com.baeldung.functional;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import java.util.Optional;
+
+import org.junit.Test;
+
+public class MonadsUnitTest {
+
+ @Test
+ public void testOptionalAdd() {
+
+ assertEquals(5, Monads.add(Optional.of(new Integer(2)), Optional.of(new Integer(3)))
+ .get());
+
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/PureFunctionsUnitTets.java b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/PureFunctionsUnitTets.java
new file mode 100644
index 0000000000..23cca8bf8d
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/PureFunctionsUnitTets.java
@@ -0,0 +1,18 @@
+package com.baeldung.functional;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import java.util.Arrays;
+
+import org.junit.Test;
+
+public class PureFunctionsUnitTets {
+
+ @Test
+ public void testSortingWithoutLambda() {
+
+ assertEquals(new Integer(18), PureFunctions.sum(Arrays.asList(new Integer(10), new Integer(8))));
+
+ }
+
+}
diff --git a/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/RecursionUnitTest.java b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/RecursionUnitTest.java
new file mode 100644
index 0000000000..aa406dc7ab
--- /dev/null
+++ b/core-java-modules/core-java-functional/src/test/java/com/baeldung/functional/RecursionUnitTest.java
@@ -0,0 +1,23 @@
+package com.baeldung.functional;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import org.junit.Test;
+
+public class RecursionUnitTest {
+
+ @Test
+ public void testHeadRecursion() {
+
+ assertEquals(120, Recursion.headRecursion(5));
+
+ }
+
+ @Test
+ public void testTailRecursion() {
+
+ assertEquals(120, Recursion.tailRecursion(5, 1));
+
+ }
+
+}
diff --git a/core-java-modules/core-java-io-2/src/main/java/com/baeldung/listfiles/ListFiles.java b/core-java-modules/core-java-io-2/src/main/java/com/baeldung/listfiles/ListFiles.java
index 2275128dfe..c108d9ed96 100644
--- a/core-java-modules/core-java-io-2/src/main/java/com/baeldung/listfiles/ListFiles.java
+++ b/core-java-modules/core-java-io-2/src/main/java/com/baeldung/listfiles/ListFiles.java
@@ -24,9 +24,20 @@ public class ListFiles {
.collect(Collectors.toSet());
}
+ public Set listFilesUsingFilesList(String dir) throws IOException {
+ try (Stream stream = Files.list(Paths.get(dir))) {
+ return stream
+ .filter(file -> !Files.isDirectory(file))
+ .map(Path::getFileName)
+ .map(Path::toString)
+ .collect(Collectors.toSet());
+ }
+ }
+
public Set listFilesUsingFileWalk(String dir, int depth) throws IOException {
try (Stream stream = Files.walk(Paths.get(dir), depth)) {
- return stream.filter(file -> !Files.isDirectory(file))
+ return stream
+ .filter(file -> !Files.isDirectory(file))
.map(Path::getFileName)
.map(Path::toString)
.collect(Collectors.toSet());
diff --git a/core-java-modules/core-java-io-2/src/test/java/com/baeldung/listfiles/ListFilesUnitTest.java b/core-java-modules/core-java-io-2/src/test/java/com/baeldung/listfiles/ListFilesUnitTest.java
index a87097f085..5b4efc9e58 100644
--- a/core-java-modules/core-java-io-2/src/test/java/com/baeldung/listfiles/ListFilesUnitTest.java
+++ b/core-java-modules/core-java-io-2/src/test/java/com/baeldung/listfiles/ListFilesUnitTest.java
@@ -25,10 +25,15 @@ public class ListFilesUnitTest {
};
@Test
- public void givenDir_whenUsingJAVAIO_thenListAllFiles() throws IOException {
+ public void givenDir_whenUsingJAVAIO_thenListAllFiles() {
assertEquals(EXPECTED_FILE_LIST, listFiles.listFilesUsingJavaIO(DIRECTORY));
}
+ @Test
+ public void givenDir_whenUsingFilesList_thenListAllFiles() throws IOException {
+ assertEquals(EXPECTED_FILE_LIST, listFiles.listFilesUsingFilesList(DIRECTORY));
+ }
+
@Test
public void givenDir_whenWalkingTree_thenListAllFiles() throws IOException {
assertEquals(EXPECTED_FILE_LIST, listFiles.listFilesUsingFileWalk(DIRECTORY,DEPTH));
diff --git a/core-java-modules/core-java-io-3/README.md b/core-java-modules/core-java-io-3/README.md
index 18caabc784..d0ac5387a8 100644
--- a/core-java-modules/core-java-io-3/README.md
+++ b/core-java-modules/core-java-io-3/README.md
@@ -12,4 +12,6 @@ This module contains articles about core Java input and output (IO)
- [Creating Temporary Directories in Java](https://www.baeldung.com/java-temp-directories)
- [Reading a Line at a Given Line Number From a File in Java](https://www.baeldung.com/java-read-line-at-number)
- [Find the Last Modified File in a Directory with Java](https://www.baeldung.com/java-last-modified-file)
+- [Get a Filename Without the Extension in Java](https://www.baeldung.com/java-filename-without-extension)
+- [Writing byte[] to a File in Java](https://www.baeldung.com/java-write-byte-array-file)
- [[<-- Prev]](/core-java-modules/core-java-io-2)
diff --git a/core-java-modules/core-java-io-3/src/main/java/com/baeldung/filenamewithoutextension/MyFilenameUtil.java b/core-java-modules/core-java-io-3/src/main/java/com/baeldung/filenamewithoutextension/MyFilenameUtil.java
new file mode 100644
index 0000000000..102c454c49
--- /dev/null
+++ b/core-java-modules/core-java-io-3/src/main/java/com/baeldung/filenamewithoutextension/MyFilenameUtil.java
@@ -0,0 +1,14 @@
+package com.baeldung.filenamewithoutextension;
+
+public class MyFilenameUtil {
+ private MyFilenameUtil() {}
+
+ public static String removeFileExtension(String filename, boolean removeAllExtensions) {
+ if (filename == null || filename.isEmpty()) {
+ return filename;
+ }
+
+ String extPattern = "(?
+
+ 4.0.0
+ core-java-io-4
+ 0.1.0-SNAPSHOT
+ core-java-io-4
+ jar
+
+ com.baeldung.core-java-modules
+ core-java-modules
+ 0.0.1-SNAPSHOT
+ ../
+
+
+
+
+
+ commons-io
+ commons-io
+ ${commons-io.version}
+
+
+
+ log4j
+ log4j
+ ${log4j.version}
+
+
+ org.slf4j
+ log4j-over-slf4j
+ ${org.slf4j.version}
+
+
+
+ org.assertj
+ assertj-core
+ ${assertj.version}
+ test
+
+
+
+
+
+
+
+ 3.6.1
+
+
+
\ No newline at end of file
diff --git a/core-java-modules/core-java-io-4/src/test/java/com/baeldung/fileseparator/FilePathSeparatorUnitTest.java b/core-java-modules/core-java-io-4/src/test/java/com/baeldung/fileseparator/FilePathSeparatorUnitTest.java
new file mode 100644
index 0000000000..959aae8aff
--- /dev/null
+++ b/core-java-modules/core-java-io-4/src/test/java/com/baeldung/fileseparator/FilePathSeparatorUnitTest.java
@@ -0,0 +1,63 @@
+package com.baeldung.fileseparator;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import java.io.File;
+import java.io.IOException;
+import java.util.StringJoiner;
+
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.EnabledOnOs;
+import org.junit.jupiter.api.condition.OS;
+
+public class FilePathSeparatorUnitTest {
+
+ @Test
+ @EnabledOnOs(OS.WINDOWS)
+ public void whenCheckPathSeparator_thenResultIsAsExpectedOnWindows() throws IOException {
+ assertEquals(";", File.pathSeparator);
+ assertEquals(';', File.pathSeparatorChar);
+ }
+
+ @Test
+ @EnabledOnOs({ OS.LINUX, OS.MAC })
+ public void whenCheckPathSeparator_thenResultIsAsExpected() throws IOException {
+ assertEquals(":", File.pathSeparator);
+ assertEquals(':', File.pathSeparatorChar);
+ }
+
+ @Test
+ @EnabledOnOs(OS.WINDOWS)
+ public void whenBuildPathUsingString_thenResultIsAsExpectedOnWindows() throws IOException {
+ String[] pathNames = { "path1", "path2", "path3" };
+ String path = String.join(File.pathSeparator, pathNames);
+ assertEquals("path1;path2;path3",path);
+ }
+
+ @Test
+ @EnabledOnOs({ OS.LINUX, OS.MAC })
+ public void whenBuildPathUsingString_thenResultIsAsExpected() throws IOException {
+ String[] pathNames = { "path1", "path2", "path3" };
+ String path = String.join(File.pathSeparator, pathNames);
+ assertEquals("path1:path2:path3", path);
+ }
+
+ @Test
+ @EnabledOnOs(OS.WINDOWS)
+ public void whenbuildPathUsingStringJoiner_thenResultIsAsExpectedOnWindows() throws IOException {
+ assertEquals("path1;path2", buildPathUsingStringJoiner("path1", "path2"));
+ }
+
+ @Test
+ @EnabledOnOs({ OS.LINUX, OS.MAC })
+ public void whenbuildPathUsingStringJoiner_thenResultIsAsExpected() throws IOException {
+ assertEquals("path1:path2", buildPathUsingStringJoiner("path1", "path2"));
+ }
+
+ private String buildPathUsingStringJoiner(String path1, String path2) {
+ StringJoiner joiner = new StringJoiner(File.pathSeparator);
+ joiner.add(path1);
+ joiner.add(path2);
+ return joiner.toString();
+ }
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-io-4/src/test/java/com/baeldung/fileseparator/FileSeparatorUnitTest.java b/core-java-modules/core-java-io-4/src/test/java/com/baeldung/fileseparator/FileSeparatorUnitTest.java
new file mode 100644
index 0000000000..f908dcc9bb
--- /dev/null
+++ b/core-java-modules/core-java-io-4/src/test/java/com/baeldung/fileseparator/FileSeparatorUnitTest.java
@@ -0,0 +1,63 @@
+package com.baeldung.fileseparator;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import java.io.File;
+import java.nio.file.FileSystems;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.EnabledOnOs;
+import org.junit.jupiter.api.condition.OS;
+
+public class FileSeparatorUnitTest {
+
+ @Test
+ @EnabledOnOs(OS.WINDOWS)
+ public void whenCheckFileSeparator_thenCorrectOnWindows() {
+ assertEquals("\\", File.separator);
+ assertEquals('\\', File.separatorChar);
+
+ String fileSeparator = FileSystems.getDefault().getSeparator();
+ assertEquals("\\",fileSeparator);
+ }
+
+ @Test
+ @EnabledOnOs({ OS.LINUX, OS.MAC })
+ public void whenCheckFileSeparator_thenCorrect() {
+ assertEquals("/", File.separator);
+ assertEquals('/', File.separatorChar);
+
+ String fileSeparator = FileSystems.getDefault().getSeparator();
+ assertEquals("/",fileSeparator);
+ }
+
+ @Test
+ @EnabledOnOs(OS.WINDOWS)
+ public void whenBuildFilePathUsingPathsClass_thenCorrectOnWindows() {
+ Path path = Paths.get("dir1", "dir2");
+ assertEquals("dir1\\dir2", path.toString());
+ }
+
+ @Test
+ @EnabledOnOs({ OS.LINUX, OS.MAC })
+ public void whenBuildFilePathUsingPathsClass_thenCorrect() {
+ Path path = Paths.get("dir1", "dir2");
+ assertEquals("dir1/dir2", path.toString());
+ }
+
+ @Test
+ @EnabledOnOs(OS.WINDOWS)
+ public void whenBuildFilePathUsingFileClass_thenOutputIsAsExpectedOnWindows() {
+ File file = new File("file1", "file2");
+ assertEquals("file1\\file2", file.toString());
+ }
+
+ @Test
+ @EnabledOnOs({ OS.LINUX, OS.MAC })
+ public void whenBuildFilePathUsingFileClass_thenOutputIsAsExpected() {
+ File file = new File("file1", "file2");
+ assertEquals("file1/file2", file.toString());
+ }
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-io/src/main/java/com/baeldung/unzip/UnzipFile.java b/core-java-modules/core-java-io/src/main/java/com/baeldung/unzip/UnzipFile.java
index 140d809d44..a18663f544 100644
--- a/core-java-modules/core-java-io/src/main/java/com/baeldung/unzip/UnzipFile.java
+++ b/core-java-modules/core-java-io/src/main/java/com/baeldung/unzip/UnzipFile.java
@@ -16,31 +16,42 @@ public class UnzipFile {
ZipEntry zipEntry = zis.getNextEntry();
while (zipEntry != null) {
final File newFile = newFile(destDir, zipEntry);
- final FileOutputStream fos = new FileOutputStream(newFile);
- int len;
- while ((len = zis.read(buffer)) > 0) {
- fos.write(buffer, 0, len);
+ if (zipEntry.isDirectory()) {
+ if (!newFile.isDirectory() && !newFile.mkdirs()) {
+ throw new IOException("Failed to create directory " + newFile);
+ }
+ } else {
+ File parent = newFile.getParentFile();
+ if (!parent.isDirectory() && !parent.mkdirs()) {
+ throw new IOException("Failed to create directory " + parent);
+ }
+
+ final FileOutputStream fos = new FileOutputStream(newFile);
+ int len;
+ while ((len = zis.read(buffer)) > 0) {
+ fos.write(buffer, 0, len);
+ }
+ fos.close();
}
- fos.close();
zipEntry = zis.getNextEntry();
}
zis.closeEntry();
zis.close();
}
-
+
/**
* @see https://snyk.io/research/zip-slip-vulnerability
*/
public static File newFile(File destinationDir, ZipEntry zipEntry) throws IOException {
File destFile = new File(destinationDir, zipEntry.getName());
-
+
String destDirPath = destinationDir.getCanonicalPath();
String destFilePath = destFile.getCanonicalPath();
-
+
if (!destFilePath.startsWith(destDirPath + File.separator)) {
throw new IOException("Entry is outside of the target dir: " + zipEntry.getName());
}
-
+
return destFile;
}
}
\ No newline at end of file
diff --git a/core-java-modules/core-java-jar/.gitignore b/core-java-modules/core-java-jar/.gitignore
new file mode 100644
index 0000000000..ba516c02b5
--- /dev/null
+++ b/core-java-modules/core-java-jar/.gitignore
@@ -0,0 +1 @@
+!src/test/resources/example-jar/stripe-0.0.1-SNAPSHOT.jar
diff --git a/core-java-modules/core-java-jar/README.md b/core-java-modules/core-java-jar/README.md
index f6bb7677d4..f83ea496ab 100644
--- a/core-java-modules/core-java-jar/README.md
+++ b/core-java-modules/core-java-jar/README.md
@@ -7,3 +7,4 @@ This module contains articles about JAR files
- [How to Create an Executable JAR with Maven](http://www.baeldung.com/executable-jar-with-maven)
- [Importance of Main Manifest Attribute in a Self-Executing JAR](http://www.baeldung.com/java-jar-executable-manifest-main-class)
- [Guide to Creating and Running a Jar File in Java](https://www.baeldung.com/java-create-jar)
+- [Get Names of Classes Inside a JAR File](https://www.baeldung.com/jar-file-get-class-names)
diff --git a/core-java-modules/core-java-jar/src/main/java/com/baeldung/jar/GetClassNamesFromJar.java b/core-java-modules/core-java-jar/src/main/java/com/baeldung/jar/GetClassNamesFromJar.java
new file mode 100644
index 0000000000..0d8a67dbd6
--- /dev/null
+++ b/core-java-modules/core-java-jar/src/main/java/com/baeldung/jar/GetClassNamesFromJar.java
@@ -0,0 +1,43 @@
+package com.baeldung.jar;
+
+import java.io.File;
+import java.io.IOException;
+import java.net.URL;
+import java.net.URLClassLoader;
+import java.util.Enumeration;
+import java.util.HashSet;
+import java.util.Set;
+import java.util.jar.JarEntry;
+import java.util.jar.JarFile;
+
+public class GetClassNamesFromJar {
+
+ public static Set getClassNamesFromJarFile(File givenFile) throws IOException {
+ Set classNames = new HashSet<>();
+ try (JarFile jarFile = new JarFile(givenFile)) {
+ Enumeration e = jarFile.entries();
+ while (e.hasMoreElements()) {
+ JarEntry jarEntry = e.nextElement();
+ if (jarEntry.getName().endsWith(".class")) {
+ String className = jarEntry.getName()
+ .replace("/", ".")
+ .replace(".class", "");
+ classNames.add(className);
+ }
+ }
+ return classNames;
+ }
+ }
+
+ public static Set getClassesFromJarFile(File jarFile) throws IOException, ClassNotFoundException {
+ Set classNames = getClassNamesFromJarFile(jarFile);
+ Set classes = new HashSet<>(classNames.size());
+ try (URLClassLoader cl = URLClassLoader.newInstance(new URL[] { new URL("jar:file:" + jarFile + "!/") })) {
+ for (String name : classNames) {
+ Class clazz = cl.loadClass(name); // Loading the class by its name
+ classes.add(clazz);
+ }
+ }
+ return classes;
+ }
+}
diff --git a/core-java-modules/core-java-jar/src/test/java/com/baeldung/jar/GetClassNamesFromJarUnitTest.java b/core-java-modules/core-java-jar/src/test/java/com/baeldung/jar/GetClassNamesFromJarUnitTest.java
new file mode 100644
index 0000000000..7af3ff59fd
--- /dev/null
+++ b/core-java-modules/core-java-jar/src/test/java/com/baeldung/jar/GetClassNamesFromJarUnitTest.java
@@ -0,0 +1,39 @@
+package com.baeldung.jar;
+
+import com.google.common.collect.Sets;
+import org.junit.Assert;
+import org.junit.Test;
+
+import java.io.File;
+import java.io.IOException;
+import java.net.URISyntaxException;
+import java.util.Arrays;
+import java.util.Objects;
+import java.util.Set;
+import java.util.stream.Collectors;
+
+public class GetClassNamesFromJarUnitTest {
+ private static final String JAR_PATH = "example-jar/stripe-0.0.1-SNAPSHOT.jar";
+ private static final Set EXPECTED_CLASS_NAMES = Sets.newHashSet(
+ "com.baeldung.stripe.StripeApplication",
+ "com.baeldung.stripe.ChargeRequest",
+ "com.baeldung.stripe.StripeService",
+ "com.baeldung.stripe.ChargeRequest$Currency",
+ "com.baeldung.stripe.ChargeController",
+ "com.baeldung.stripe.CheckoutController");
+
+ @Test
+ public void givenJarFilePath_whenLoadClassNames_thenGetClassNames() throws IOException, URISyntaxException {
+ File jarFile = new File(Objects.requireNonNull(getClass().getClassLoader().getResource(JAR_PATH)).toURI());
+ Set classNames = GetClassNamesFromJar.getClassNamesFromJarFile(jarFile);
+ Assert.assertEquals(EXPECTED_CLASS_NAMES, classNames);
+ }
+
+ @Test
+ public void givenJarFilePath_whenLoadClass_thenGetClassObjects() throws IOException, ClassNotFoundException, URISyntaxException {
+ File jarFile = new File(Objects.requireNonNull(getClass().getClassLoader().getResource(JAR_PATH)).toURI());
+ Set classes = GetClassNamesFromJar.getClassesFromJarFile(jarFile);
+ Set names = classes.stream().map(Class::getName).collect(Collectors.toSet());
+ Assert.assertEquals(EXPECTED_CLASS_NAMES, names);
+ }
+}
diff --git a/core-java-modules/core-java-jar/src/test/resources/example-jar/stripe-0.0.1-SNAPSHOT.jar b/core-java-modules/core-java-jar/src/test/resources/example-jar/stripe-0.0.1-SNAPSHOT.jar
new file mode 100644
index 0000000000..213d7f9400
Binary files /dev/null and b/core-java-modules/core-java-jar/src/test/resources/example-jar/stripe-0.0.1-SNAPSHOT.jar differ
diff --git a/core-java-modules/core-java-lang-2/pom.xml b/core-java-modules/core-java-lang-2/pom.xml
index 5f2d4ec901..d395e8efb1 100644
--- a/core-java-modules/core-java-lang-2/pom.xml
+++ b/core-java-modules/core-java-lang-2/pom.xml
@@ -69,7 +69,6 @@
1.19
3.12.2
1.9.4
- 3.10
29.0-jre
diff --git a/core-java-modules/core-java-lang-3/README.md b/core-java-modules/core-java-lang-3/README.md
index 598014bb92..5279cc23b0 100644
--- a/core-java-modules/core-java-lang-3/README.md
+++ b/core-java-modules/core-java-lang-3/README.md
@@ -7,4 +7,8 @@ This module contains articles about core features in the Java language
- [When are Static Variables Initialized in Java?](https://www.baeldung.com/java-static-variables-initialization)
- [Checking if a Class Exists in Java](https://www.baeldung.com/java-check-class-exists)
- [The Difference Between a.getClass() and A.class in Java](https://www.baeldung.com/java-getclass-vs-class)
+- [Constants in Java: Patterns and Anti-Patterns](https://www.baeldung.com/java-constants-good-practices)
+- [The transient Keyword in Java](https://www.baeldung.com/java-transient-keyword)
+- [How to Access an Iteration Counter in a For Each Loop](https://www.baeldung.com/java-foreach-counter)
+- [Comparing Doubles in Java](https://www.baeldung.com/java-comparing-doubles)
- [[<-- Prev]](/core-java-modules/core-java-lang-2)
diff --git a/core-java-modules/core-java-lang-3/pom.xml b/core-java-modules/core-java-lang-3/pom.xml
index de290717b1..f98074ad1b 100644
--- a/core-java-modules/core-java-lang-3/pom.xml
+++ b/core-java-modules/core-java-lang-3/pom.xml
@@ -23,6 +23,18 @@
${assertj.version}
test
+
+ com.google.guava
+ guava
+ ${guava.version}
+ test
+
+
+ org.apache.commons
+ commons-math3
+ 3.6.1
+ test
+
diff --git a/core-java-modules/core-java-lang-3/src/main/java/com/baeldung/iterationcounter/IterationCounter.java b/core-java-modules/core-java-lang-3/src/main/java/com/baeldung/iterationcounter/IterationCounter.java
new file mode 100644
index 0000000000..40d997cb0e
--- /dev/null
+++ b/core-java-modules/core-java-lang-3/src/main/java/com/baeldung/iterationcounter/IterationCounter.java
@@ -0,0 +1,68 @@
+package com.baeldung.iterationcounter;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.concurrent.atomic.AtomicInteger;
+import java.util.function.BiConsumer;
+import java.util.function.Consumer;
+import java.util.stream.Stream;
+
+public class IterationCounter {
+ public static final List IMDB_TOP_MOVIES = Arrays.asList("The Shawshank Redemption",
+ "The Godfather", "The Godfather II", "The Dark Knight");
+
+ public static List getRankingsWithForLoop(List movies) {
+ List rankings = new ArrayList<>();
+ for (int i = 0; i < movies.size(); i++) {
+ String ranking = (i + 1) + ": " + movies.get(i);
+ rankings.add(ranking);
+ }
+ return rankings;
+ }
+
+ public static List getRankingsWithForEachLoop(List movies) {
+ List rankings = new ArrayList<>();
+ int i = 0;
+ for (String movie : movies) {
+ String ranking = (i + 1) + ": " + movies.get(i);
+ rankings.add(ranking);
+
+ i++;
+ }
+ return rankings;
+ }
+
+ public static List getRankingsWithFunctionalForEachLoop(List movies) {
+ List rankings = new ArrayList<>();
+ forEachWithCounter(movies, (i, movie) -> {
+ String ranking = (i + 1) + ": " + movie;
+ rankings.add(ranking);
+ });
+
+ return rankings;
+ }
+
+ public static void forEachWithCounter(Iterable source, BiConsumer consumer) {
+ int i = 0;
+ for (T item : source) {
+ consumer.accept(i, item);
+ i++;
+ }
+ }
+
+ public static List getRankingsWithStream(Stream movies) {
+ List rankings = new ArrayList<>();
+ movies.forEach(withCounter((i, movie) -> {
+ String ranking = (i + 1) + ": " + movie;
+ rankings.add(ranking);
+ }));
+
+ return rankings;
+ }
+
+ public static Consumer withCounter(BiConsumer consumer) {
+ AtomicInteger counter = new AtomicInteger(0);
+ return item -> consumer.accept(counter.getAndIncrement(), item);
+ }
+}
diff --git a/core-java-modules/core-java-lang-3/src/main/java/com/baeldung/transientkw/Book.java b/core-java-modules/core-java-lang-3/src/main/java/com/baeldung/transientkw/Book.java
new file mode 100644
index 0000000000..5822d83841
--- /dev/null
+++ b/core-java-modules/core-java-lang-3/src/main/java/com/baeldung/transientkw/Book.java
@@ -0,0 +1,42 @@
+package com.baeldung.transientkw;
+
+import java.io.Serializable;
+
+public class Book implements Serializable {
+
+ private static final long serialVersionUID = -2936687026040726549L;
+
+ private String bookName;
+ private transient String description;
+ private transient int copies;
+ private final transient String bookCategory = "Fiction";
+
+ public String getBookName() {
+ return bookName;
+ }
+
+ public void setBookName(String bookName) {
+ this.bookName = bookName;
+ }
+
+ public String getDescription() {
+ return description;
+ }
+
+ public void setDescription(String description) {
+ this.description = description;
+ }
+
+ public int getCopies() {
+ return copies;
+ }
+
+ public void setCopies(int copies) {
+ this.copies = copies;
+ }
+
+ public String getBookCategory() {
+ return bookCategory;
+ }
+
+}
diff --git a/core-java-modules/core-java-lang-3/src/main/java/com/baeldung/transientkw/BookSerDe.java b/core-java-modules/core-java-lang-3/src/main/java/com/baeldung/transientkw/BookSerDe.java
new file mode 100644
index 0000000000..38e018baa3
--- /dev/null
+++ b/core-java-modules/core-java-lang-3/src/main/java/com/baeldung/transientkw/BookSerDe.java
@@ -0,0 +1,44 @@
+package com.baeldung.transientkw;
+
+import java.io.FileInputStream;
+import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.ObjectInputStream;
+import java.io.ObjectOutputStream;
+
+public class BookSerDe {
+ static String fileName = "book.ser";
+
+ /**
+ * Method to serialize Book objects to the file
+ * @throws FileNotFoundException
+ */
+ public static void serialize(Book book) throws Exception {
+ FileOutputStream file = new FileOutputStream(fileName);
+ ObjectOutputStream out = new ObjectOutputStream(file);
+
+ out.writeObject(book);
+
+ out.close();
+ file.close();
+ }
+
+ /**
+ * Method to deserialize the person object
+ * @return book
+ * @throws IOException, ClassNotFoundException
+ */
+ public static Book deserialize() throws Exception {
+ FileInputStream file = new FileInputStream(fileName);
+ ObjectInputStream in = new ObjectInputStream(file);
+
+ Book book = (Book) in.readObject();
+
+ in.close();
+ file.close();
+
+ return book;
+ }
+
+}
diff --git a/core-java-modules/core-java-lang-3/src/test/java/com/baeldung/comparedouble/CompareDoubleUnitTest.java b/core-java-modules/core-java-lang-3/src/test/java/com/baeldung/comparedouble/CompareDoubleUnitTest.java
new file mode 100644
index 0000000000..c70dabd014
--- /dev/null
+++ b/core-java-modules/core-java-lang-3/src/test/java/com/baeldung/comparedouble/CompareDoubleUnitTest.java
@@ -0,0 +1,71 @@
+package com.baeldung.comparedouble;
+
+import com.google.common.math.DoubleMath;
+import org.apache.commons.math3.util.Precision;
+import org.junit.Test;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.junit.Assert.assertEquals;
+
+public class CompareDoubleUnitTest {
+
+ @Test
+ public void givenDoubleValuesThatShouldHaveSameValue_whenUsingSimpleComparison_thenFails() {
+ double d1 = getFirstDouble(0);
+
+ double d2 = .1 * 8;
+
+ assertThat(d1 == d2).isFalse();
+ }
+
+ @Test
+ public void givenDoubleValuesThatShouldHaveSameValue_whenUsingThresholdComparison_thenSuccess() {
+ double d1 = getFirstDouble(0);
+
+ double d2 = .1 * 8;
+
+ double epsilon = 0.000001d;
+
+ assertThat(Math.abs(d1 - d2) < epsilon).isTrue();
+ }
+
+ @Test
+ public void givenDoubleValuesThatShouldHaveSameValue_whenUsingGuavaFuzzyComparison_thenSuccess() {
+ double d1 = getFirstDouble(0);
+ double d2 = .1 * 8;
+
+ double epsilon = 0.000001d;
+
+
+ assertThat(DoubleMath.fuzzyEquals(d1, d2, epsilon)).isTrue();
+ }
+
+ @Test
+ public void givenDoubleValuesThatShouldHaveSameValue_whenUsingCommonsMathComparison_thenSuccess() {
+ double d1 = getFirstDouble(0);
+ double d2 = .1 * 8;
+
+ double epsilon = 0.000001d;
+
+
+ assertThat(Precision.equals(d1, d2, epsilon)).isTrue();
+ assertThat(Precision.equals(d1, d2)).isTrue();
+ }
+
+ @Test
+ public void givenDoubleValuesThatShouldHaveSameValue_whenUsingJunitComparison_thenSuccess() {
+ double d1 = getFirstDouble(0);
+ double d2 = .1 * 8;
+
+ double epsilon = 0.000001d;
+
+ assertEquals(d1, d2, epsilon);
+ }
+
+ private double getFirstDouble(double d1) {
+ for (int i = 1; i <= 8; i++) {
+ d1 += .1;
+ }
+ return d1;
+ }
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-lang-3/src/test/java/com/baeldung/iterationcounter/IterationCounterUnitTest.java b/core-java-modules/core-java-lang-3/src/test/java/com/baeldung/iterationcounter/IterationCounterUnitTest.java
new file mode 100644
index 0000000000..6746e570ca
--- /dev/null
+++ b/core-java-modules/core-java-lang-3/src/test/java/com/baeldung/iterationcounter/IterationCounterUnitTest.java
@@ -0,0 +1,36 @@
+package com.baeldung.iterationcounter;
+
+import org.junit.Test;
+
+import static com.baeldung.iterationcounter.IterationCounter.*;
+import static org.assertj.core.api.Assertions.*;
+
+public class IterationCounterUnitTest {
+ @Test
+ public void givenRankings_whenCalculateWithForLoop_thenRankingsCorrect() {
+ assertThat(getRankingsWithForLoop(IMDB_TOP_MOVIES))
+ .containsExactly("1: The Shawshank Redemption",
+ "2: The Godfather", "3: The Godfather II", "4: The Dark Knight");
+ }
+
+ @Test
+ public void givenRankings_whenCalculateWithForEachLoop_thenRankingsCorrect() {
+ assertThat(getRankingsWithForEachLoop(IMDB_TOP_MOVIES))
+ .containsExactly("1: The Shawshank Redemption",
+ "2: The Godfather", "3: The Godfather II", "4: The Dark Knight");
+ }
+
+ @Test
+ public void givenRankings_whenCalculateWithFunctionalForEach_thenRankingsCorrect() {
+ assertThat(getRankingsWithFunctionalForEachLoop(IMDB_TOP_MOVIES))
+ .containsExactly("1: The Shawshank Redemption",
+ "2: The Godfather", "3: The Godfather II", "4: The Dark Knight");
+ }
+
+ @Test
+ public void givenRankings_whenCalculateWithStream_thenRankingsCorrect() {
+ assertThat(getRankingsWithStream(IMDB_TOP_MOVIES.stream()))
+ .containsExactly("1: The Shawshank Redemption",
+ "2: The Godfather", "3: The Godfather II", "4: The Dark Knight");
+ }
+}
diff --git a/core-java-modules/core-java-lang-3/src/test/java/com/baeldung/transientkw/TransientUnitTest.java b/core-java-modules/core-java-lang-3/src/test/java/com/baeldung/transientkw/TransientUnitTest.java
new file mode 100644
index 0000000000..cf63a0ddda
--- /dev/null
+++ b/core-java-modules/core-java-lang-3/src/test/java/com/baeldung/transientkw/TransientUnitTest.java
@@ -0,0 +1,35 @@
+package com.baeldung.transientkw;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNull;
+
+import org.junit.jupiter.api.Test;
+
+class TransientUnitTest {
+
+ @Test
+ void givenTransient_whenSerDe_thenVerifyValues() throws Exception {
+ Book book = new Book();
+ book.setBookName("Java Reference");
+ book.setDescription("will not be saved");
+ book.setCopies(25);
+
+ BookSerDe.serialize(book);
+ Book book2 = BookSerDe.deserialize();
+
+ assertEquals("Java Reference", book2.getBookName());
+ assertNull(book2.getDescription());
+ assertEquals(0, book2.getCopies());
+ }
+
+ @Test
+ void givenFinalTransient_whenSerDe_thenValuePersisted() throws Exception {
+ Book book = new Book();
+
+ BookSerDe.serialize(book);
+ Book book2 = BookSerDe.deserialize();
+
+ assertEquals("Fiction", book2.getBookCategory());
+ }
+
+}
diff --git a/core-java-modules/core-java-lang-math-2/README.md b/core-java-modules/core-java-lang-math-2/README.md
index 69ee00b5a5..5e1dc5af0e 100644
--- a/core-java-modules/core-java-lang-math-2/README.md
+++ b/core-java-modules/core-java-lang-math-2/README.md
@@ -9,9 +9,9 @@
- [Check If Two Rectangles Overlap In Java](https://www.baeldung.com/java-check-if-two-rectangles-overlap)
- [Calculate the Distance Between Two Points in Java](https://www.baeldung.com/java-distance-between-two-points)
- [Find the Intersection of Two Lines in Java](https://www.baeldung.com/java-intersection-of-two-lines)
-- [Round Up to the Nearest Hundred](https://www.baeldung.com/java-round-up-nearest-hundred)
+- [Round Up to the Nearest Hundred in Java](https://www.baeldung.com/java-round-up-nearest-hundred)
- [Convert Latitude and Longitude to a 2D Point in Java](https://www.baeldung.com/java-convert-latitude-longitude)
- [Debugging with Eclipse](https://www.baeldung.com/eclipse-debugging)
- [Matrix Multiplication in Java](https://www.baeldung.com/java-matrix-multiplication)
-- [Largest Power of 2 That Is Less Than the Given Number](https://www.baeldung.com/java-largest-power-of-2-less-than-number)
-- More articles: [[<-- Prev]](/core-java-modules/core-java-lang-math)
+- [Largest Power of 2 That Is Less Than the Given Number with Java](https://www.baeldung.com/java-largest-power-of-2-less-than-number)
+- More articles: [[<-- Prev]](/core-java-modules/core-java-lang-math)[[Next -->]](/core-java-modules/core-java-lang-math-3)
diff --git a/core-java-modules/core-java-lang-math-3/README.md b/core-java-modules/core-java-lang-math-3/README.md
new file mode 100644
index 0000000000..dda3013407
--- /dev/null
+++ b/core-java-modules/core-java-lang-math-3/README.md
@@ -0,0 +1,9 @@
+=========
+
+## Core Java 8 Cookbooks and Examples - Part 3
+
+### Relevant articles:
+
+- [Calculate Factorial in Java](https://www.baeldung.com/java-calculate-factorial)
+- [Evaluating a Math Expression in Java](https://www.baeldung.com/java-evaluate-math-expression-string)
+- More articles: [[<-- Prev]](/core-java-modules/core-java-lang-math-2)
diff --git a/core-java-modules/core-java-lang-math-3/pom.xml b/core-java-modules/core-java-lang-math-3/pom.xml
new file mode 100644
index 0000000000..27c2372ab6
--- /dev/null
+++ b/core-java-modules/core-java-lang-math-3/pom.xml
@@ -0,0 +1,35 @@
+
+
+ 4.0.0
+ core-java-lang-math-3
+ 0.0.1-SNAPSHOT
+ core-java-lang-math-3
+
+ com.baeldung.core-java-modules
+ core-java-modules
+ 0.0.1-SNAPSHOT
+ ../
+
+
+
+
+ net.objecthunter
+ exp4j
+ 0.4.8
+
+
+
+ com.fathzer
+ javaluator
+ 3.0.3
+
+
+
+
+
+
+
+
+
diff --git a/core-java-modules/core-java-lang-math-3/src/test/java/com/baeldung/math/evaluate/EvalauteMathExpressionsUnitTest.java b/core-java-modules/core-java-lang-math-3/src/test/java/com/baeldung/math/evaluate/EvalauteMathExpressionsUnitTest.java
new file mode 100644
index 0000000000..a251e8d545
--- /dev/null
+++ b/core-java-modules/core-java-lang-math-3/src/test/java/com/baeldung/math/evaluate/EvalauteMathExpressionsUnitTest.java
@@ -0,0 +1,91 @@
+package com.baeldung.math.evaluate;
+
+import javax.script.ScriptEngine;
+import javax.script.ScriptEngineManager;
+import javax.script.ScriptException;
+
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Test;
+
+import com.fathzer.soft.javaluator.DoubleEvaluator;
+import com.fathzer.soft.javaluator.StaticVariableSet;
+
+import net.objecthunter.exp4j.Expression;
+import net.objecthunter.exp4j.ExpressionBuilder;
+
+public class EvalauteMathExpressionsUnitTest {
+
+ @Test
+ public void givenSimpleExpression_whenCallEvaluateMethod_thenSuccess() {
+ Expression expression = new ExpressionBuilder("3+2").build();
+ double result = expression.evaluate();
+ Assertions.assertEquals(5, result);
+ }
+
+ @Test
+ public void givenTwoVariables_whenCallEvaluateMethod_thenSuccess() {
+ Expression expression = new ExpressionBuilder("3x+2y").variables("x", "y")
+ .build()
+ .setVariable("x", 2)
+ .setVariable("y", 3);
+ double result = expression.evaluate();
+ Assertions.assertEquals(12, result);
+ }
+
+ @Test
+ public void givenMathFunctions_whenCallEvaluateMethod_thenSuccess() {
+ Expression expression = new ExpressionBuilder("sin(x)*sin(x)+cos(x)*cos(x)").variables("x")
+ .build()
+ .setVariable("x", 0.5);
+ double result = expression.evaluate();
+ Assertions.assertEquals(1, result);
+ }
+
+ @Test
+ public void givenExpression_whenCallEvaluateMethod_thenSuccess() {
+ String expression = "3+2";
+ DoubleEvaluator eval = new DoubleEvaluator();
+ Double result = eval.evaluate(expression);
+ Assertions.assertEquals(5, result);
+ }
+
+ @Test
+ public void givenVariables_whenCallEvaluateMethod_thenSuccess() {
+ String expression = "3*x+2*y";
+ DoubleEvaluator eval = new DoubleEvaluator();
+ StaticVariableSet variables = new StaticVariableSet();
+ variables.set("x", 2.0);
+ variables.set("y", 3.0);
+ Double result = eval.evaluate(expression, variables);
+ Assertions.assertEquals(12, result);
+ }
+
+ @Test
+ public void givenMathFunction_whenCallEvaluateMethod_thenSuccess() {
+ String expression = "sin(x)*sin(x)+cos(x)*cos(x)";
+ DoubleEvaluator eval = new DoubleEvaluator();
+ StaticVariableSet variables = new StaticVariableSet();
+ variables.set("x", 0.5);
+ Double result = eval.evaluate(expression, variables);
+ Assertions.assertEquals(1, result);
+ }
+
+ @Test
+ public void givenJavaScriptingApiAndSimpleExpression_whenCallEvalMethod_thenSuccess() throws ScriptException {
+ ScriptEngineManager scriptEngineManager = new ScriptEngineManager();
+ ScriptEngine scriptEngine = scriptEngineManager.getEngineByName("JavaScript");
+ String expression = "3+2";
+ Integer result = (Integer) scriptEngine.eval(expression);
+ Assertions.assertEquals(5, result);
+ }
+
+ @Test
+ public void givenJavaScriptingApi_whenCallEvalMethod_thenSuccess() throws ScriptException {
+ ScriptEngineManager scriptEngineManager = new ScriptEngineManager();
+ ScriptEngine scriptEngine = scriptEngineManager.getEngineByName("JavaScript");
+ String expression = "x=2; y=3; 3*x+2*y;";
+ Double result = (Double) scriptEngine.eval(expression);
+ Assertions.assertEquals(12, result);
+ }
+
+}
diff --git a/core-java-modules/core-java-lang-oop-types/README.md b/core-java-modules/core-java-lang-oop-types/README.md
index 459352c490..6c649877b3 100644
--- a/core-java-modules/core-java-lang-oop-types/README.md
+++ b/core-java-modules/core-java-lang-oop-types/README.md
@@ -12,3 +12,4 @@ This module contains articles about types in Java
- [Attaching Values to Java Enum](https://www.baeldung.com/java-enum-values)
- [A Guide to Java Enums](https://www.baeldung.com/a-guide-to-java-enums)
- [Determine if an Object is of Primitive Type](https://www.baeldung.com/java-object-primitive-type)
+- [Extending Enums in Java](https://www.baeldung.com/java-extending-enums)
diff --git a/core-java-modules/core-java-lang-oop-types/pom.xml b/core-java-modules/core-java-lang-oop-types/pom.xml
index ee167bbae2..c4efd9b8d2 100644
--- a/core-java-modules/core-java-lang-oop-types/pom.xml
+++ b/core-java-modules/core-java-lang-oop-types/pom.xml
@@ -12,12 +12,20 @@
core-java-lang-oop-types
core-java-lang-oop-types
jar
-
+
org.apache.commons
commons-lang3
${commons-lang3.version}
+
+ commons-codec
+ commons-codec
+ ${commons-codec.version}
+
+
+ 1.15
+
\ No newline at end of file
diff --git a/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/Application.java b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/Application.java
new file mode 100644
index 0000000000..ad3d861d6a
--- /dev/null
+++ b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/Application.java
@@ -0,0 +1,35 @@
+package com.baeldung.enums.extendenum;
+
+import org.apache.commons.lang3.StringUtils;
+
+import java.util.Arrays;
+import java.util.EnumMap;
+import java.util.Map;
+
+public class Application {
+ private static final Map OPERATION_MAP;
+
+ static {
+ OPERATION_MAP = new EnumMap<>(ImmutableOperation.class);
+ OPERATION_MAP.put(ImmutableOperation.TO_LOWER, String::toLowerCase);
+ OPERATION_MAP.put(ImmutableOperation.INVERT_CASE, StringUtils::swapCase);
+ OPERATION_MAP.put(ImmutableOperation.REMOVE_WHITESPACES, input -> input.replaceAll("\\s", ""));
+
+ if (Arrays.stream(ImmutableOperation.values()).anyMatch(it -> !OPERATION_MAP.containsKey(it))) {
+ throw new IllegalStateException("Unmapped enum constant found!");
+ }
+ }
+
+ public String applyImmutableOperation(ImmutableOperation operation, String input) {
+ return OPERATION_MAP.get(operation).apply(input);
+ }
+
+ public String getDescription(StringOperation stringOperation) {
+ return stringOperation.getDescription();
+ }
+
+ public String applyOperation(StringOperation operation, String input) {
+ return operation.apply(input);
+ }
+
+}
diff --git a/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/ApplicationWithEx.java b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/ApplicationWithEx.java
new file mode 100644
index 0000000000..e9cbad6b7c
--- /dev/null
+++ b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/ApplicationWithEx.java
@@ -0,0 +1,26 @@
+package com.baeldung.enums.extendenum;
+
+import org.apache.commons.lang3.StringUtils;
+
+import java.util.Arrays;
+import java.util.EnumMap;
+import java.util.Map;
+
+public class ApplicationWithEx {
+ private static final Map OPERATION_MAP;
+
+ static {
+ OPERATION_MAP = new EnumMap<>(ImmutableOperation.class);
+ OPERATION_MAP.put(ImmutableOperation.TO_LOWER, String::toLowerCase);
+ OPERATION_MAP.put(ImmutableOperation.INVERT_CASE, StringUtils::swapCase);
+ // ImmutableOperation.REMOVE_WHITESPACES is not mapped
+
+ if (Arrays.stream(ImmutableOperation.values()).anyMatch(it -> !OPERATION_MAP.containsKey(it))) {
+ throw new IllegalStateException("Unmapped enum constant found!");
+ }
+ }
+
+ public String applyImmutableOperation(ImmutableOperation operation, String input) {
+ return OPERATION_MAP.get(operation).apply(input);
+ }
+}
diff --git a/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/BasicStringOperation.java b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/BasicStringOperation.java
new file mode 100644
index 0000000000..267b02daf4
--- /dev/null
+++ b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/BasicStringOperation.java
@@ -0,0 +1,33 @@
+package com.baeldung.enums.extendenum;
+
+public enum BasicStringOperation implements StringOperation {
+ TRIM("Removing leading and trailing spaces.") {
+ @Override
+ public String apply(String input) {
+ return input.trim();
+ }
+ },
+ TO_UPPER("Changing all characters into upper case.") {
+ @Override
+ public String apply(String input) {
+ return input.toUpperCase();
+ }
+ },
+ REVERSE("Reversing the given string.") {
+ @Override
+ public String apply(String input) {
+ return new StringBuilder(input).reverse().toString();
+ }
+ };
+
+ private String description;
+
+ public String getDescription() {
+ return description;
+ }
+
+ BasicStringOperation(String description) {
+ this.description = description;
+ }
+}
+
diff --git a/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/ExtendedStringOperation.java b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/ExtendedStringOperation.java
new file mode 100644
index 0000000000..6184837b26
--- /dev/null
+++ b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/ExtendedStringOperation.java
@@ -0,0 +1,31 @@
+package com.baeldung.enums.extendenum;
+
+import org.apache.commons.codec.binary.Base64;
+import org.apache.commons.codec.digest.DigestUtils;
+
+public enum ExtendedStringOperation implements StringOperation {
+ MD5_ENCODE("Encoding the given string using the MD5 algorithm.") {
+ @Override
+ public String apply(String input) {
+ return DigestUtils.md5Hex(input);
+ }
+ },
+ BASE64_ENCODE("Encoding the given string using the BASE64 algorithm.") {
+ @Override
+ public String apply(String input) {
+ return new String(new Base64().encode(input.getBytes()));
+ }
+ };
+
+ private String description;
+
+ ExtendedStringOperation(String description) {
+ this.description = description;
+ }
+
+
+ @Override
+ public String getDescription() {
+ return description;
+ }
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/ImmutableOperation.java b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/ImmutableOperation.java
new file mode 100644
index 0000000000..66f26a4806
--- /dev/null
+++ b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/ImmutableOperation.java
@@ -0,0 +1,6 @@
+package com.baeldung.enums.extendenum;
+
+public enum ImmutableOperation {
+ REMOVE_WHITESPACES, TO_LOWER, INVERT_CASE
+}
+
diff --git a/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/Operator.java b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/Operator.java
new file mode 100644
index 0000000000..a65fea4f92
--- /dev/null
+++ b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/Operator.java
@@ -0,0 +1,5 @@
+package com.baeldung.enums.extendenum;
+
+public interface Operator {
+ String apply(String input);
+}
diff --git a/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/StringOperation.java b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/StringOperation.java
new file mode 100644
index 0000000000..faf4f38274
--- /dev/null
+++ b/core-java-modules/core-java-lang-oop-types/src/main/java/com/baeldung/enums/extendenum/StringOperation.java
@@ -0,0 +1,7 @@
+package com.baeldung.enums.extendenum;
+
+public interface StringOperation {
+ String getDescription();
+
+ String apply(String input);
+}
diff --git a/core-java-modules/core-java-lang-oop-types/src/test/java/com/baeldung/enums/extendenum/ExtendEnumUnitTest.java b/core-java-modules/core-java-lang-oop-types/src/test/java/com/baeldung/enums/extendenum/ExtendEnumUnitTest.java
new file mode 100644
index 0000000000..0b5ed1e826
--- /dev/null
+++ b/core-java-modules/core-java-lang-oop-types/src/test/java/com/baeldung/enums/extendenum/ExtendEnumUnitTest.java
@@ -0,0 +1,43 @@
+package com.baeldung.enums.extendenum;
+
+import org.junit.Test;
+
+import static org.junit.jupiter.api.Assertions.*;
+
+public class ExtendEnumUnitTest {
+ private Application app = new Application();
+
+ @Test
+ public void givenAStringAndOperation_whenApplyOperation_thenGetExpectedResult() {
+ String input = " hello";
+ String expectedToUpper = " HELLO";
+ String expectedReverse = "olleh ";
+ String expectedTrim = "hello";
+ String expectedBase64 = "IGhlbGxv";
+ String expectedMd5 = "292a5af68d31c10e31ad449bd8f51263";
+ assertEquals(expectedTrim, app.applyOperation(BasicStringOperation.TRIM, input));
+ assertEquals(expectedToUpper, app.applyOperation(BasicStringOperation.TO_UPPER, input));
+ assertEquals(expectedReverse, app.applyOperation(BasicStringOperation.REVERSE, input));
+ assertEquals(expectedBase64, app.applyOperation(ExtendedStringOperation.BASE64_ENCODE, input));
+ assertEquals(expectedMd5, app.applyOperation(ExtendedStringOperation.MD5_ENCODE, input));
+ }
+
+ @Test
+ public void givenAStringAndImmutableOperation_whenApplyOperation_thenGetExpectedResult() {
+ String input = " He ll O ";
+ String expectedToLower = " he ll o ";
+ String expectedRmWhitespace = "HellO";
+ String expectedInvertCase = " hE LL o ";
+ assertEquals(expectedToLower, app.applyImmutableOperation(ImmutableOperation.TO_LOWER, input));
+ assertEquals(expectedRmWhitespace, app.applyImmutableOperation(ImmutableOperation.REMOVE_WHITESPACES, input));
+ assertEquals(expectedInvertCase, app.applyImmutableOperation(ImmutableOperation.INVERT_CASE, input));
+ }
+
+ @Test
+ public void givenUnmappedImmutableOperationValue_whenAppStarts_thenGetException() {
+ Throwable throwable = assertThrows(ExceptionInInitializerError.class, () -> {
+ ApplicationWithEx appEx = new ApplicationWithEx();
+ });
+ assertTrue(throwable.getCause() instanceof IllegalStateException);
+ }
+}
\ No newline at end of file
diff --git a/core-java-modules/core-java-lang/src/main/java/com/baeldung/finalize/CrashedFinalizable.java b/core-java-modules/core-java-lang/src/main/java/com/baeldung/finalize/CrashedFinalizable.java
new file mode 100644
index 0000000000..d5ee27591b
--- /dev/null
+++ b/core-java-modules/core-java-lang/src/main/java/com/baeldung/finalize/CrashedFinalizable.java
@@ -0,0 +1,28 @@
+package com.baeldung.finalize;
+
+import java.lang.ref.ReferenceQueue;
+import java.lang.reflect.Field;
+
+public class CrashedFinalizable {
+ public static void main(String[] args) throws ReflectiveOperationException {
+ for (int i = 0; ; i++) {
+ new CrashedFinalizable();
+ if ((i % 1_000_000) == 0) {
+ Class> finalizerClass = Class.forName("java.lang.ref.Finalizer");
+ Field queueStaticField = finalizerClass.getDeclaredField("queue");
+ queueStaticField.setAccessible(true);
+ ReferenceQueue
- 3.8.1
3.6.1
1.2
diff --git a/core-java-modules/core-java-string-algorithms-3/pom.xml b/core-java-modules/core-java-string-algorithms-3/pom.xml
index 2725ba84c6..610956588e 100644
--- a/core-java-modules/core-java-string-algorithms-3/pom.xml
+++ b/core-java-modules/core-java-string-algorithms-3/pom.xml
@@ -59,7 +59,6 @@
- 3.8.1
3.6.1
28.1-jre
diff --git a/core-java-modules/core-java-string-algorithms/README.md b/core-java-modules/core-java-string-algorithms/README.md
index 70a4b5ffaf..c3eafda23d 100644
--- a/core-java-modules/core-java-string-algorithms/README.md
+++ b/core-java-modules/core-java-string-algorithms/README.md
@@ -3,14 +3,14 @@
This module contains articles about string-related algorithms.
### Relevant Articles:
-- [Check If a String Is a Palindrome](https://www.baeldung.com/java-palindrome)
+- [Check if a String is a Palindrome in Java](https://www.baeldung.com/java-palindrome)
- [Count Occurrences of a Char in a String](https://www.baeldung.com/java-count-chars)
- [Using indexOf to Find All Occurrences of a Word in a String](https://www.baeldung.com/java-indexOf-find-string-occurrences)
- [Removing Stopwords from a String in Java](https://www.baeldung.com/java-string-remove-stopwords)
- [Removing Repeated Characters from a String](https://www.baeldung.com/java-remove-repeated-char)
- [How to Reverse a String in Java](https://www.baeldung.com/java-reverse-string)
- [Check If a String Is a Pangram in Java](https://www.baeldung.com/java-string-pangram)
-- [Check If a String Contains Multiple Keywords](https://www.baeldung.com/string-contains-multiple-words)
+- [Check If a String Contains Multiple Keywords in Java](https://www.baeldung.com/string-contains-multiple-words)
- [Checking If a String Is a Repeated Substring](https://www.baeldung.com/java-repeated-substring)
- [Remove Emojis from a Java String](https://www.baeldung.com/java-string-remove-emojis)
- More articles: [[next -->]](../core-java-string-algorithms-2)
diff --git a/core-java-modules/core-java-string-algorithms/pom.xml b/core-java-modules/core-java-string-algorithms/pom.xml
index 85879d74e2..6ba9ae7bb3 100644
--- a/core-java-modules/core-java-string-algorithms/pom.xml
+++ b/core-java-modules/core-java-string-algorithms/pom.xml
@@ -65,7 +65,6 @@
- 3.8.1
27.0.1-jre
0.4.0
3.6.1
diff --git a/core-java-modules/core-java-string-apis/README.md b/core-java-modules/core-java-string-apis/README.md
index fc36ba8640..c9aa40de7a 100644
--- a/core-java-modules/core-java-string-apis/README.md
+++ b/core-java-modules/core-java-string-apis/README.md
@@ -8,5 +8,5 @@ This module contains articles about string APIs.
- [Guide to java.util.Formatter](https://www.baeldung.com/java-string-formatter)
- [Guide to StreamTokenizer](https://www.baeldung.com/java-streamtokenizer)
- [CharSequence vs. String in Java](https://www.baeldung.com/java-char-sequence-string)
-- [StringBuilder and StringBuffer in Java](https://www.baeldung.com/java-string-builder-string-buffer)
+- [StringBuilder vs StringBuffer in Java](https://www.baeldung.com/java-string-builder-string-buffer)
- [Generate a Secure Random Password in Java](https://www.baeldung.com/java-generate-secure-password)
diff --git a/core-java-modules/core-java-string-operations-2/pom.xml b/core-java-modules/core-java-string-operations-2/pom.xml
index db32bf97a1..5865d9a776 100644
--- a/core-java-modules/core-java-string-operations-2/pom.xml
+++ b/core-java-modules/core-java-string-operations-2/pom.xml
@@ -112,7 +112,6 @@
3.6.1
2.0.0.Final
- 3.8.1
28.2-jre
6.0.2.Final
3.0.0
diff --git a/core-java-modules/core-java-string-operations-3/README.md b/core-java-modules/core-java-string-operations-3/README.md
index 4e46849c11..7f391ee056 100644
--- a/core-java-modules/core-java-string-operations-3/README.md
+++ b/core-java-modules/core-java-string-operations-3/README.md
@@ -1,3 +1,4 @@
### Relevant Articles:
- [Version Comparison in Java](https://www.baeldung.com/java-comparing-versions)
+- [Java (String) or .toString()?](https://www.baeldung.com/java-string-casting-vs-tostring)
diff --git a/core-java-modules/core-java-string-operations-3/src/main/java/com/baeldung/tostring/StringCastUtils.java b/core-java-modules/core-java-string-operations-3/src/main/java/com/baeldung/tostring/StringCastUtils.java
new file mode 100644
index 0000000000..e96c87dfe4
--- /dev/null
+++ b/core-java-modules/core-java-string-operations-3/src/main/java/com/baeldung/tostring/StringCastUtils.java
@@ -0,0 +1,17 @@
+package com.baeldung.tostring;
+
+public class StringCastUtils {
+ public static String castToString(Object object) {
+ if (object instanceof String) {
+ return (String) object;
+ }
+ return null;
+ }
+
+ public static String getStringRepresentation(Object object) {
+ if (object != null) {
+ return object.toString();
+ }
+ return null;
+ }
+}
diff --git a/core-java-modules/core-java-string-operations-3/src/test/java/com/baeldung/tostring/ToStringUnitTest.java b/core-java-modules/core-java-string-operations-3/src/test/java/com/baeldung/tostring/ToStringUnitTest.java
new file mode 100644
index 0000000000..51a27e1b5c
--- /dev/null
+++ b/core-java-modules/core-java-string-operations-3/src/test/java/com/baeldung/tostring/ToStringUnitTest.java
@@ -0,0 +1,104 @@
+package com.baeldung.tostring;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotSame;
+import static org.junit.Assert.assertSame;
+
+public class ToStringUnitTest {
+ @Test
+ public void givenString_whenCastToObjectAndString_thenSameAndNoException() {
+ String input = "baeldung";
+
+ Object obj = input;
+ String str = (String) obj;
+
+ assertEquals(obj, str);
+ assertEquals(str, input);
+ assertSame(input, str);
+ }
+
+ @Test(expected = ClassCastException.class)
+ public void givenIntegerObject_whenCastToObjectAndString_thenCastClassException() {
+ Integer input = 1234;
+
+ Object obj = input;
+ String str = (String) obj;
+ }
+
+ @Test
+ public void givenNullInteger_whenCastToObjectAndString_thenSameAndNoException() {
+ Integer input = null;
+
+ Object obj = input;
+ String str = (String) obj;
+
+ assertEquals(obj, str);
+ assertEquals(str, input);
+ assertSame(input, str);
+ }
+
+ @Test(expected = NullPointerException.class)
+ public void givenNullInteger_whenToString_thenNullPointerException() {
+ Integer input = null;
+
+ String str = input.toString();
+ }
+
+ @Test
+ public void givenInteger_whenCastToObject_thenToStringEquals() {
+ Integer input = 1234;
+
+ Object obj = input;
+
+ assertEquals("1234", input.toString());
+ assertEquals("1234", obj.toString());
+ assertEquals(input.toString(), obj.toString());
+ }
+
+ @Test
+ public void givenString_whenToString_thenSame() {
+ String str = "baeldung";
+
+ assertEquals("baeldung", str.toString());
+ assertSame(str, str.toString());
+ }
+
+ @Test
+ public void givenString_whenCastToObject_thenCastToStringReturnsSame() {
+ String input = "baeldung";
+
+ Object obj = input;
+
+ assertSame(input, StringCastUtils.castToString(obj));
+ }
+
+ @Test
+ public void givenInteger_whenCastToObject_thenCastToStringReturnsNull() {
+ Integer input = 1234;
+
+ Object obj = input;
+
+ assertEquals(null, StringCastUtils.castToString(obj));
+ }
+
+ @Test
+ public void givenIntegerNull_whenCastToObject_thenCastToStringReturnsNull() {
+ Integer input = null;
+
+ Object obj = input;
+
+ assertEquals(null, StringCastUtils.castToString(obj));
+ }
+
+ @Test
+ public void givenIntegerNotNull_whenCastToObject_thenGetToStringReturnsString() {
+ Integer input = 1234;
+
+ Object obj = input;
+
+ assertEquals("1234", StringCastUtils.getStringRepresentation(obj));
+ assertNotSame("1234", StringCastUtils.getStringRepresentation(obj));
+ }
+}
diff --git a/core-java-modules/core-java-string-operations/pom.xml b/core-java-modules/core-java-string-operations/pom.xml
index c5791e929e..9632988392 100644
--- a/core-java-modules/core-java-string-operations/pom.xml
+++ b/core-java-modules/core-java-string-operations/pom.xml
@@ -60,7 +60,6 @@
- 3.9
3.6.1
1.10
diff --git a/core-java-modules/core-java-time-measurements/pom.xml b/core-java-modules/core-java-time-measurements/pom.xml
index 67b8d7179a..3197b1ae6a 100644
--- a/core-java-modules/core-java-time-measurements/pom.xml
+++ b/core-java-modules/core-java-time-measurements/pom.xml
@@ -92,10 +92,11 @@
3.6.1
2.10
+ 1.18.12
3.6.1
1.8.9
- 2.0.0
+ 2.0.7
1.44
2.22.1
diff --git a/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/ElapsedTimeUnitTest.java b/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/ElapsedTimeManualTest.java
similarity index 84%
rename from core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/ElapsedTimeUnitTest.java
rename to core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/ElapsedTimeManualTest.java
index 1d92684ef4..211222c665 100644
--- a/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/ElapsedTimeUnitTest.java
+++ b/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/ElapsedTimeManualTest.java
@@ -9,7 +9,7 @@ import java.util.concurrent.TimeUnit;
import org.apache.commons.lang3.time.StopWatch;
import org.junit.Test;
-public class ElapsedTimeUnitTest {
+public class ElapsedTimeManualTest {
@Test
public void givenRunningTask_whenMeasuringTimeWithCurrentTimeMillis_thenGetElapsedTime() throws InterruptedException {
@@ -50,17 +50,25 @@ public class ElapsedTimeUnitTest {
assertEquals(true, (2000L <= timeElapsed) && (timeElapsed <= 3000L));
}
-
+
+ /*
+ The below test depends on the elapsed time, which isn't ideal in a test.
+ Also, it slows down test execution artificially.
+ */
@Test
public void givenRunningTask_whenMeasuringTimeWithInstantClass_thenGetElapsedTime() throws InterruptedException {
Instant start = Instant.now();
-
+ System.out.println("start: " + start);
+
simulateRunningTask();
-
+
Instant finish = Instant.now();
-
+
+ System.out.println("start: " + start);
+ System.out.println("finish: " + finish);
long timeElapsed = Duration.between(start, finish).toMillis();
-
+
+ System.out.println("elapsed: " + timeElapsed);
assertEquals(true, (2000L <= timeElapsed) && (timeElapsed <= 3000L));
}
diff --git a/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/InstantUnitTest.java b/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/InstantUnitTest.java
index 8400748710..608199197a 100644
--- a/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/InstantUnitTest.java
+++ b/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/InstantUnitTest.java
@@ -10,8 +10,8 @@ import java.time.Instant;
import java.time.ZoneId;
import static org.assertj.core.api.Assertions.assertThat;
-import static org.mockito.Mockito.when;
import static org.powermock.api.mockito.PowerMockito.mockStatic;
+import static org.powermock.api.mockito.PowerMockito.when;
@RunWith(PowerMockRunner.class)
@PrepareForTest({ Instant.class })
diff --git a/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/LocalDateTimeUnitTest.java b/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/LocalDateTimeUnitTest.java
index 04c1a0b74e..52dc9ba1c6 100644
--- a/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/LocalDateTimeUnitTest.java
+++ b/core-java-modules/core-java-time-measurements/src/test/java/com/baeldung/time/LocalDateTimeUnitTest.java
@@ -18,19 +18,6 @@ import static org.powermock.api.mockito.PowerMockito.mockStatic;
@PrepareForTest({ LocalDateTime.class })
public class LocalDateTimeUnitTest {
- @Test
- public void givenLocalDateTimeMock_whenNow_thenGetFixedLocalDateTime() {
- Clock clock = Clock.fixed(Instant.parse("2014-12-22T10:15:30.00Z"), ZoneId.of("UTC"));
- LocalDateTime dateTime = LocalDateTime.now(clock);
- mockStatic(LocalDateTime.class);
- when(LocalDateTime.now()).thenReturn(dateTime);
- String dateTimeExpected = "2014-12-22T10:15:30";
-
- LocalDateTime now = LocalDateTime.now();
-
- assertThat(now).isEqualTo(dateTimeExpected);
- }
-
@Test
public void givenFixedClock_whenNow_thenGetFixedLocalDateTime() {
Clock clock = Clock.fixed(Instant.parse("2014-12-22T10:15:30.00Z"), ZoneId.of("UTC"));
diff --git a/core-java-modules/pom.xml b/core-java-modules/pom.xml
index a6aecef741..2d342c4216 100644
--- a/core-java-modules/pom.xml
+++ b/core-java-modules/pom.xml
@@ -29,10 +29,12 @@
core-java-arrays-convert
core-java-arrays-operations-basic
core-java-arrays-operations-advanced
-
+
+ core-java-char
core-java-collections
core-java-collections-2
core-java-collections-3
+ core-java-collections-4
core-java-collections-array-list
core-java-collections-list
core-java-collections-list-2
@@ -45,6 +47,7 @@
core-java-concurrency-advanced
core-java-concurrency-advanced-2
core-java-concurrency-advanced-3
+ core-java-concurrency-advanced-4
core-java-concurrency-basic
core-java-concurrency-basic-2
core-java-concurrency-collections
@@ -60,10 +63,12 @@
core-java-exceptions-2
core-java-exceptions-3
core-java-function
+ core-java-functional
core-java-io
core-java-io-2
core-java-io-3
+ core-java-io-4
core-java-io-apis
core-java-io-conversions
core-java-io-conversions-2
@@ -79,6 +84,7 @@
core-java-lang-3
core-java-lang-math
core-java-lang-math-2
+ core-java-lang-math-3
core-java-lang-oop-constructors
core-java-lang-oop-patterns
core-java-lang-oop-generics
diff --git a/core-kotlin-modules/core-kotlin-advanced/README.md b/core-kotlin-modules/core-kotlin-advanced/README.md
deleted file mode 100644
index 2e99e3b078..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/README.md
+++ /dev/null
@@ -1,11 +0,0 @@
-## Core Kotlin Advanced
-
-This module contains articles about advanced topics in Kotlin.
-
-### Relevant articles:
-- [Building DSLs in Kotlin](https://www.baeldung.com/kotlin-dsl)
-- [Regular Expressions in Kotlin](https://www.baeldung.com/kotlin-regular-expressions)
-- [Idiomatic Logging in Kotlin](https://www.baeldung.com/kotlin-logging)
-- [Mapping of Data Objects in Kotlin](https://www.baeldung.com/kotlin-data-objects)
-- [Reflection with Kotlin](https://www.baeldung.com/kotlin-reflection)
-- [Kotlin Contracts](https://www.baeldung.com/kotlin-contracts)
diff --git a/core-kotlin-modules/core-kotlin-advanced/pom.xml b/core-kotlin-modules/core-kotlin-advanced/pom.xml
deleted file mode 100644
index 5ddfef23cc..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/pom.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
- 4.0.0
- core-kotlin-advanced
- core-kotlin-advanced
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
- ${kotlin.version}
-
-
- org.assertj
- assertj-core
- ${assertj.version}
- test
-
-
- org.jetbrains.kotlin
- kotlin-test
- ${kotlin.version}
- test
-
-
-
-
- 1.3.30
- 3.10.0
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/contract/CallsInPlaceEffect.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/contract/CallsInPlaceEffect.kt
deleted file mode 100644
index ca0b13cdc7..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/contract/CallsInPlaceEffect.kt
+++ /dev/null
@@ -1,23 +0,0 @@
-package com.baeldung.contract
-
-import kotlin.contracts.ExperimentalContracts
-import kotlin.contracts.InvocationKind
-import kotlin.contracts.contract
-
-@ExperimentalContracts
-inline fun myRun(block: () -> R): R {
- contract {
- callsInPlace(block, InvocationKind.EXACTLY_ONCE)
- }
- return block()
-}
-
-@ExperimentalContracts
-fun callsInPlace() {
- val i: Int
- myRun {
- i = 1 // Without contract initialization is forbidden due to possible re-assignment
- }
- println(i) // Without contract variable might be uninitialized
-}
-
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/contract/ReturnsEffect.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/contract/ReturnsEffect.kt
deleted file mode 100644
index 56f667af82..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/contract/ReturnsEffect.kt
+++ /dev/null
@@ -1,43 +0,0 @@
-package com.baeldung.contract
-
-import kotlin.contracts.ExperimentalContracts
-import kotlin.contracts.contract
-
-data class Request(val arg: String)
-
-class Service {
-
- @ExperimentalContracts
- fun process(request: Request?) {
- validate(request)
- println(request.arg)
- }
-
-}
-
-@ExperimentalContracts
-private fun validate(request: Request?) {
- contract {
- returns() implies (request != null)
- }
- if (request == null) {
- throw IllegalArgumentException("Undefined request")
- }
-}
-
-data class MyEvent(val message: String)
-
-@ExperimentalContracts
-fun processEvent(event: Any?) {
- if (isInterested(event)) {
- println(event.message) // Compiler makes smart cast here with the help of contract
- }
-}
-
-@ExperimentalContracts
-fun isInterested(event: Any?): Boolean {
- contract {
- returns(true) implies (event is MyEvent)
- }
- return event is MyEvent
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/datamapping/User.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/datamapping/User.kt
deleted file mode 100644
index fdbf95f7ba..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/datamapping/User.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.baeldung.datamapping
-
-data class User(
- val firstName: String,
- val lastName: String,
- val street: String,
- val houseNumber: String,
- val phone: String,
- val age: Int,
- val password: String)
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/datamapping/UserExtensions.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/datamapping/UserExtensions.kt
deleted file mode 100644
index 1f3d7f3b47..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/datamapping/UserExtensions.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.baeldung.datamapping
-
-import kotlin.reflect.full.memberProperties
-
-fun User.toUserView() = UserView(
- name = "$firstName $lastName",
- address = "$street $houseNumber",
- telephone = phone,
- age = age
-)
-
-fun User.toUserViewReflection() = with(::UserView) {
- val propertiesByName = User::class.memberProperties.associateBy { it.name }
- callBy(parameters.associate { parameter ->
- parameter to when (parameter.name) {
- UserView::name.name -> "$firstName $lastName"
- UserView::address.name -> "$street $houseNumber"
- UserView::telephone.name -> phone
- else -> propertiesByName[parameter.name]?.get(this@toUserViewReflection)
- }
- })
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/datamapping/UserView.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/datamapping/UserView.kt
deleted file mode 100644
index e1b6de6b57..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/datamapping/UserView.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.datamapping
-
-data class UserView(
- val name: String,
- val address: String,
- val telephone: String,
- val age: Int
-)
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/dsl/SqlDsl.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/dsl/SqlDsl.kt
deleted file mode 100644
index 207e9dbd53..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/dsl/SqlDsl.kt
+++ /dev/null
@@ -1,114 +0,0 @@
-package com.baeldung.dsl
-
-abstract class Condition {
-
- fun and(initializer: Condition.() -> Unit) {
- addCondition(And().apply(initializer))
- }
-
- fun or(initializer: Condition.() -> Unit) {
- addCondition(Or().apply(initializer))
- }
-
- infix fun String.eq(value: Any?) {
- addCondition(Eq(this, value))
- }
-
- protected abstract fun addCondition(condition: Condition)
-}
-
-open class CompositeCondition(private val sqlOperator: String) : Condition() {
- private val conditions = mutableListOf()
-
- override fun addCondition(condition: Condition) {
- conditions += condition
- }
-
- override fun toString(): String {
- return if (conditions.size == 1) {
- conditions.first().toString()
- } else {
- conditions.joinToString(prefix = "(", postfix = ")", separator = " $sqlOperator ") {
- "$it"
- }
- }
- }
-}
-
-class And : CompositeCondition("and")
-
-class Or : CompositeCondition("or")
-
-class Eq(private val column: String, private val value: Any?) : Condition() {
-
- init {
- if (value != null && value !is Number && value !is String) {
- throw IllegalArgumentException("Only , numbers and strings values can be used in the 'where' clause")
- }
- }
-
- override fun addCondition(condition: Condition) {
- throw IllegalStateException("Can't add a nested condition to the sql 'eq'")
- }
-
- override fun toString(): String {
- return when (value) {
- null -> "$column is null"
- is String -> "$column = '$value'"
- else -> "$column = $value"
- }
- }
-}
-
-class SqlSelectBuilder {
-
- private val columns = mutableListOf()
- private lateinit var table: String
- private var condition: Condition? = null
-
- fun select(vararg columns: String) {
- if (columns.isEmpty()) {
- throw IllegalArgumentException("At least one column should be defined")
- }
- if (this.columns.isNotEmpty()) {
- throw IllegalStateException("Detected an attempt to re-define columns to fetch. Current columns list: "
- + "${this.columns}, new columns list: $columns")
- }
- this.columns.addAll(columns)
- }
-
- fun from(table: String) {
- this.table = table
- }
-
- fun where(initializer: Condition.() -> Unit) {
- condition = And().apply(initializer)
- }
-
- fun build(): String {
- if (!::table.isInitialized) {
- throw IllegalStateException("Failed to build an sql select - target table is undefined")
- }
- return toString()
- }
-
- override fun toString(): String {
- val columnsToFetch =
- if (columns.isEmpty()) {
- "*"
- } else {
- columns.joinToString(", ")
- }
- val conditionString =
- if (condition == null) {
- ""
- } else {
- " where $condition"
- }
- return "select $columnsToFetch from $table$conditionString"
- }
-}
-
-fun query(initializer: SqlSelectBuilder.() -> Unit): SqlSelectBuilder {
- return SqlSelectBuilder().apply(initializer)
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsExtensionOnAny.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsExtensionOnAny.kt
deleted file mode 100644
index 01edf5e871..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsExtensionOnAny.kt
+++ /dev/null
@@ -1,30 +0,0 @@
-package com.baeldung.logging
-
-import org.slf4j.Logger
-
-open class LoggerAsExtensionOnAny {
- val logger = logger()
-
- fun log(s: String) {
- logger().info(s)
- logger.info(s)
- }
-}
-
-class ExtensionSubclass : LoggerAsExtensionOnAny()
-
-fun T.logger(): Logger = getLogger(getClassForLogging(javaClass))
-
-fun main(args: Array) {
- LoggerAsExtensionOnAny().log("test")
- ExtensionSubclass().log("sub")
- "foo".logger().info("foo")
- 1.logger().info("uh-oh!")
- SomeOtherClass().logger()
-}
-
-class SomeOtherClass {
- fun logger(): String {
- return "foo"
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsExtensionOnMarkerInterface.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsExtensionOnMarkerInterface.kt
deleted file mode 100644
index 8210361345..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsExtensionOnMarkerInterface.kt
+++ /dev/null
@@ -1,30 +0,0 @@
-package com.baeldung.logging
-
-import org.slf4j.Logger
-import org.slf4j.LoggerFactory
-
-interface Logging
-
-inline fun T.logger(): Logger =
- //Wrong logger name!
- //LoggerFactory.getLogger(javaClass.name + " w/interface")
- LoggerFactory.getLogger(getClassForLogging(T::class.java).name + " w/interface")
-
-open class LoggerAsExtensionOnMarkerInterface : Logging {
- companion object : Logging {
- val logger = logger()
- }
-
- fun log(s: String) {
- logger().info(s)
- logger.info(s)
- }
-}
-
-class MarkerExtensionSubclass : LoggerAsExtensionOnMarkerInterface()
-
-fun main(args: Array) {
- LoggerAsExtensionOnMarkerInterface().log("test")
- MarkerExtensionSubclass().log("sub")
- "foo".logger().info("foo")
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsProperty.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsProperty.kt
deleted file mode 100644
index 60ac0800e2..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsProperty.kt
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.baeldung.logging
-
-open class LoggerAsProperty {
- private val logger = getLogger(javaClass)
-
- fun log(s: String) {
- logger.info(s)
- }
-
-}
-
-class PropertySubclass : LoggerAsProperty()
-
-fun main(args: Array) {
- LoggerAsProperty().log("test")
- PropertySubclass().log("sub")
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsPropertyDelegate.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsPropertyDelegate.kt
deleted file mode 100644
index 83cde2b446..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerAsPropertyDelegate.kt
+++ /dev/null
@@ -1,47 +0,0 @@
-package com.baeldung.logging
-
-import org.slf4j.Logger
-import kotlin.properties.ReadOnlyProperty
-import kotlin.reflect.KProperty
-
-open class LoggerAsPropertyDelegate {
- private val lazyLogger by lazyLogger()
- protected val logger by LoggerDelegate()
- private val logger2 = logger
-
- companion object {
- private val lazyLoggerComp by lazyLogger()
- private val loggerComp by LoggerDelegate()
- }
-
- open fun log(s: String) {
- logger.info(s)
- logger2.info(s)
- lazyLogger.info(s)
- loggerComp.info(s)
- lazyLoggerComp.info(s)
- }
-
-}
-
-class DelegateSubclass : LoggerAsPropertyDelegate() {
- override fun log(s: String) {
- logger.info("-- in sub")
- super.log(s)
- }
-}
-
-fun lazyLogger(forClass: Class<*>): Lazy =
- lazy { getLogger(getClassForLogging(forClass)) }
-
-fun T.lazyLogger(): Lazy = lazyLogger(javaClass)
-
-fun main(args: Array) {
- LoggerAsPropertyDelegate().log("test")
- DelegateSubclass().log("sub")
-}
-
-class LoggerDelegate : ReadOnlyProperty {
- override fun getValue(thisRef: R, property: KProperty<*>) =
- getLogger(getClassForLogging(thisRef.javaClass))
-}
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerInCompanionObject.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerInCompanionObject.kt
deleted file mode 100644
index 6a44675e45..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/LoggerInCompanionObject.kt
+++ /dev/null
@@ -1,44 +0,0 @@
-package com.baeldung.logging
-
-open class LoggerInCompanionObject {
- companion object {
- private val loggerWithExplicitClass = getLogger(LoggerInCompanionObject::class.java)
- @Suppress("JAVA_CLASS_ON_COMPANION")
- private val loggerWithWrongClass = getLogger(javaClass)
- @Suppress("JAVA_CLASS_ON_COMPANION")
- private val logger = getLogger(javaClass.enclosingClass)
- }
-
- fun log(s: String) {
- loggerWithExplicitClass.info(s)
- loggerWithWrongClass.info(s)
- logger.info(s)
- }
-
- class Inner {
- companion object {
- private val loggerWithExplicitClass = getLogger(Inner::class.java)
- @Suppress("JAVA_CLASS_ON_COMPANION")
- @JvmStatic
- private val loggerWithWrongClass = getLogger(javaClass)
- @Suppress("JAVA_CLASS_ON_COMPANION")
- @JvmStatic
- private val logger = getLogger(javaClass.enclosingClass)
- }
-
- fun log(s: String) {
- loggerWithExplicitClass.info(s)
- loggerWithWrongClass.info(s)
- logger.info(s)
- }
- }
-
-}
-
-class CompanionSubclass : LoggerInCompanionObject()
-
-fun main(args: Array) {
- LoggerInCompanionObject().log("test")
- LoggerInCompanionObject.Inner().log("test")
- CompanionSubclass().log("sub")
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/Util.kt b/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/Util.kt
deleted file mode 100644
index 44dba53cb7..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/main/kotlin/com/baeldung/logging/Util.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.baeldung.logging
-
-import org.slf4j.Logger
-import org.slf4j.LoggerFactory
-import kotlin.reflect.full.companionObject
-
-fun getLogger(forClass: Class<*>): Logger = LoggerFactory.getLogger(forClass)
-
-fun getClassForLogging(javaClass: Class): Class<*> {
- return javaClass.enclosingClass?.takeIf {
- it.kotlin.companionObject?.java == javaClass
- } ?: javaClass
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/datamapping/UserTest.kt b/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/datamapping/UserTest.kt
deleted file mode 100644
index 44d350ea38..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/datamapping/UserTest.kt
+++ /dev/null
@@ -1,43 +0,0 @@
-package com.baeldung.datamapping
-
-import org.junit.jupiter.api.Test
-import org.junit.jupiter.api.assertAll
-import kotlin.test.assertEquals
-
-class UserTest {
-
- @Test
- fun `maps User to UserResponse using extension function`() {
- val p = buildUser()
- val view = p.toUserView()
- assertUserView(view)
- }
-
- @Test
- fun `maps User to UserResponse using reflection`() {
- val p = buildUser()
- val view = p.toUserViewReflection()
- assertUserView(view)
- }
-
- private fun buildUser(): User {
- return User(
- "Java",
- "Duke",
- "Javastreet",
- "42",
- "1234567",
- 30,
- "s3cr37"
- )
- }
-
- private fun assertUserView(pr: UserView) {
- assertAll(
- { assertEquals("Java Duke", pr.name) },
- { assertEquals("Javastreet 42", pr.address) },
- { assertEquals("1234567", pr.telephone) },
- { assertEquals(30, pr.age) }
- )
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/dsl/SqlDslTest.kt b/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/dsl/SqlDslTest.kt
deleted file mode 100644
index a370e7f15d..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/dsl/SqlDslTest.kt
+++ /dev/null
@@ -1,73 +0,0 @@
-package com.baeldung.dsl
-
-import org.assertj.core.api.Assertions.assertThat
-import org.junit.Test
-
-class SqlDslTest {
-
- @Test
- fun `when no columns are specified then star is used`() {
- doTest("select * from table1") {
- from ("table1")
- }
- }
-
- @Test
- fun `when no condition is specified then correct query is built`() {
- doTest("select column1, column2 from table1") {
- select("column1", "column2")
- from ("table1")
- }
- }
-
- @Test(expected = Exception::class)
- fun `when no table is specified then an exception is thrown`() {
- query {
- select("column1")
- }.build()
- }
-
- @Test
- fun `when a list of conditions is specified then it's respected`() {
- doTest("select * from table1 where (column3 = 4 and column4 is null)") {
- from ("table1")
- where {
- "column3" eq 4
- "column4" eq null
- }
- }
- }
-
- @Test
- fun `when 'or' conditions are specified then they are respected`() {
- doTest("select * from table1 where (column3 = 4 or column4 is null)") {
- from ("table1")
- where {
- or {
- "column3" eq 4
- "column4" eq null
- }
- }
- }
- }
-
- @Test
- fun `when either 'and' or 'or' conditions are specified then they are respected`() {
- doTest("select * from table1 where ((column3 = 4 or column4 is null) and column5 = 42)") {
- from ("table1")
- where {
- and {
- or {
- "column3" eq 4
- "column4" eq null
- }
- "column5" eq 42
- }
- }
- }
- }
-
- private fun doTest(expected: String, sql: SqlSelectBuilder.() -> Unit) {
- assertThat(query(sql).build()).isEqualTo(expected)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/reflection/JavaReflectionTest.kt b/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/reflection/JavaReflectionTest.kt
deleted file mode 100644
index c77774dd81..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/reflection/JavaReflectionTest.kt
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.baeldung.reflection
-
-import org.junit.Ignore
-import org.junit.Test
-import org.slf4j.LoggerFactory
-
-@Ignore
-class JavaReflectionTest {
- private val LOG = LoggerFactory.getLogger(KClassTest::class.java)
-
- @Test
- fun listJavaClassMethods() {
- Exception::class.java.methods
- .forEach { method -> LOG.info("Method: {}", method) }
- }
-
- @Test
- fun listKotlinClassMethods() {
- JavaReflectionTest::class.java.methods
- .forEach { method -> LOG.info("Method: {}", method) }
- }
-
- @Test
- fun listKotlinDataClassMethods() {
- data class ExampleDataClass(val name: String, var enabled: Boolean)
-
- ExampleDataClass::class.java.methods
- .forEach { method -> LOG.info("Method: {}", method) }
- }
-
-
-}
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/reflection/KClassTest.kt b/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/reflection/KClassTest.kt
deleted file mode 100644
index f5d83cd13d..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/reflection/KClassTest.kt
+++ /dev/null
@@ -1,69 +0,0 @@
-package com.baeldung.reflection
-
-import org.junit.Assert
-import org.junit.Ignore
-import org.junit.Test
-import org.slf4j.LoggerFactory
-import java.math.BigDecimal
-import kotlin.reflect.full.*
-
-class KClassTest {
- private val LOG = LoggerFactory.getLogger(KClassTest::class.java)
-
- @Test
- fun testKClassDetails() {
- val stringClass = String::class
- Assert.assertEquals("kotlin.String", stringClass.qualifiedName)
- Assert.assertFalse(stringClass.isData)
- Assert.assertFalse(stringClass.isCompanion)
- Assert.assertFalse(stringClass.isAbstract)
- Assert.assertTrue(stringClass.isFinal)
- Assert.assertFalse(stringClass.isSealed)
-
- val listClass = List::class
- Assert.assertEquals("kotlin.collections.List", listClass.qualifiedName)
- Assert.assertFalse(listClass.isData)
- Assert.assertFalse(listClass.isCompanion)
- Assert.assertTrue(listClass.isAbstract)
- Assert.assertFalse(listClass.isFinal)
- Assert.assertFalse(listClass.isSealed)
- }
-
- @Test
- fun testGetRelated() {
- LOG.info("Companion Object: {}", TestSubject::class.companionObject)
- LOG.info("Companion Object Instance: {}", TestSubject::class.companionObjectInstance)
- LOG.info("Object Instance: {}", TestObject::class.objectInstance)
-
- Assert.assertSame(TestObject, TestObject::class.objectInstance)
- }
-
- @Test
- fun testNewInstance() {
- val listClass = ArrayList::class
-
- val list = listClass.createInstance()
- Assert.assertTrue(list is ArrayList)
- }
-
- @Test
- @Ignore
- fun testMembers() {
- val bigDecimalClass = BigDecimal::class
-
- LOG.info("Constructors: {}", bigDecimalClass.constructors)
- LOG.info("Functions: {}", bigDecimalClass.functions)
- LOG.info("Properties: {}", bigDecimalClass.memberProperties)
- LOG.info("Extension Functions: {}", bigDecimalClass.memberExtensionFunctions)
- }
-}
-
-class TestSubject {
- companion object {
- val name = "TestSubject"
- }
-}
-
-object TestObject {
- val answer = 42
-}
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/reflection/KMethodTest.kt b/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/reflection/KMethodTest.kt
deleted file mode 100644
index b58c199a7c..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/reflection/KMethodTest.kt
+++ /dev/null
@@ -1,88 +0,0 @@
-package com.baeldung.reflection
-
-import org.junit.Assert
-import org.junit.Test
-import java.io.ByteArrayInputStream
-import java.nio.charset.Charset
-import kotlin.reflect.KMutableProperty
-import kotlin.reflect.full.starProjectedType
-
-class KMethodTest {
-
- @Test
- fun testCallMethod() {
- val str = "Hello"
- val lengthMethod = str::length
-
- Assert.assertEquals(5, lengthMethod())
- }
-
- @Test
- fun testReturnType() {
- val str = "Hello"
- val method = str::byteInputStream
-
- Assert.assertEquals(ByteArrayInputStream::class.starProjectedType, method.returnType)
- Assert.assertFalse(method.returnType.isMarkedNullable)
- }
-
- @Test
- fun testParams() {
- val str = "Hello"
- val method = str::byteInputStream
-
- method.isSuspend
- Assert.assertEquals(1, method.parameters.size)
- Assert.assertTrue(method.parameters[0].isOptional)
- Assert.assertFalse(method.parameters[0].isVararg)
- Assert.assertEquals(Charset::class.starProjectedType, method.parameters[0].type)
- }
-
- @Test
- fun testMethodDetails() {
- val codePoints = String::codePoints
- Assert.assertEquals("codePoints", codePoints.name)
- Assert.assertFalse(codePoints.isSuspend)
- Assert.assertFalse(codePoints.isExternal)
- Assert.assertFalse(codePoints.isInline)
- Assert.assertFalse(codePoints.isOperator)
-
- val byteInputStream = String::byteInputStream
- Assert.assertEquals("byteInputStream", byteInputStream.name)
- Assert.assertFalse(byteInputStream.isSuspend)
- Assert.assertFalse(byteInputStream.isExternal)
- Assert.assertTrue(byteInputStream.isInline)
- Assert.assertFalse(byteInputStream.isOperator)
- }
-
- val readOnlyProperty: Int = 42
- lateinit var mutableProperty: String
-
- @Test
- fun testPropertyDetails() {
- val roProperty = this::readOnlyProperty
- Assert.assertEquals("readOnlyProperty", roProperty.name)
- Assert.assertFalse(roProperty.isLateinit)
- Assert.assertFalse(roProperty.isConst)
- Assert.assertFalse(roProperty is KMutableProperty<*>)
-
- val mProperty = this::mutableProperty
- Assert.assertEquals("mutableProperty", mProperty.name)
- Assert.assertTrue(mProperty.isLateinit)
- Assert.assertFalse(mProperty.isConst)
- Assert.assertTrue(mProperty is KMutableProperty<*>)
- }
-
- @Test
- fun testProperty() {
- val prop = this::mutableProperty
-
- Assert.assertEquals(String::class.starProjectedType, prop.getter.returnType)
-
- prop.set("Hello")
- Assert.assertEquals("Hello", prop.get())
-
- prop.setter("World")
- Assert.assertEquals("World", prop.getter())
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/regex/RegexTest.kt b/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/regex/RegexTest.kt
deleted file mode 100644
index 5cb54b4dda..0000000000
--- a/core-kotlin-modules/core-kotlin-advanced/src/test/kotlin/com/baeldung/regex/RegexTest.kt
+++ /dev/null
@@ -1,123 +0,0 @@
-package com.baeldung.regex
-
-import org.junit.Test
-import kotlin.test.*
-
-class RegexTest {
-
- @Test
- fun whenRegexIsInstantiated_thenIsEqualToToRegexMethod() {
- val pattern = """a([bc]+)d?\\"""
-
- assertEquals(Regex.fromLiteral(pattern).pattern, pattern)
- assertEquals(pattern, Regex(pattern).pattern)
- assertEquals(pattern, pattern.toRegex().pattern)
- }
-
- @Test
- fun whenRegexMatches_thenResultIsTrue() {
- val regex = """a([bc]+)d?""".toRegex()
-
- assertTrue(regex.containsMatchIn("xabcdy"))
- assertTrue(regex.matches("abcd"))
- assertFalse(regex matches "xabcdy")
- }
-
- @Test
- fun givenCompletelyMatchingRegex_whenMatchResult_thenDestructuring() {
- val regex = """a([bc]+)d?""".toRegex()
-
- assertNull(regex.matchEntire("xabcdy"))
-
- val matchResult = regex.matchEntire("abbccbbd")
-
- assertNotNull(matchResult)
- assertEquals(matchResult!!.value, matchResult.groupValues[0])
- assertEquals(matchResult.destructured.toList(), matchResult.groupValues.drop(1))
- assertEquals("bbccbb", matchResult.destructured.component1())
- assertNull(matchResult.next())
- }
-
- @Test
- fun givenPartiallyMatchingRegex_whenMatchResult_thenGroups() {
- val regex = """a([bc]+)d?""".toRegex()
- var matchResult = regex.find("abcb abbd")
-
- assertNotNull(matchResult)
- assertEquals(matchResult!!.value, matchResult.groupValues[0])
- assertEquals("abcb", matchResult.value)
- assertEquals(IntRange(0, 3), matchResult.range)
- assertEquals(listOf("abcb", "bcb"), matchResult.groupValues)
- assertEquals(matchResult.destructured.toList(), matchResult.groupValues.drop(1))
-
- matchResult = matchResult.next()
-
- assertNotNull(matchResult)
- assertEquals("abbd", matchResult!!.value)
- assertEquals("bb", matchResult.groupValues[1])
-
- matchResult = matchResult.next()
-
- assertNull(matchResult)
- }
-
- @Test
- fun givenPartiallyMatchingRegex_whenMatchResult_thenDestructuring() {
- val regex = """([\w\s]+) is (\d+) years old""".toRegex()
- val matchResult = regex.find("Mickey Mouse is 95 years old")
- val (name, age) = matchResult!!.destructured
-
- assertEquals("Mickey Mouse", name)
- assertEquals("95", age)
- }
-
- @Test
- fun givenNonMatchingRegex_whenFindCalled_thenNull() {
- val regex = """a([bc]+)d?""".toRegex()
- val matchResult = regex.find("foo")
-
- assertNull(matchResult)
- }
-
- @Test
- fun givenNonMatchingRegex_whenFindAllCalled_thenEmptySet() {
- val regex = """a([bc]+)d?""".toRegex()
- val matchResults = regex.findAll("foo")
-
- assertNotNull(matchResults)
- assertTrue(matchResults.none())
- }
-
- @Test
- fun whenReplace_thenReplacement() {
- val regex = """(red|green|blue)""".toRegex()
- val beautiful = "Roses are red, Violets are blue"
- val grim = regex.replace(beautiful, "dark")
- val shiny = regex.replaceFirst(beautiful, "rainbow")
-
- assertEquals("Roses are dark, Violets are dark", grim)
- assertEquals("Roses are rainbow, Violets are blue", shiny)
- }
-
- @Test
- fun whenComplexReplace_thenReplacement() {
- val regex = """(red|green|blue)""".toRegex()
- val beautiful = "Roses are red, Violets are blue"
- val reallyBeautiful = regex.replace(beautiful) {
- matchResult -> matchResult.value.toUpperCase() + "!"
- }
-
- assertEquals("Roses are RED!, Violets are BLUE!", reallyBeautiful)
- }
-
- @Test
- fun whenSplit_thenList() {
- val regex = """\W+""".toRegex()
- val beautiful = "Roses are red, Violets are blue"
-
- assertEquals(listOf("Roses", "are", "red", "Violets", "are", "blue"), regex.split(beautiful))
- assertEquals(listOf("Roses", "are", "red", "Violets are blue"), regex.split(beautiful, 4))
- assertEquals(regex.toPattern().split(beautiful).asList(), regex.split(beautiful))
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-annotations/README.md b/core-kotlin-modules/core-kotlin-annotations/README.md
deleted file mode 100644
index 787b67be11..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-## Core Kotlin Annotations
-
-This module contains articles about core Kotlin annotations.
-
-### Relevant articles:
-- [Kotlin Annotations](https://www.baeldung.com/kotlin-annotations)
-- [Guide to Kotlin @JvmField](https://www.baeldung.com/kotlin-jvm-field-annotation)
-- [Guide to JVM Platform Annotations in Kotlin](https://www.baeldung.com/kotlin-jvm-annotations)
diff --git a/core-kotlin-modules/core-kotlin-annotations/pom.xml b/core-kotlin-modules/core-kotlin-annotations/pom.xml
deleted file mode 100644
index 77670be151..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/pom.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
- 4.0.0
- core-kotlin-annotations
- core-kotlin-annotations
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
- ${kotlin.version}
-
-
- org.assertj
- assertj-core
- ${assertj.version}
- test
-
-
- org.jetbrains.kotlin
- kotlin-test
- ${kotlin.version}
- test
-
-
-
-
- 1.3.30
- 3.10.0
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Annotations.kt b/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Annotations.kt
deleted file mode 100644
index a8f83446dc..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Annotations.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package com.baeldung.annotations
-
-@Target(AnnotationTarget.FIELD)
-annotation class Positive
-
-@Target(AnnotationTarget.FIELD)
-annotation class AllowedNames(val names: Array)
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Item.kt b/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Item.kt
deleted file mode 100644
index 6864fe416e..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Item.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.annotations
-
-class Item(@Positive val amount: Float, @AllowedNames(["Alice", "Bob"]) val name: String)
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Main.kt b/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Main.kt
deleted file mode 100644
index 2b7f2c5590..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Main.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package com.baeldung.annotations
-
-fun main(args: Array) {
- val item = Item(amount = 1.0f, name = "Bob")
- val validator = Validator()
- println("Is instance valid? ${validator.isValid(item)}")
-}
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Validator.kt b/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Validator.kt
deleted file mode 100644
index 40139048ab..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/annotations/Validator.kt
+++ /dev/null
@@ -1,38 +0,0 @@
-package com.baeldung.annotations
-
-/**
- * Naive annotation-based validator.
- * @author A.Shcherbakov
- */
-class Validator() {
-
- /**
- * Return true if every item's property annotated with @Positive is positive and if
- * every item's property annotated with @AllowedNames has a value specified in that annotation.
- */
- fun isValid(item: Item): Boolean {
- val fields = item::class.java.declaredFields
- for (field in fields) {
- field.isAccessible = true
- for (annotation in field.annotations) {
- val value = field.get(item)
- if (field.isAnnotationPresent(Positive::class.java)) {
- val amount = value as Float
- if (amount < 0) {
- return false
- }
- }
- if (field.isAnnotationPresent(AllowedNames::class.java)) {
- val allowedNames = field.getAnnotation(AllowedNames::class.java)?.names
- val name = value as String
- allowedNames?.let {
- if (!it.contains(name)) {
- return false
- }
- }
- }
- }
- }
- return true
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/Document.kt b/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/Document.kt
deleted file mode 100644
index 55f60bfa81..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/Document.kt
+++ /dev/null
@@ -1,11 +0,0 @@
-package com.baeldung.jvmannotations
-
-import java.util.*
-
-interface Document {
-
- @JvmDefault
- fun getTypeDefault() = "document"
-
- fun getType() = "document"
-}
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/HtmlDocument.java b/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/HtmlDocument.java
deleted file mode 100644
index feb71772cb..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/HtmlDocument.java
+++ /dev/null
@@ -1,9 +0,0 @@
-package com.baeldung.jvmannotations;
-
-public class HtmlDocument implements Document {
-
- @Override
- public String getType() {
- return "HTML";
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/Message.kt b/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/Message.kt
deleted file mode 100644
index 80180bd924..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/Message.kt
+++ /dev/null
@@ -1,66 +0,0 @@
-@file:JvmName("MessageHelper")
-@file:JvmMultifileClass //used
-package com.baeldung.jvmannotations
-
-import java.util.*
-
-@JvmName("getMyUsername")
-fun getMyName() : String {
- return "myUserId"
-}
-
-object MessageBroker {
- @JvmStatic
- var totalMessagesSent = 0
-
- const val maxMessageLength = 0
-
- @JvmStatic
- fun clearAllMessages() {
- }
-
- @JvmStatic
- @JvmOverloads
- @Throws(Exception::class)
- fun findMessages(sender : String, type : String = "text", maxResults : Int = 10) : List {
- if(sender.isEmpty()) {
- throw Exception()
- }
- return ArrayList()
- }
-}
-
-class Message {
-
- // this would cause a compilation error since sender is immutable
- // @set:JvmName("setSender")
- val sender = "myself"
-
- // this works as name is overridden
- @JvmName("getSenderName")
- fun getSender() : String = "from:$sender"
-
- @get:JvmName("getReceiverName")
- @set:JvmName("setReceiverName")
- var receiver : String = ""
-
- @get:JvmName("getContent")
- @set:JvmName("setContent")
- var text = ""
-
- // generates a warning
- @get:JvmName("getId")
- private val id = 0
-
- @get:JvmName("hasAttachment")
- var hasAttachment = true
-
- var isEncrypted = true
-
- fun setReceivers(receiverNames : List) {
- }
-
- @JvmName("setReceiverIds")
- fun setReceivers(receiverNames : List) {
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/MessageConverter.kt b/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/MessageConverter.kt
deleted file mode 100644
index 3b19b12e10..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/MessageConverter.kt
+++ /dev/null
@@ -1,6 +0,0 @@
-@file:JvmMultifileClass
-@file:JvmName("MessageHelper") //applies to all top level functions / variables / constants
-package com.baeldung.jvmannotations
-
-fun convert(message: Message) {
-}
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/TextDocument.kt b/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/TextDocument.kt
deleted file mode 100644
index 41cb0df939..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/TextDocument.kt
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.baeldung.jvmannotations
-
-import java.util.*
-class TextDocument : Document {
- override fun getType() = "text"
-
- fun transformList(list : List) : List {
- return list.filter { n -> n.toInt() > 1 }
- }
-
- fun transformListInverseWildcards(list : List<@JvmSuppressWildcards Number>) : List<@JvmWildcard Number> {
- return list.filter { n -> n.toInt() > 1 }
- }
-
- var list : List<@JvmWildcard Any> = ArrayList()
-}
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/XmlDocument.kt b/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/XmlDocument.kt
deleted file mode 100644
index 00f2582d5f..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmannotations/XmlDocument.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package com.baeldung.jvmannotations
-
-import java.util.*
-
-class XmlDocument(d : Document) : Document by d
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmfield/JvmSample.kt b/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmfield/JvmSample.kt
deleted file mode 100644
index e60894ba88..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/main/kotlin/com/baeldung/jvmfield/JvmSample.kt
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.baeldung.jvmfield
-
-class JvmSample(text:String) {
- @JvmField
- val sampleText:String = text
-}
-
-class CompanionSample {
- companion object {
- @JvmField val MAX_LIMIT = 20
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/test/kotlin/com/baeldung/annotations/ValidationTest.kt b/core-kotlin-modules/core-kotlin-annotations/src/test/kotlin/com/baeldung/annotations/ValidationTest.kt
deleted file mode 100644
index 5c2b6ef47f..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/test/kotlin/com/baeldung/annotations/ValidationTest.kt
+++ /dev/null
@@ -1,41 +0,0 @@
-package com.baeldung.annotations
-
-import org.junit.Test
-import kotlin.test.assertTrue
-import kotlin.test.assertFalse
-
-class ValidationTest {
-
- @Test
- fun whenAmountIsOneAndNameIsAlice_thenTrue() {
- assertTrue(Validator().isValid(Item(1f, "Alice")))
- }
-
- @Test
- fun whenAmountIsOneAndNameIsBob_thenTrue() {
- assertTrue(Validator().isValid(Item(1f, "Bob")))
- }
-
-
- @Test
- fun whenAmountIsMinusOneAndNameIsAlice_thenFalse() {
- assertFalse(Validator().isValid(Item(-1f, "Alice")))
- }
-
- @Test
- fun whenAmountIsMinusOneAndNameIsBob_thenFalse() {
- assertFalse(Validator().isValid(Item(-1f, "Bob")))
- }
-
- @Test
- fun whenAmountIsOneAndNameIsTom_thenFalse() {
- assertFalse(Validator().isValid(Item(1f, "Tom")))
- }
-
- @Test
- fun whenAmountIsMinusOneAndNameIsTom_thenFalse() {
- assertFalse(Validator().isValid(Item(-1f, "Tom")))
- }
-
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/test/kotlin/com/baeldung/jvmannotations/DocumentTest.kt b/core-kotlin-modules/core-kotlin-annotations/src/test/kotlin/com/baeldung/jvmannotations/DocumentTest.kt
deleted file mode 100644
index 2ec5402e5a..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/test/kotlin/com/baeldung/jvmannotations/DocumentTest.kt
+++ /dev/null
@@ -1,20 +0,0 @@
-package com.baeldung.range
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-import com.baeldung.jvmannotations.*;
-
-class DocumentTest {
-
- @Test
- fun testDefaultMethod() {
-
- val myDocument = TextDocument()
- val myTextDocument = XmlDocument(myDocument)
-
- assertEquals("text", myDocument.getType())
- assertEquals("text", myTextDocument.getType())
- assertEquals("document", myTextDocument.getTypeDefault())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-annotations/src/test/kotlin/com/baeldung/jvmfield/JvmSampleTest.kt b/core-kotlin-modules/core-kotlin-annotations/src/test/kotlin/com/baeldung/jvmfield/JvmSampleTest.kt
deleted file mode 100644
index 769c0311c4..0000000000
--- a/core-kotlin-modules/core-kotlin-annotations/src/test/kotlin/com/baeldung/jvmfield/JvmSampleTest.kt
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.baeldung.jvmfield
-
-import org.junit.Before
-import org.junit.Test
-import kotlin.test.assertTrue
-
-class JvmSampleTest {
-
- var sample = ""
-
- @Before
- fun setUp() {
- sample = JvmSample("Hello!").sampleText
- }
-
- @Test
- fun givenField_whenCheckValue_thenMatchesValue() {
- assertTrue(sample == "Hello!")
- }
-
- @Test
- fun givenStaticVariable_whenCheckValue_thenMatchesValue() {
- // Sample when is treated as a static variable
- assertTrue(CompanionSample.MAX_LIMIT == 20)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections-2/README.md b/core-kotlin-modules/core-kotlin-collections-2/README.md
deleted file mode 100644
index 64062ee704..0000000000
--- a/core-kotlin-modules/core-kotlin-collections-2/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-## Core Kotlin Collections
-
-This module contains articles about core Kotlin collections.
-
-## Relevant articles:
-
-- [Aggregate Operations in Kotlin](https://www.baeldung.com/kotlin/aggregate-operations)
diff --git a/core-kotlin-modules/core-kotlin-collections-2/pom.xml b/core-kotlin-modules/core-kotlin-collections-2/pom.xml
deleted file mode 100644
index be462eed45..0000000000
--- a/core-kotlin-modules/core-kotlin-collections-2/pom.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
- 4.0.0
- core-kotlin-collections-2
- core-kotlin-collections-2
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
- ${kotlin.version}
-
-
- org.apache.commons
- commons-math3
- ${commons-math3.version}
-
-
- org.assertj
- assertj-core
- ${assertj.version}
- test
-
-
- org.jetbrains.kotlin
- kotlin-test
- ${kotlin.version}
- test
-
-
-
-
- 1.3.30
- 3.6.1
- 3.10.0
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections-2/src/main/kotlin/com/baeldung/aggregate/AggregateOperations.kt b/core-kotlin-modules/core-kotlin-collections-2/src/main/kotlin/com/baeldung/aggregate/AggregateOperations.kt
deleted file mode 100644
index a09e101b59..0000000000
--- a/core-kotlin-modules/core-kotlin-collections-2/src/main/kotlin/com/baeldung/aggregate/AggregateOperations.kt
+++ /dev/null
@@ -1,107 +0,0 @@
-package com.baeldung.aggregate
-
-class AggregateOperations {
- private val numbers = listOf(1, 15, 3, 8)
-
- fun countList(): Int {
- return numbers.count()
- }
-
- fun sumList(): Int {
- return numbers.sum()
- }
-
- fun averageList(): Double {
- return numbers.average()
- }
-
- fun maximumInList(): Int? {
- return numbers.max()
- }
-
- fun minimumInList(): Int? {
- return numbers.min()
- }
-
- fun maximumByList(): Int? {
- return numbers.maxBy { it % 5 }
- }
-
- fun minimumByList(): Int? {
- return numbers.minBy { it % 5 }
- }
-
- fun maximumWithList(): String? {
- val strings = listOf("Berlin", "Kolkata", "Prague", "Barcelona")
- return strings.maxWith(compareBy { it.length % 4 })
- }
-
- fun minimumWithList(): String? {
- val strings = listOf("Berlin", "Kolkata", "Prague", "Barcelona")
- return strings.minWith(compareBy { it.length % 4 })
- }
-
- fun sumByList(): Int {
- return numbers.sumBy { it * 5 }
- }
-
- fun sumByDoubleList(): Double {
- return numbers.sumByDouble { it.toDouble() / 8 }
- }
-
- fun foldList(): Int {
- return numbers.fold(100) { total, it ->
- println("total = $total, it = $it")
- total - it
- } // ((((100 - 1)-15)-3)-8) = 73
- }
-
- fun foldRightList(): Int {
- return numbers.foldRight(100) { it, total ->
- println("total = $total, it = $it")
- total - it
- } // ((((100-8)-3)-15)-1) = 73
- }
-
- fun foldIndexedList(): Int {
- return numbers.foldIndexed(100) { index, total, it ->
- println("total = $total, it = $it, index = $index")
- if (index.minus(2) >= 0) total - it else total
- } // ((100 - 3)-8) = 89
- }
-
- fun foldRightIndexedList(): Int {
- return numbers.foldRightIndexed(100) { index, it, total ->
- println("total = $total, it = $it, index = $index")
- if (index.minus(2) >= 0) total - it else total
- } // ((100 - 8)-3) = 89
- }
-
- fun reduceList(): Int {
- return numbers.reduce { total, it ->
- println("total = $total, it = $it")
- total - it
- } // (((1 - 15)-3)-8) = -25
- }
-
- fun reduceRightList(): Int {
- return numbers.reduceRight() { it, total ->
- println("total = $total, it = $it")
- total - it
- } // ((8-3)-15)-1) = -11
- }
-
- fun reduceIndexedList(): Int {
- return numbers.reduceIndexed { index, total, it ->
- println("total = $total, it = $it, index = $index")
- if (index.minus(2) >= 0) total - it else total
- } // ((1-3)-8) = -10
- }
-
- fun reduceRightIndexedList(): Int {
- return numbers.reduceRightIndexed { index, it, total ->
- println("total = $total, it = $it, index = $index")
- if (index.minus(2) >= 0) total - it else total
- } // ((8-3) = 5
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-collections-2/src/test/kotlin/com/baeldung/aggregate/AggregateOperationsUnitTest.kt b/core-kotlin-modules/core-kotlin-collections-2/src/test/kotlin/com/baeldung/aggregate/AggregateOperationsUnitTest.kt
deleted file mode 100644
index a619759b0a..0000000000
--- a/core-kotlin-modules/core-kotlin-collections-2/src/test/kotlin/com/baeldung/aggregate/AggregateOperationsUnitTest.kt
+++ /dev/null
@@ -1,104 +0,0 @@
-package com.baeldung.aggregate
-
-import org.junit.jupiter.api.Test
-import kotlin.test.assertEquals
-
-class AggregateOperationsUnitTest {
-
- private val classUnderTest: AggregateOperations = AggregateOperations()
-
- @Test
- fun whenCountOfList_thenReturnsValue() {
- assertEquals(4, classUnderTest.countList())
- }
-
- @Test
- fun whenSumOfList_thenReturnsTotalValue() {
- assertEquals(27, classUnderTest.sumList())
- }
-
- @Test
- fun whenAverageOfList_thenReturnsValue() {
- assertEquals(6.75, classUnderTest.averageList())
- }
-
- @Test
- fun whenMaximumOfList_thenReturnsMaximumValue() {
- assertEquals(15, classUnderTest.maximumInList())
- }
-
- @Test
- fun whenMinimumOfList_thenReturnsMinimumValue() {
- assertEquals(1, classUnderTest.minimumInList())
- }
-
- @Test
- fun whenMaxByList_thenReturnsLargestValue() {
- assertEquals(3, classUnderTest.maximumByList())
- }
-
- @Test
- fun whenMinByList_thenReturnsSmallestValue() {
- assertEquals(15, classUnderTest.minimumByList())
- }
-
- @Test
- fun whenMaxWithList_thenReturnsLargestValue(){
- assertEquals("Kolkata", classUnderTest.maximumWithList())
- }
-
- @Test
- fun whenMinWithList_thenReturnsSmallestValue(){
- assertEquals("Barcelona", classUnderTest.minimumWithList())
- }
-
- @Test
- fun whenSumByList_thenReturnsIntegerValue(){
- assertEquals(135, classUnderTest.sumByList())
- }
-
- @Test
- fun whenSumByDoubleList_thenReturnsDoubleValue(){
- assertEquals(3.375, classUnderTest.sumByDoubleList())
- }
-
- @Test
- fun whenFoldList_thenReturnsValue(){
- assertEquals(73, classUnderTest.foldList())
- }
-
- @Test
- fun whenFoldRightList_thenReturnsValue(){
- assertEquals(73, classUnderTest.foldRightList())
- }
-
- @Test
- fun whenFoldIndexedList_thenReturnsValue(){
- assertEquals(89, classUnderTest.foldIndexedList())
- }
-
- @Test
- fun whenFoldRightIndexedList_thenReturnsValue(){
- assertEquals(89, classUnderTest.foldRightIndexedList())
- }
-
- @Test
- fun whenReduceList_thenReturnsValue(){
- assertEquals(-25, classUnderTest.reduceList())
- }
-
- @Test
- fun whenReduceRightList_thenReturnsValue(){
- assertEquals(-11, classUnderTest.reduceRightList())
- }
-
- @Test
- fun whenReduceIndexedList_thenReturnsValue(){
- assertEquals(-10, classUnderTest.reduceIndexedList())
- }
-
- @Test
- fun whenReduceRightIndexedList_thenReturnsValue(){
- assertEquals(5, classUnderTest.reduceRightIndexedList())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/README.md b/core-kotlin-modules/core-kotlin-collections/README.md
deleted file mode 100644
index 2ebb748cba..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-## Core Kotlin Collections
-
-This module contains articles about core Kotlin collections.
-
-### Relevant articles:
-
-- [Split a List Into Parts in Kotlin](https://www.baeldung.com/kotlin-split-list-into-parts)
-- [Finding an Element in a List Using Kotlin](https://www.baeldung.com/kotlin-finding-element-in-list)
-- [Overview of Kotlin Collections API](https://www.baeldung.com/kotlin-collections-api)
-- [Converting a List to Map in Kotlin](https://www.baeldung.com/kotlin-list-to-map)
-- [Filtering Kotlin Collections](https://www.baeldung.com/kotlin-filter-collection)
-- [Collection Transformations in Kotlin](https://www.baeldung.com/kotlin-collection-transformations)
-- [Difference between fold and reduce in Kotlin](https://www.baeldung.com/kotlin/fold-vs-reduce)
-- [Guide to Sorting in Kotlin](https://www.baeldung.com/kotlin-sort)
-- [Working With Lists in Kotlin](https://www.baeldung.com/kotlin/lists)
-- [Iterating Collections by Index in Kotlin](https://www.baeldung.com/kotlin/iterating-collections-by-index)
diff --git a/core-kotlin-modules/core-kotlin-collections/pom.xml b/core-kotlin-modules/core-kotlin-collections/pom.xml
deleted file mode 100644
index 52401d267c..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/pom.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
- 4.0.0
- core-kotlin-collections
- core-kotlin-collections
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
- ${kotlin.version}
-
-
- org.apache.commons
- commons-math3
- ${commons-math3.version}
-
-
- org.assertj
- assertj-core
- ${assertj.version}
- test
-
-
- org.jetbrains.kotlin
- kotlin-test
- ${kotlin.version}
- test
-
-
-
-
- 1.3.30
- 3.6.1
- 3.10.0
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/main/kotlin/com/baeldung/index/IndexedIteration.kt b/core-kotlin-modules/core-kotlin-collections/src/main/kotlin/com/baeldung/index/IndexedIteration.kt
deleted file mode 100644
index 07fb595ede..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/main/kotlin/com/baeldung/index/IndexedIteration.kt
+++ /dev/null
@@ -1,33 +0,0 @@
-package com.baeldung.index
-
-fun main() {
-
- // Index only
- val colors = listOf("Red", "Green", "Blue")
- for (i in colors.indices) {
- println(colors[i])
- }
-
- val colorArray = arrayOf("Red", "Green", "Blue")
- for (i in colorArray.indices) {
- println(colorArray[i])
- }
-
- (0 until colors.size).forEach { println(colors[it]) }
- for (i in 0 until colors.size) {
- println(colors[i])
- }
-
- // Index and Value
- colors.forEachIndexed { i, v -> println("The value for index $i is $v") }
- for (indexedValue in colors.withIndex()) {
- println("The value for index ${indexedValue.index} is ${indexedValue.value}")
- }
-
- for ((i, v) in colors.withIndex()) {
- println("The value for index $i is $v")
- }
-
- colors.filterIndexed { i, _ -> i % 2 == 0 }
- colors.filterIndexed { _, v -> v == "RED" }
-}
diff --git a/core-kotlin-modules/core-kotlin-collections/src/main/kotlin/com/baeldung/kotlin/collections/ListExample.kt b/core-kotlin-modules/core-kotlin-collections/src/main/kotlin/com/baeldung/kotlin/collections/ListExample.kt
deleted file mode 100644
index a29eabe623..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/main/kotlin/com/baeldung/kotlin/collections/ListExample.kt
+++ /dev/null
@@ -1,204 +0,0 @@
-package com.baeldung.kotlin.collections
-
-import kotlin.collections.List
-
-class ListExample {
-
- private val countries = listOf("Germany", "India", "Japan", "Brazil", "Australia")
- private val cities = mutableListOf("Berlin", "Calcutta", "Seoul", "Sao Paulo", "Sydney")
-
- fun createList(): List {
- val countryList = listOf("Germany", "India", "Japan", "Brazil")
- return countryList
- }
-
- fun createMutableList(): MutableList {
- val cityList = mutableListOf("Berlin", "Calcutta", "Seoul", "Sao Paulo")
- return cityList
- }
-
- fun iterateUsingForEachLoop(): List {
- val countryLength = mutableListOf()
- countries.forEach { it ->
- print("$it ")
- println(" Length: ${it.length}")
- countryLength.add(it.length)
- }
- return countryLength
- }
-
- fun iterateUsingForLoop(): List {
- val countryLength = mutableListOf()
- for (country in countries) {
- print("$country ")
- println(" Length: ${country.length}")
- countryLength.add(country.length)
- }
- return countryLength
- }
-
- fun iterateUsingForLoopRange(): List {
- val countryLength = mutableListOf()
- for (i in 0 until countries.size) {
- print("${countries[i]} ")
- println(" Length: ${countries[i].length}")
- countryLength.add(countries[i].length)
- }
- return countryLength
- }
-
- fun iterateUsingForEachIndexedLoop(): List {
- val countryLength = mutableListOf()
- countries.forEachIndexed { i, e ->
- println("country[$i] = $e")
- print(" Index: $i")
- println(" Length: ${e.length}")
- countryLength.add(e.length)
- }
- return countryLength
- }
-
- fun iterateUsingListIterator() {
- val iterator = countries.listIterator()
- while (iterator.hasNext()) {
- val country = iterator.next()
- print("$country ")
- }
- println()
-
- while (iterator.hasPrevious()) {
- println("Index: ${iterator.previousIndex()}")
- }
- }
-
- fun iterateUsingIterator() {
- val iterator = cities.iterator()
- iterator.next()
- iterator.remove()
- println(cities)
- }
-
- fun iterateUsingMutableListIterator() {
- val iterator = cities.listIterator(1)
- iterator.next()
- iterator.add("London")
- iterator.next()
- iterator.set("Milan")
- println(cities)
- }
-
- fun retrieveElementsInList(): String {
- println(countries[2])
- return countries[2]
- }
-
- fun retrieveElementsUsingGet(): String {
- println(countries.get(3))
- return countries.get(3)
- }
-
- fun retrieveElementsFirstAndLast(): String? {
- println(countries.first())
- println(countries.last())
- println(countries.first { it.length > 7 })
- println(countries.last { it.startsWith("J") })
- println(countries.firstOrNull { it.length > 8 })
- return countries.firstOrNull { it.length > 8 }
- }
-
- fun retrieveSubList(): List {
- val subList = countries.subList(1, 4)
- println(subList)
- return subList
- }
-
- fun retrieveListSliceUsingIndices(): List {
- val sliceList = countries.slice(1..4)
- println(sliceList)
- return sliceList
- }
-
- fun retrieveListSliceUsingIndicesList(): List {
- val sliceList = countries.slice(listOf(1, 4))
- println(sliceList)
- return sliceList
- }
-
- fun countList(): Int {
- val count = countries.count()
- println(count)
- return count
- }
-
- fun countListUsingPredicate(): Int {
- val count = countries.count { it.length > 5 }
- println(count)
- return count
- }
-
- fun countListUsingProperty(): Int {
- val size = countries.size
- println(size)
- return size
- }
-
- fun addToList(): List {
- cities.add("Barcelona")
- println(cities)
- cities.add(3, "London")
- println(cities)
- cities.addAll(listOf("Singapore", "Moscow"))
- println(cities)
- cities.addAll(2, listOf("Prague", "Amsterdam"))
- println(cities)
- return cities
- }
-
- fun removeFromList(): List {
- cities.remove("Seoul")
- println(cities)
- cities.removeAt(1)
- println(cities)
- return cities
- }
-
- fun replaceFromList(): List {
- cities.set(3, "Prague")
- println(cities)
- cities[4] = "Moscow"
- println(cities)
- cities.fill("Barcelona")
- println(cities)
- return cities
- }
-
- fun sortMutableList(): List {
- cities.sort()
- println(cities)
- cities.sortDescending()
- println(cities)
- return cities
- }
-
- fun sortList(): List {
- val sortedCountries = countries.sorted()
- println("countries = $countries")
- println("sortedCountries = $sortedCountries")
- val sortedCountriesDescending = countries.sortedDescending()
- println("countries = $countries")
- println("sortedCountriesDescending = $sortedCountriesDescending")
- return sortedCountriesDescending
- }
-
- fun checkOneElementInList(): Boolean {
- return countries.contains("Germany")
- }
-
- fun checkOneElementInListUsingOperator(): Boolean {
- return "Spain" in countries
- }
-
- fun checkElementsInList(): Boolean {
- return cities.containsAll(listOf("Calcutta", "Sao Paulo", "Sydney"))
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/main/kotlin/com/baeldung/sorting/SortingExample.kt b/core-kotlin-modules/core-kotlin-collections/src/main/kotlin/com/baeldung/sorting/SortingExample.kt
deleted file mode 100644
index bf3163bc8f..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/main/kotlin/com/baeldung/sorting/SortingExample.kt
+++ /dev/null
@@ -1,42 +0,0 @@
-package com.baeldung.sorting
-
-fun sortMethodUsage() {
- val sortedValues = mutableListOf(1, 2, 7, 6, 5, 6)
- sortedValues.sort()
- println(sortedValues)
-}
-
-fun sortByMethodUsage() {
- val sortedValues = mutableListOf(1 to "a", 2 to "b", 7 to "c", 6 to "d", 5 to "c", 6 to "e")
- sortedValues.sortBy { it.second }
- println(sortedValues)
-}
-
-fun sortWithMethodUsage() {
- val sortedValues = mutableListOf(1 to "a", 2 to "b", 7 to "c", 6 to "d", 5 to "c", 6 to "e")
- sortedValues.sortWith(compareBy({it.second}, {it.first}))
- println(sortedValues)
-}
-
-fun > getSimpleComparator() : Comparator {
- val ascComparator = naturalOrder()
- return ascComparator
-}
-
-fun getComplexComparator() {
- val complexComparator = compareBy>({it.first}, {it.second})
-}
-
-fun nullHandlingUsage() {
- val sortedValues = mutableListOf(1 to "a", 2 to null, 7 to "c", 6 to "d", 5 to "c", 6 to "e")
- sortedValues.sortWith(nullsLast(compareBy { it.second }))
- println(sortedValues)
-}
-
-fun extendedComparatorUsage() {
- val students = mutableListOf(21 to "Helen", 21 to "Tom", 20 to "Jim")
-
- val ageComparator = compareBy> {it.first}
- val ageAndNameComparator = ageComparator.thenByDescending {it.second}
- println(students.sortedWith(ageAndNameComparator))
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/CollectionsTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/CollectionsTest.kt
deleted file mode 100644
index 67fbb29026..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/CollectionsTest.kt
+++ /dev/null
@@ -1,212 +0,0 @@
-package com.baeldung.collections
-
-import org.assertj.core.api.Assertions.assertThat
-import org.junit.Test
-import kotlin.test.assertEquals
-import kotlin.test.assertFalse
-import kotlin.test.assertTrue
-
-class CollectionsTest {
-
- @Test
- fun whenUseDifferentCollections_thenSuccess() {
- val theList = listOf("one", "two", "three")
- assertTrue(theList.contains("two"))
-
- val theMutableList = mutableListOf("one", "two", "three")
- theMutableList.add("four")
- assertTrue(theMutableList.contains("four"))
-
- val theSet = setOf("one", "two", "three")
- assertTrue(theSet.contains("three"))
-
- val theMutableSet = mutableSetOf("one", "two", "three")
- theMutableSet.add("four")
- assertTrue(theMutableSet.contains("four"))
-
- val theMap = mapOf(1 to "one", 2 to "two", 3 to "three")
- assertEquals(theMap[2], "two")
-
- val theMutableMap = mutableMapOf(1 to "one", 2 to "two", 3 to "three")
- theMutableMap[4] = "four"
- assertEquals(theMutableMap[4], "four")
- }
-
- @Test
- fun whenSliceCollection_thenSuccess() {
- val theList = listOf("one", "two", "three")
- val resultList = theList.slice(1..2)
-
- assertEquals(2, resultList.size)
- assertTrue(resultList.contains("two"))
- }
-
- @Test
- fun whenJoinTwoCollections_thenSuccess() {
- val firstList = listOf("one", "two", "three")
- val secondList = listOf("four", "five", "six")
- val resultList = firstList + secondList
-
- assertEquals(6, resultList.size)
- assertTrue(resultList.contains("two"))
- assertTrue(resultList.contains("five"))
- }
-
- @Test
- fun whenFilterNullValues_thenSuccess() {
- val theList = listOf("one", null, "two", null, "three")
- val resultList = theList.filterNotNull()
-
- assertEquals(3, resultList.size)
- }
-
- @Test
- fun whenFilterNonPositiveValues_thenSuccess() {
- val theList = listOf(1, 2, -3, -4, 5, -6)
- val resultList = theList.filter { it > 0 }
- //val resultList = theList.filter{ x -> x > 0}
-
- assertEquals(3, resultList.size)
- assertTrue(resultList.contains(1))
- assertFalse(resultList.contains(-4))
- }
-
- @Test
- fun whenDropFirstItems_thenRemoved() {
- val theList = listOf("one", "two", "three", "four")
- val resultList = theList.drop(2)
-
- assertEquals(2, resultList.size)
- assertFalse(resultList.contains("one"))
- assertFalse(resultList.contains("two"))
- }
-
- @Test
- fun whenDropFirstItemsBasedOnCondition_thenRemoved() {
- val theList = listOf("one", "two", "three", "four")
- val resultList = theList.dropWhile { it.length < 4 }
-
- assertEquals(2, resultList.size)
- assertFalse(resultList.contains("one"))
- assertFalse(resultList.contains("two"))
- }
-
- @Test
- fun whenExcludeItems_thenRemoved() {
- val firstList = listOf("one", "two", "three")
- val secondList = listOf("one", "three")
- val resultList = firstList - secondList
-
- assertEquals(1, resultList.size)
- assertTrue(resultList.contains("two"))
- }
-
- @Test
- fun whenSearchForExistingItem_thenFound() {
- val theList = listOf("one", "two", "three")
-
- assertTrue("two" in theList)
- }
-
- @Test
- fun whenGroupItems_thenSuccess() {
- val theList = listOf(1, 2, 3, 4, 5, 6)
- val resultMap = theList.groupBy { it % 3 }
-
- assertEquals(3, resultMap.size)
- print(resultMap[1])
- assertTrue(resultMap[1]!!.contains(1))
- assertTrue(resultMap[2]!!.contains(5))
- }
-
- @Test
- fun whenApplyFunctionToAllItems_thenSuccess() {
- val theList = listOf(1, 2, 3, 4, 5, 6)
- val resultList = theList.map { it * it }
- print(resultList)
- assertEquals(4, resultList[1])
- assertEquals(9, resultList[2])
- }
-
- @Test
- fun whenApplyMultiOutputFunctionToAllItems_thenSuccess() {
- val theList = listOf("John", "Tom")
- val resultList = theList.flatMap { it.toLowerCase().toList() }
- print(resultList)
- assertEquals(7, resultList.size)
- assertTrue(resultList.contains('j'))
- }
-
- @Test
- fun whenApplyFunctionToAllItemsWithStartingValue_thenSuccess() {
- val theList = listOf(1, 2, 3, 4, 5, 6)
- val finalResult = theList.fold(1000, { oldResult, currentItem -> oldResult + (currentItem * currentItem) })
- print(finalResult)
- assertEquals(1091, finalResult)
- }
-
- @Test
- fun whenApplyingChunked_thenShouldBreakTheCollection() {
- val theList = listOf(1, 2, 3, 4, 5)
- val chunked = theList.chunked(2)
-
- assertThat(chunked.size).isEqualTo(3)
- assertThat(chunked.first()).contains(1, 2)
- assertThat(chunked[1]).contains(3, 4)
- assertThat(chunked.last()).contains(5)
- }
-
- @Test
- fun whenApplyingChunkedWithTransformation_thenShouldBreakTheCollection() {
- val theList = listOf(1, 2, 3, 4, 5)
- val chunked = theList.chunked(3) { it.joinToString(", ") }
-
- assertThat(chunked.size).isEqualTo(2)
- assertThat(chunked.first()).isEqualTo("1, 2, 3")
- assertThat(chunked.last()).isEqualTo("4, 5")
- }
-
- @Test
- fun whenApplyingWindowed_thenShouldCreateSlidingWindowsOfElements() {
- val theList = (1..6).toList()
- val windowed = theList.windowed(3)
-
- assertThat(windowed.size).isEqualTo(4)
- assertThat(windowed.first()).contains(1, 2, 3)
- assertThat(windowed[1]).contains(2, 3, 4)
- assertThat(windowed[2]).contains(3, 4, 5)
- assertThat(windowed.last()).contains(4, 5, 6)
- }
-
- @Test
- fun whenApplyingWindowedWithTwoSteps_thenShouldCreateSlidingWindowsOfElements() {
- val theList = (1..6).toList()
- val windowed = theList.windowed(size = 3, step = 2)
-
- assertThat(windowed.size).isEqualTo(2)
- assertThat(windowed.first()).contains(1, 2, 3)
- assertThat(windowed.last()).contains(3, 4, 5)
- }
-
- @Test
- fun whenApplyingPartialWindowedWithTwoSteps_thenShouldCreateSlidingWindowsOfElements() {
- val theList = (1..6).toList()
- val windowed = theList.windowed(size = 3, step = 2, partialWindows = true)
-
- assertThat(windowed.size).isEqualTo(3)
- assertThat(windowed.first()).contains(1, 2, 3)
- assertThat(windowed[1]).contains(3, 4, 5)
- assertThat(windowed.last()).contains(5, 6)
- }
-
- @Test
- fun whenApplyingTransformingWindows_thenShouldCreateSlidingWindowsOfElements() {
- val theList = (1..6).toList()
- val windowed = theList.windowed(size = 3, step = 2, partialWindows = true) { it.joinToString(", ") }
-
- assertThat(windowed.size).isEqualTo(3)
- assertThat(windowed.first()).isEqualTo("1, 2, 3")
- assertThat(windowed[1]).isEqualTo("3, 4, 5")
- assertThat(windowed.last()).isEqualTo("5, 6")
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/AssociateUnitTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/AssociateUnitTest.kt
deleted file mode 100644
index 68f7040c4c..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/AssociateUnitTest.kt
+++ /dev/null
@@ -1,48 +0,0 @@
-package com.baeldung.collections.transformations
-
-import org.junit.Assert.assertEquals
-import org.junit.Test
-
-class AssociateUnitTest {
- @Test
- fun testToMap() {
- val input = listOf(Pair("one", 1), Pair("two", 2))
- val map = input.toMap()
- assertEquals(mapOf("one" to 1, "two" to 2), map)
- }
-
- @Test
- fun testAssociateWith() {
- val inputs = listOf("Hi", "there")
- val map = inputs.associateWith { k -> k.length }
- assertEquals(mapOf("Hi" to 2, "there" to 5), map)
- }
-
- @Test
- fun testAssociateBy() {
- val inputs = listOf("Hi", "there")
- val map = inputs.associateBy { v -> v.length }
- assertEquals(mapOf(2 to "Hi", 5 to "there"), map)
- }
-
- @Test
- fun testAssociate() {
- val inputs = listOf("Hi", "there")
- val map = inputs.associate { e -> Pair(e.toUpperCase(), e.reversed()) }
- assertEquals(mapOf("HI" to "iH", "THERE" to "ereht"), map)
- }
-
- @Test
- fun testAssociateByDuplicateKeys() {
- val inputs = listOf("one", "two")
- val map = inputs.associateBy { v -> v.length }
- assertEquals(mapOf(3 to "two"), map)
- }
-
- @Test
- fun testGroupBy() {
- val inputs = listOf("one", "two", "three")
- val map = inputs.groupBy { v -> v.length }
- assertEquals(mapOf(3 to listOf("one", "two"), 5 to listOf("three")), map)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/FilterUnitTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/FilterUnitTest.kt
deleted file mode 100644
index 591577e4f3..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/FilterUnitTest.kt
+++ /dev/null
@@ -1,43 +0,0 @@
-package com.baeldung.collections.transformations
-
-import org.junit.Assert.assertEquals
-import org.junit.Test
-
-class FilterUnitTest {
- @Test
- fun testFilterWithLambda() {
- val input = listOf(1, 2, 3, 4, 5)
- val filtered = input.filter { it <= 3 }
- assertEquals(listOf(1, 2, 3), filtered)
- }
-
- @Test
- fun testFilterWithMethodReference() {
- val input = listOf(1, 2, 3, 4, 5)
- val filtered = input.filter(this::isSmall)
- assertEquals(listOf(1, 2, 3), filtered)
- }
-
- @Test
- fun testFilterNotWithMethodReference() {
- val input = listOf(1, 2, 3, 4, 5)
- val filtered = input.filterNot(this::isSmall)
- assertEquals(listOf(4, 5), filtered)
- }
-
- @Test
- fun testFilterIndexed() {
- val input = listOf(5, 4, 3, 2, 1)
- val filtered = input.filterIndexed { index, element -> index < 3 }
- assertEquals(listOf(5, 4, 3), filtered)
- }
-
- @Test
- fun testFilterNotNull() {
- val nullable: List = listOf("Hello", null, "World")
- val nonnull: List = nullable.filterNotNull()
- assertEquals(listOf("Hello", "World"), nonnull)
- }
-
- private fun isSmall(i: Int) = i <= 3
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/FlattenUnitTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/FlattenUnitTest.kt
deleted file mode 100644
index 69fbceb8e3..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/FlattenUnitTest.kt
+++ /dev/null
@@ -1,21 +0,0 @@
-package com.baeldung.collections.transformations
-
-import org.junit.Assert.assertEquals
-import org.junit.Test
-
-class FlattenUnitTest {
- @Test
- fun testFlatten() {
- val inputs = listOf("one", "two", "three")
- val characters = inputs.map(String::toList)
- val flattened = characters.flatten();
- assertEquals(listOf('o', 'n', 'e', 't', 'w', 'o', 't', 'h', 'r', 'e', 'e'), flattened)
- }
-
- @Test
- fun testFlatMap() {
- val inputs = listOf("one", "two", "three")
- val characters = inputs.flatMap(String::toList)
- assertEquals(listOf('o', 'n', 'e', 't', 'w', 'o', 't', 'h', 'r', 'e', 'e'), characters)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/JoinToUnitTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/JoinToUnitTest.kt
deleted file mode 100644
index 2ac0cdca50..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/JoinToUnitTest.kt
+++ /dev/null
@@ -1,46 +0,0 @@
-package com.baeldung.collections.transformations
-
-import org.junit.Assert.assertEquals
-import org.junit.Test
-
-class JoinToUnitTest {
- @Test
- fun testJoinToString() {
- val inputs = listOf("Jan", "Feb", "Mar", "Apr", "May")
-
- val simpleString = inputs.joinToString()
- assertEquals("Jan, Feb, Mar, Apr, May", simpleString)
-
- val detailedString = inputs.joinToString(separator = ",", prefix="Months: ", postfix=".")
- assertEquals("Months: Jan,Feb,Mar,Apr,May.", detailedString)
- }
-
- @Test
- fun testJoinToStringLimits() {
- val inputs = listOf("Jan", "Feb", "Mar", "Apr", "May")
-
- val simpleString = inputs.joinToString(limit = 3)
- assertEquals("Jan, Feb, Mar, ...", simpleString)
- }
-
- @Test
- fun testJoinToStringTransform() {
- val inputs = listOf("Jan", "Feb", "Mar", "Apr", "May")
-
- val simpleString = inputs.joinToString(transform = String::toUpperCase)
- assertEquals("JAN, FEB, MAR, APR, MAY", simpleString)
- }
-
- @Test
- fun testJoinTo() {
- val inputs = listOf("Jan", "Feb", "Mar", "Apr", "May")
-
- val output = StringBuilder()
- output.append("My ")
- .append(inputs.size)
- .append(" elements: ")
- inputs.joinTo(output)
-
- assertEquals("My 5 elements: Jan, Feb, Mar, Apr, May", output.toString())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/MapUnitTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/MapUnitTest.kt
deleted file mode 100644
index e22fcbe903..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/MapUnitTest.kt
+++ /dev/null
@@ -1,53 +0,0 @@
-package com.baeldung.collections.transformations
-
-import org.junit.Assert.assertEquals
-import org.junit.Test
-
-class MapUnitTest {
- @Test
- fun testMapWithLambda() {
- val input = listOf("one", "two", "three")
-
- val reversed = input.map { it.reversed() }
- assertEquals(listOf("eno", "owt", "eerht"), reversed)
-
- val lengths = input.map { it.length }
- assertEquals(listOf(3, 3, 5), lengths)
- }
-
- @Test
- fun testMapIndexed() {
- val input = listOf(3, 2, 1)
- val result = input.mapIndexed { index, value -> index * value }
- assertEquals(listOf(0, 2, 2), result)
- }
-
- @Test
- fun testMapNotNull() {
- val input = listOf(1, 2, 3, 4, 5)
- val smallSquares = input.mapNotNull {
- if (it <= 3) {
- it * it
- } else {
- null
- }
- }
- assertEquals(listOf(1, 4, 9), smallSquares)
- }
-
- @Test
- fun mapMapKeys() {
- val inputs = mapOf("one" to 1, "two" to 2, "three" to 3)
-
- val uppercases = inputs.mapKeys { it.key.toUpperCase() }
- assertEquals(mapOf("ONE" to 1, "TWO" to 2, "THREE" to 3), uppercases)
- }
-
- @Test
- fun mapMapValues() {
- val inputs = mapOf("one" to 1, "two" to 2, "three" to 3)
-
- val squares = inputs.mapValues { it.value * it.value }
- assertEquals(mapOf("one" to 1, "two" to 4, "three" to 9), squares)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/ReduceUnitTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/ReduceUnitTest.kt
deleted file mode 100644
index 6821b7cdb9..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/ReduceUnitTest.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.baeldung.collections.transformations
-
-import org.junit.Assert.assertEquals
-import org.junit.Test
-
-class ReduceUnitTest {
- @Test
- fun testJoinToStringAsReduce() {
- val inputs = listOf("Jan", "Feb", "Mar", "Apr", "May")
-
- val result = inputs.reduce { acc, next -> "$acc, $next" }
- assertEquals("Jan, Feb, Mar, Apr, May", result)
- }
-
- @Test
- fun testFoldToLength() {
- val inputs = listOf("Jan", "Feb", "Mar", "Apr", "May")
-
- val result = inputs.fold(0) { acc, next -> acc + next.length }
- assertEquals(15, result)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/ZipUnitTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/ZipUnitTest.kt
deleted file mode 100644
index 66aeeceef4..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/collections/transformations/ZipUnitTest.kt
+++ /dev/null
@@ -1,34 +0,0 @@
-package com.baeldung.collections.transformations
-
-import org.junit.Assert.assertEquals
-import org.junit.Test
-
-class ZipUnitTest {
- @Test
- fun testZip() {
- val left = listOf("one", "two", "three")
- val right = listOf(1, 2, 3)
- val zipped = left.zip(right)
- assertEquals (listOf(Pair("one", 1), Pair("two", 2), Pair("three", 3)), zipped)
- }
-
- @Test
- fun testZipShort() {
- val left = listOf("one", "two")
- val right = listOf(1, 2, 3)
- val zipped = left.zip(right)
- assertEquals (listOf(Pair("one", 1), Pair("two", 2)), zipped)
- }
-
- @Test
- fun testUnzip() {
- val left = listOf("one", "two", "three")
- val right = listOf(1, 2, 3)
- val zipped = left.zip(right)
-
- val (newLeft, newRight) = zipped.unzip()
- assertEquals(left, newLeft)
- assertEquals(right, newRight)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/ChunkedTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/ChunkedTest.kt
deleted file mode 100644
index 20797cc633..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/ChunkedTest.kt
+++ /dev/null
@@ -1,39 +0,0 @@
-package com.baeldung.filter
-
-import org.junit.jupiter.api.Assertions.assertIterableEquals
-import org.junit.jupiter.api.Test
-
-internal class ChunkedTest {
-
- @Test
- fun givenDNAFragmentString_whenChunking_thenProduceListOfChunks() {
- val dnaFragment = "ATTCGCGGCCGCCAA"
-
- val fragments = dnaFragment.chunked(3)
-
- assertIterableEquals(listOf("ATT", "CGC", "GGC", "CGC", "CAA"), fragments)
- }
-
- @Test
- fun givenDNAString_whenChunkingWithTransformer_thenProduceTransformedList() {
- val codonTable = mapOf("ATT" to "Isoleucine", "CAA" to "Glutamine", "CGC" to "Arginine", "GGC" to "Glycine")
- val dnaFragment = "ATTCGCGGCCGCCAA"
-
- val proteins = dnaFragment.chunked(3) { codon ->
- codonTable[codon.toString()] ?: error("Unknown codon")
- }
-
- assertIterableEquals(listOf("Isoleucine", "Arginine", "Glycine", "Arginine", "Glutamine"), proteins)
- }
-
- @Test
- fun givenListOfValues_whenChunking_thenProduceListOfArrays() {
- val whole = listOf(1, 4, 7, 4753, 2, 34, 62, 76, 5868, 0)
- val chunks = whole.chunked(6)
-
- val expected = listOf(listOf(1, 4, 7, 4753, 2, 34), listOf(62, 76, 5868, 0))
-
- assertIterableEquals(expected, chunks)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/DistinctTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/DistinctTest.kt
deleted file mode 100644
index 4cc6f647e1..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/DistinctTest.kt
+++ /dev/null
@@ -1,71 +0,0 @@
-package com.baeldung.filter
-
-import org.junit.jupiter.api.Assertions.assertIterableEquals
-import org.junit.jupiter.api.Test
-
-internal class DistinctTest {
- data class SmallClass(val key: String, val num: Int)
-
- @Test
- fun whenApplyingDistinct_thenReturnListOfNoDuplicateValues() {
- val array = arrayOf(1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 5, 6, 7, 8, 9)
- val result = array.distinct()
- val expected = listOf(1, 2, 3, 4, 5, 6, 7, 8, 9)
-
- assertIterableEquals(expected, result)
- }
-
- @Test
- fun givenArrayOfClassObjects_whenApplyingDistinctOnClassProperty_thenReturnListDistinctOnThatValue() {
-
- val original = arrayOf(
- SmallClass("key1", 1),
- SmallClass("key2", 2),
- SmallClass("key3", 3),
- SmallClass("key4", 3),
- SmallClass("er", 9),
- SmallClass("er", 10),
- SmallClass("er", 11))
-
- val actual = original.distinctBy { it.key }
-
- val expected = listOf(
- SmallClass("key1", 1),
- SmallClass("key2", 2),
- SmallClass("key3", 3),
- SmallClass("key4", 3),
- SmallClass("er", 9))
-
-
- assertIterableEquals(expected, actual)
- }
-
- @Test
- fun givenArrayOfClassObjects_whenApplyingComplicatedSelector_thenReturnFirstElementToMatchEachSelectorValue() {
- val array = arrayOf(
- SmallClass("key1", 1),
- SmallClass("key2", 2),
- SmallClass("key3", 3),
- SmallClass("key4", 3),
- SmallClass("er", 9),
- SmallClass("er", 10),
- SmallClass("er", 11),
- SmallClass("er", 11),
- SmallClass("er", 91),
- SmallClass("blob", 22),
- SmallClass("dob", 27),
- SmallClass("high", 201_434_314))
-
- val actual = array.distinctBy { Math.floor(it.num / 10.0) }
-
- val expected = listOf(
- SmallClass("key1", 1),
- SmallClass("er", 10),
- SmallClass("er", 91),
- SmallClass("blob", 22),
- SmallClass("high", 201_434_314))
-
- assertIterableEquals(expected, actual)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/DropTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/DropTest.kt
deleted file mode 100644
index 7c2685f39b..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/DropTest.kt
+++ /dev/null
@@ -1,53 +0,0 @@
-package com.baeldung.filter
-
-import org.junit.jupiter.api.Assertions.assertIterableEquals
-import org.junit.jupiter.api.Test
-
-internal class DropTest {
-
- @Test
- fun whenDroppingFirstTwoItemsOfArray_thenTwoLess() {
- val array = arrayOf(1, 2, 3, 4)
- val result = array.drop(2)
- val expected = listOf(3, 4)
-
- assertIterableEquals(expected, result)
- }
-
- @Test
- fun whenDroppingMoreItemsOfArray_thenEmptyList() {
- val array = arrayOf(1, 2, 3, 4)
- val result = array.drop(5)
- val expected = listOf()
-
- assertIterableEquals(expected, result)
- }
-
- @Test
- fun givenArray_whenDroppingLastElement_thenReturnListWithoutLastElement() {
- val array = arrayOf("1", "2", "3", "4")
- val result = array.dropLast(1)
- val expected = listOf("1", "2", "3")
-
- assertIterableEquals(expected, result)
- }
-
- @Test
- fun givenArrayOfFloats_whenDroppingLastUntilPredicateIsFalse_thenReturnSubsetListOfFloats() {
- val array = arrayOf(1f, 1f, 1f, 1f, 1f, 2f, 1f, 1f, 1f)
- val result = array.dropLastWhile { it == 1f }
- val expected = listOf(1f, 1f, 1f, 1f, 1f, 2f)
-
- assertIterableEquals(expected, result)
- }
-
- @Test
- fun givenList_whenDroppingMoreThanAvailable_thenThrowException() {
- val list = listOf('a', 'e', 'i', 'o', 'u')
- val result = list.drop(6)
- val expected: List = listOf()
-
- assertIterableEquals(expected, result)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/FilterTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/FilterTest.kt
deleted file mode 100644
index efe6354f25..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/FilterTest.kt
+++ /dev/null
@@ -1,39 +0,0 @@
-package com.baeldung.filter
-
-import org.apache.commons.math3.primes.Primes
-import org.junit.jupiter.api.Assertions.assertIterableEquals
-import org.junit.jupiter.api.Test
-import kotlin.test.assertTrue
-
-internal class FilterTest {
-
- @Test
- fun givenAscendingValueMap_whenFilteringOnValue_ThenReturnSubsetOfMap() {
- val originalMap = mapOf("key1" to 1, "key2" to 2, "key3" to 3)
- val filteredMap = originalMap.filter { it.value < 2 }
- val expectedMap = mapOf("key1" to 1)
-
- assertTrue { expectedMap == filteredMap }
- }
-
- @Test
- fun givenSeveralCollections_whenFilteringToAccumulativeList_thenListContainsAllContents() {
- val array1 = arrayOf(90, 92, 93, 94, 92, 95, 93)
- val array2 = sequenceOf(51, 31, 83, 674_506_111, 256_203_161, 15_485_863)
- val list1 = listOf(0, 1, 2, 3, 4, 5, 6, 7, 8, 9)
- val primes = mutableListOf()
-
- val expected = listOf(2, 3, 5, 7, 31, 83, 15_485_863, 256_203_161, 674_506_111)
-
- val primeCheck = { num: Int -> Primes.isPrime(num) }
-
- array1.filterTo(primes, primeCheck)
- list1.filterTo(primes, primeCheck)
- array2.filterTo(primes, primeCheck)
-
- primes.sort()
-
- assertIterableEquals(expected, primes)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/SliceTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/SliceTest.kt
deleted file mode 100644
index 793fe68427..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/SliceTest.kt
+++ /dev/null
@@ -1,45 +0,0 @@
-package com.baeldung.filter
-
-import org.junit.jupiter.api.Assertions.assertIterableEquals
-import org.junit.jupiter.api.Assertions.assertThrows
-import org.junit.jupiter.api.Test
-
-internal class SliceTest {
-
- @Test
- fun whenSlicingAnArrayWithDotRange_ThenListEqualsTheSlice() {
- val original = arrayOf(1, 2, 3, 2, 1)
- val actual = original.slice(1..3)
- val expected = listOf(2, 3, 2)
-
- assertIterableEquals(expected, actual)
- }
-
- @Test
- fun whenSlicingAnArrayWithDownToRange_thenListMadeUpOfReverseSlice() {
- val original = arrayOf(1, 2, 3, 2, 1)
- val actual = original.slice(3 downTo 0)
- val expected = listOf(2, 3, 2, 1)
-
- assertIterableEquals(expected, actual)
- }
-
-// From the 1.3 version of Kotlin APIs, slice doesn't return array of nulls but throw IndexOutOfBoundsException
-// @Test
-// fun whenSlicingBeyondTheRangeOfTheArray_thenContainManyNulls() {
-// val original = arrayOf(12, 3, 34, 4)
-// val actual = original.slice(3..8)
-// val expected = listOf(4, null, null, null, null, null)
-//
-// assertIterableEquals(expected, actual)
-// }
-
- @Test
- fun whenSlicingBeyondRangeOfArrayWithStep_thenOutOfBoundsException() {
- assertThrows(ArrayIndexOutOfBoundsException::class.java) {
- val original = arrayOf(12, 3, 34, 4)
- original.slice(3..8 step 2)
- }
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/TakeTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/TakeTest.kt
deleted file mode 100644
index d021177de8..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/filter/TakeTest.kt
+++ /dev/null
@@ -1,38 +0,0 @@
-package com.baeldung.filter
-
-import org.junit.jupiter.api.Assertions.assertIterableEquals
-import org.junit.jupiter.api.Test
-
-internal class TakeTest {
-
- @Test
- fun `given array of alternating types, when predicating on 'is String', then produce list of array up until predicate is false`() {
- val originalArray = arrayOf("val1", 2, "val3", 4, "val5", 6)
- val actualList = originalArray.takeWhile { it is String }
- val expectedList = listOf("val1")
-
- assertIterableEquals(expectedList, actualList)
- }
-
- @Test
- fun `given array of alternating types, when taking 4 items, then produce list of first 4 items`() {
- val originalArray = arrayOf("val1", 2, "val3", 4, "val5", 6)
- val actualList = originalArray.take(4)
- val expectedList = listOf("val1", 2, "val3", 4)
-
- println(originalArray.drop(4))
- println(actualList)
-
- assertIterableEquals(expectedList, actualList)
- }
-
- @Test
- fun `when taking more items than available, then return all elements`() {
- val originalArray = arrayOf(1, 2)
- val actual = originalArray.take(10)
- val expected = listOf(1, 2)
-
- assertIterableEquals(expected, actual)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/findelement/FindAnElementInAListUnitTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/findelement/FindAnElementInAListUnitTest.kt
deleted file mode 100644
index 52e7e2a5b5..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/findelement/FindAnElementInAListUnitTest.kt
+++ /dev/null
@@ -1,34 +0,0 @@
-package com.baeldung.findelement
-
-import org.junit.jupiter.api.Test
-import kotlin.test.assertEquals
-import kotlin.test.assertFalse
-import kotlin.test.assertTrue
-
-class FindAnElementInAListUnitTest {
-
- var batmans: List = listOf("Christian Bale", "Michael Keaton", "Ben Affleck", "George Clooney")
-
- @Test
- fun whenFindASpecificItem_thenItemIsReturned() {
- //Returns the first element matching the given predicate, or null if no such element was found.
- val theFirstBatman = batmans.find { actor -> "Michael Keaton".equals(actor) }
- assertEquals(theFirstBatman, "Michael Keaton")
- }
-
- @Test
- fun whenFilterWithPredicate_thenMatchingItemsAreReturned() {
- //Returns a list containing only elements matching the given predicate.
- val theCoolestBatmans = batmans.filter { actor -> actor.contains("a") }
- assertTrue(theCoolestBatmans.contains("Christian Bale") && theCoolestBatmans.contains("Michael Keaton"))
- }
-
- @Test
- fun whenFilterNotWithPredicate_thenMatchingItemsAreReturned() {
- //Returns a list containing only elements not matching the given predicate.
- val theMehBatmans = batmans.filterNot { actor -> actor.contains("a") }
- assertFalse(theMehBatmans.contains("Christian Bale") && theMehBatmans.contains("Michael Keaton"))
- assertTrue(theMehBatmans.contains("Ben Affleck") && theMehBatmans.contains("George Clooney"))
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/foldvsreduce/FoldAndReduceTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/foldvsreduce/FoldAndReduceTest.kt
deleted file mode 100644
index 7b263914c6..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/foldvsreduce/FoldAndReduceTest.kt
+++ /dev/null
@@ -1,59 +0,0 @@
-package com.baeldung.foldvsreduce
-
-import org.junit.Test
-import org.junit.jupiter.api.assertThrows
-import java.lang.RuntimeException
-import kotlin.test.assertEquals
-
-class FoldAndReduceTest {
-
- @Test
- fun testReduceLimitations() {
- val numbers: List = listOf(1, 2, 3)
- val sum: Number = numbers.reduce { acc, next -> acc + next }
- assertEquals(6, sum)
-
- val emptyList = listOf()
- assertThrows { emptyList.reduce { acc, next -> acc + next } }
-
- // doesn't compile
- // val sum = numbers.reduce { acc, next -> acc.toLong() + next.toLong()}
- }
-
- @Test
- fun testFold() {
-
- val numbers: List = listOf(1, 2, 3)
- val sum: Int = numbers.fold(0, { acc, next -> acc + next })
- assertEquals(6, sum)
-
- //change result type
- val sumLong: Long = numbers.fold(0L, { acc, next -> acc + next.toLong() })
- assertEquals(6L, sumLong)
-
- val emptyList = listOf()
- val emptySum = emptyList.fold(0, { acc, next -> acc + next })
- assertEquals(0, emptySum)
-
- //power of changing result type
- val (even, odd) = numbers.fold(Pair(listOf(), listOf()), { acc, next ->
- if (next % 2 == 0) Pair(acc.first + next, acc.second)
- else Pair(acc.first, acc.second + next)
- })
-
- assertEquals(listOf(2), even)
- assertEquals(listOf(1, 3), odd)
- }
-
- @Test
- fun testVariationsOfFold() {
- val numbers = listOf(1, 2, 3)
- val reversed = numbers.foldRight(listOf(), { next, acc -> acc + next})
- assertEquals(listOf(3,2,1), reversed)
-
- val reversedIndexes = numbers.foldRightIndexed(listOf(), { i, _, acc -> acc + i })
- assertEquals(listOf(2,1,0), reversedIndexes)
- }
-
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/kotlin/collections/ListExampleUnitTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/kotlin/collections/ListExampleUnitTest.kt
deleted file mode 100644
index 71fe3bf1e0..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/kotlin/collections/ListExampleUnitTest.kt
+++ /dev/null
@@ -1,126 +0,0 @@
-package com.baeldung.kotlin.collections
-
-import org.junit.jupiter.api.Test
-import org.junit.jupiter.api.Assertions.assertEquals
-import kotlin.test.assertFalse
-import kotlin.test.assertTrue
-
-class ListExampleUnitTest {
-
- private val classUnderTest: ListExample = ListExample()
-
- @Test
- fun whenListIsCreated_thenContainsElements() {
- assertTrue(classUnderTest.createList().contains("India"))
- assertTrue(classUnderTest.createMutableList().contains("Seoul"))
- }
-
- @Test
- fun whenIterateUsingForEachLoop_thenSuccess() {
- assertEquals(7, classUnderTest.iterateUsingForEachLoop()[0])
- }
-
- @Test
- fun whenIterateUsingForLoop_thenSuccess() {
- assertEquals(5, classUnderTest.iterateUsingForLoop()[1])
- }
-
- @Test
- fun whenIterateUsingForLoopRange_thenSuccess() {
- assertEquals(6, classUnderTest.iterateUsingForLoopRange()[3])
- }
-
- @Test
- fun whenIterateUsingForEachIndexedLoop_thenSuccess() {
- assertEquals(9, classUnderTest.iterateUsingForEachIndexedLoop()[4])
- }
-
- @Test
- fun whenRetrieveElementsInList_thenSuccess() {
- assertEquals("Japan", classUnderTest.retrieveElementsInList())
- }
-
- @Test
- fun whenRetrieveElementsUsingGet_thenSuccess() {
- assertEquals("Brazil", classUnderTest.retrieveElementsUsingGet())
- }
-
- @Test
- fun whenRetrieveElementsFirstAndLast_thenSuccess() {
- assertEquals("Australia", classUnderTest.retrieveElementsFirstAndLast())
- }
-
- @Test
- fun whenRetrieveSubList_thenSuccess() {
- assertEquals(3, classUnderTest.retrieveSubList().size)
- }
-
- @Test
- fun whenRetrieveListSliceUsingIndices_thenSuccess() {
- assertEquals(4, classUnderTest.retrieveListSliceUsingIndices().size)
- }
-
- @Test
- fun whenRetrieveListSliceUsingIndicesList_thenSuccess() {
- assertEquals(2, classUnderTest.retrieveListSliceUsingIndicesList().size)
- }
-
- @Test
- fun whenCountList_thenSuccess() {
- assertEquals(5, classUnderTest.countList())
- }
-
- @Test
- fun whenCountListUsingPredicate_thenSuccess() {
- assertEquals(3, classUnderTest.countListUsingPredicate())
- }
-
- @Test
- fun whenCountListUsingProperty_thenSuccess() {
- assertEquals(5, classUnderTest.countListUsingProperty())
- }
-
- @Test
- fun whenAddToList_thenSuccess() {
- assertEquals(11, classUnderTest.addToList().count())
- }
-
- @Test
- fun whenRemoveFromList_thenSuccess() {
- val list = classUnderTest.removeFromList()
- assertEquals(3, list.size)
- assertEquals("Sao Paulo", list[1])
- }
-
- @Test
- fun whenReplaceFromList_thenSuccess() {
- val list = classUnderTest.replaceFromList()
- assertEquals(5, list.size)
- assertEquals("Barcelona", list[1])
- }
-
- @Test
- fun whenSortMutableList_thenSuccess() {
- assertEquals("Sydney", classUnderTest.sortMutableList()[0])
- }
-
- @Test
- fun whenSortList_thenSuccess() {
- assertEquals("India", classUnderTest.sortList()[1])
- }
-
- @Test
- fun whenCheckOneElementInList_thenSuccess() {
- assertTrue(classUnderTest.checkOneElementInList())
- }
-
- @Test
- fun whenCheckOneElementInListUsingOperator_thenSuccess() {
- assertFalse(classUnderTest.checkOneElementInListUsingOperator())
- }
-
- @Test
- fun whenCheckElementsInList_thenSuccess() {
- assertTrue(classUnderTest.checkElementsInList())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/listtomap/ListToMapTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/listtomap/ListToMapTest.kt
deleted file mode 100644
index 93e4f11fdf..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/listtomap/ListToMapTest.kt
+++ /dev/null
@@ -1,74 +0,0 @@
-package com.baeldung.listtomap
-
-import org.junit.Test
-import kotlin.test.assertTrue
-
-class ListToMapTest {
-
- val user1 = User("John", 18, listOf("Hiking, Swimming"))
- val user2 = User("Sara", 25, listOf("Chess, Board Games"))
- val user3 = User("Dave", 34, listOf("Games, Racing sports"))
- val user4 = User("John", 30, listOf("Reading, Poker"))
-
- @Test
- fun givenList_whenConvertToMap_thenResult() {
- val myList = listOf(user1, user2, user3)
- val myMap = myList.map { it.name to it.age }.toMap()
-
- assertTrue(myMap.get("John") == 18)
- }
-
- @Test
- fun givenList_whenAssociatedBy_thenResult() {
- val myList = listOf(user1, user2, user3)
- val myMap = myList.associateBy({ it.name }, { it.hobbies })
-
- assertTrue(myMap.get("John")!!.contains("Hiking, Swimming"))
- }
-
- @Test
- fun givenStringList_whenConvertToMap_thenResult() {
- val myList = listOf("a", "b", "c")
- val myMap = myList.map { it to it }.toMap()
-
- assertTrue(myMap.get("a") == "a")
- }
-
- @Test
- fun givenStringList_whenAssociate_thenResult() {
- val myList = listOf("a", "b", "c", "c", "b")
- val myMap = myList.associate{ it to it }
-
- assertTrue(myMap.get("a") == "a")
- }
-
- @Test
- fun givenStringList_whenAssociateTo_thenResult() {
- val myList = listOf("a", "b", "c", "c", "b")
- val myMap = mutableMapOf()
-
- myList.associateTo(myMap) {it to it}
-
- assertTrue(myMap.get("a") == "a")
- }
-
- @Test
- fun givenStringList_whenAssociateByTo_thenResult() {
- val myList = listOf(user1, user2, user3, user4)
- val myMap = mutableMapOf()
-
- myList.associateByTo(myMap, {it.name}, {it.age})
-
- assertTrue(myMap.get("Dave") == 34)
- }
-
- @Test
- fun givenStringList_whenAssociateByToUser_thenResult() {
- val myList = listOf(user1, user2, user3, user4)
- val myMap = mutableMapOf()
-
- myList.associateByTo(myMap) {it.name}
-
- assertTrue(myMap.get("Dave")!!.age == 34)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/listtomap/User.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/listtomap/User.kt
deleted file mode 100644
index 89eb9ac701..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/listtomap/User.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.listtomap
-
-data class User(val name: String, val age: Int, val hobbies: List)
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/sorting/SortingExampleKtTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/sorting/SortingExampleKtTest.kt
deleted file mode 100644
index 7ac0efa4ef..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/sorting/SortingExampleKtTest.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.baeldung.sorting
-
-import org.junit.jupiter.api.Assertions.assertTrue
-import org.junit.jupiter.api.Test
-
-class SortingExampleKtTest {
-
- @Test
- fun naturalOrderComparator_ShouldBeAscendingTest() {
- val resultingList = listOf(1, 5, 6, 6, 2, 3, 4).sortedWith(getSimpleComparator())
- assertTrue(listOf(1, 2, 3, 4, 5, 6, 6) == resultingList)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/splitlist/SplitListIntoPartsTest.kt b/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/splitlist/SplitListIntoPartsTest.kt
deleted file mode 100644
index 627c7eaacf..0000000000
--- a/core-kotlin-modules/core-kotlin-collections/src/test/kotlin/com/baeldung/splitlist/SplitListIntoPartsTest.kt
+++ /dev/null
@@ -1,99 +0,0 @@
-package com.baeldung.splitlist
-
-import org.junit.jupiter.api.Test
-import kotlin.test.assertEquals
-
-class SplitListIntoPartsTest {
- private val evenList = listOf(0, "a", 1, "b", 2, "c");
-
- private val unevenList = listOf(0, "a", 1, "b", 2, "c", 3);
-
- private fun verifyList(resultList: List>) {
- assertEquals("[[0, a], [1, b], [2, c]]", resultList.toString())
- }
-
- private fun verifyPartialList(resultList: List>) {
- assertEquals("[[0, a], [1, b], [2, c], [3]]", resultList.toString())
- }
-
- @Test
- fun whenChunked_thenListIsSplit() {
- val resultList = evenList.chunked(2)
- verifyList(resultList)
- }
-
- @Test
- fun whenUnevenChunked_thenListIsSplit() {
- val resultList = unevenList.chunked(2)
- verifyPartialList(resultList)
- }
-
- @Test
- fun whenWindowed_thenListIsSplit() {
- val resultList = evenList.windowed(2, 2)
- verifyList(resultList)
- }
-
- @Test
- fun whenUnevenPartialWindowed_thenListIsSplit() {
- val resultList = unevenList.windowed(2, 2, partialWindows = true)
- verifyPartialList(resultList)
- }
-
- @Test
- fun whenUnevenWindowed_thenListIsSplit() {
- val resultList = unevenList.windowed(2, 2, partialWindows = false)
- verifyList(resultList)
- }
-
- @Test
- fun whenGroupByWithAscendingNumbers_thenListIsSplit() {
- val numberList = listOf(1, 2, 3, 4, 5, 6);
- val resultList = numberList.groupBy { (it + 1) / 2 }
- assertEquals("[[1, 2], [3, 4], [5, 6]]", resultList.values.toString())
- assertEquals("[1, 2, 3]", resultList.keys.toString())
- }
-
- @Test
- fun whenGroupByWithAscendingNumbersUneven_thenListIsSplit() {
- val numberList = listOf(1, 2, 3, 4, 5, 6, 7);
- val resultList = numberList.groupBy { (it + 1) / 2 }.values
- assertEquals("[[1, 2], [3, 4], [5, 6], [7]]", resultList.toString())
- }
-
- @Test
- fun whenGroupByWithRandomNumbers_thenListIsSplitInWrongWay() {
- val numberList = listOf(1, 3, 8, 20, 23, 30);
- val resultList = numberList.groupBy { (it + 1) / 2 }
- assertEquals("[[1], [3], [8], [20], [23], [30]]", resultList.values.toString())
- assertEquals("[1, 2, 4, 10, 12, 15]", resultList.keys.toString())
- }
-
- @Test
- fun whenWithIndexGroupBy_thenListIsSplit() {
- val resultList = evenList.withIndex()
- .groupBy { it.index / 2 }
- .map { it.value.map { it.value } }
- verifyList(resultList)
- }
-
- @Test
- fun whenWithIndexGroupByUneven_thenListIsSplit() {
- val resultList = unevenList.withIndex()
- .groupBy { it.index / 2 }
- .map { it.value.map { it.value } }
- verifyPartialList(resultList)
- }
-
- @Test
- fun whenFoldIndexed_thenListIsSplit() {
- val resultList = evenList.foldIndexed(ArrayList>(evenList.size / 2)) { index, acc, item ->
- if (index % 2 == 0) {
- acc.add(ArrayList(2))
- }
- acc.last().add(item)
- acc
- }
- verifyList(resultList)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-concurrency/README.md b/core-kotlin-modules/core-kotlin-concurrency/README.md
deleted file mode 100644
index 09d9055a2b..0000000000
--- a/core-kotlin-modules/core-kotlin-concurrency/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-## Core Kotlin Concurrency
-
-This module contains articles about concurrency in Kotlin.
-
-### Relevant articles:
-- [Threads vs Coroutines in Kotlin](https://www.baeldung.com/kotlin-threads-coroutines)
-- [Introduction to Kotlin Coroutines](https://www.baeldung.com/kotlin-coroutines)
diff --git a/core-kotlin-modules/core-kotlin-concurrency/pom.xml b/core-kotlin-modules/core-kotlin-concurrency/pom.xml
deleted file mode 100644
index 7c3b0fb5b6..0000000000
--- a/core-kotlin-modules/core-kotlin-concurrency/pom.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
- 4.0.0
- core-kotlin-concurrency
- core-kotlin-concurrency
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
- ${kotlin.version}
-
-
- org.assertj
- assertj-core
- ${assertj.version}
- test
-
-
- org.jetbrains.kotlin
- kotlin-test
- ${kotlin.version}
- test
-
-
-
-
- 1.3.30
- 3.10.0
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-concurrency/src/main/kotlin/com/baeldung/threadsvscoroutines/SimpleRunnable.kt b/core-kotlin-modules/core-kotlin-concurrency/src/main/kotlin/com/baeldung/threadsvscoroutines/SimpleRunnable.kt
deleted file mode 100644
index 80ffb4077a..0000000000
--- a/core-kotlin-modules/core-kotlin-concurrency/src/main/kotlin/com/baeldung/threadsvscoroutines/SimpleRunnable.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.threadsvscoroutines
-
-class SimpleRunnable: Runnable {
-
- override fun run() {
- println("${Thread.currentThread()} has run.")
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-concurrency/src/main/kotlin/com/baeldung/threadsvscoroutines/SimpleThread.kt b/core-kotlin-modules/core-kotlin-concurrency/src/main/kotlin/com/baeldung/threadsvscoroutines/SimpleThread.kt
deleted file mode 100644
index 6647dac0ef..0000000000
--- a/core-kotlin-modules/core-kotlin-concurrency/src/main/kotlin/com/baeldung/threadsvscoroutines/SimpleThread.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.threadsvscoroutines
-
-class SimpleThread: Thread() {
-
- override fun run() {
- println("${Thread.currentThread()} has run.")
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-concurrency/src/test/kotlin/com/baeldung/coroutines/CoroutinesUnitTest.kt b/core-kotlin-modules/core-kotlin-concurrency/src/test/kotlin/com/baeldung/coroutines/CoroutinesUnitTest.kt
deleted file mode 100644
index 6b9437a8ab..0000000000
--- a/core-kotlin-modules/core-kotlin-concurrency/src/test/kotlin/com/baeldung/coroutines/CoroutinesUnitTest.kt
+++ /dev/null
@@ -1,178 +0,0 @@
-package com.baeldung.coroutines
-
-import kotlinx.coroutines.*
-import org.junit.Test
-import java.util.concurrent.atomic.AtomicInteger
-import kotlin.system.measureTimeMillis
-import kotlin.test.assertEquals
-import kotlin.test.assertTrue
-
-
-class CoroutinesTest {
-
- @Test
- fun givenBuildSequence_whenTakeNElements_thenShouldReturnItInALazyWay() {
- //given
- val fibonacciSeq = sequence {
- var a = 0
- var b = 1
-
- yield(1)
-
- while (true) {
- yield(a + b)
-
- val tmp = a + b
- a = b
- b = tmp
- }
- }
-
- //when
- val res = fibonacciSeq.take(5).toList()
-
- //then
- assertEquals(res, listOf(1, 1, 2, 3, 5))
- }
-
- @Test
- fun givenLazySeq_whenTakeNElements_thenShouldReturnAllElements() {
- //given
- val lazySeq = sequence {
- print("START ")
- for (i in 1..5) {
- yield(i)
- print("STEP ")
- }
- print("END")
- }
- //when
- val res = lazySeq.take(10).toList()
-
- //then
- assertEquals(res, listOf(1, 2, 3, 4, 5))
- }
-
- @Test
- fun givenAsyncCoroutine_whenStartIt_thenShouldExecuteItInTheAsyncWay() {
- //given
- val res = mutableListOf()
-
- //when
- runBlocking {
- val promise = launch(Dispatchers.Default) { expensiveComputation(res) }
- res.add("Hello,")
- promise.join()
- }
-
- //then
- assertEquals(res, listOf("Hello,", "word!"))
- }
-
-
- suspend fun expensiveComputation(res: MutableList) {
- delay(1000L)
- res.add("word!")
- }
-
- @Test
- fun givenHugeAmountOfCoroutines_whenStartIt_thenShouldExecuteItWithoutOutOfMemory() {
- runBlocking {
- //given
- val counter = AtomicInteger(0)
- val numberOfCoroutines = 100_000
-
- //when
- val jobs = List(numberOfCoroutines) {
- launch(Dispatchers.Default) {
- delay(1L)
- counter.incrementAndGet()
- }
- }
- jobs.forEach { it.join() }
-
- //then
- assertEquals(counter.get(), numberOfCoroutines)
- }
- }
-
- @Test
- fun givenCancellableJob_whenRequestForCancel_thenShouldQuit() {
- runBlocking {
- //given
- val job = launch(Dispatchers.Default) {
- while (isActive) {
- //println("is working")
- }
- }
-
- delay(1300L)
-
- //when
- job.cancel()
-
- //then cancel successfully
-
- }
- }
-
- @Test(expected = CancellationException::class)
- fun givenAsyncAction_whenDeclareTimeout_thenShouldFinishWhenTimedOut() {
- runBlocking {
- withTimeout(1300L) {
- repeat(1000) { i ->
- println("Some expensive computation $i ...")
- delay(500L)
- }
- }
- }
- }
-
- @Test
- fun givenHaveTwoExpensiveAction_whenExecuteThemAsync_thenTheyShouldRunConcurrently() {
- runBlocking {
- val delay = 1000L
- val time = measureTimeMillis {
- //given
- val one = async(Dispatchers.Default) { someExpensiveComputation(delay) }
- val two = async(Dispatchers.Default) { someExpensiveComputation(delay) }
-
- //when
- runBlocking {
- one.await()
- two.await()
- }
- }
-
- //then
- assertTrue(time < delay * 2)
- }
- }
-
- @Test
- fun givenTwoExpensiveAction_whenExecuteThemLazy_thenTheyShouldNotConcurrently() {
- runBlocking {
- val delay = 1000L
- val time = measureTimeMillis {
- //given
- val one = async(Dispatchers.Default, CoroutineStart.LAZY) { someExpensiveComputation(delay) }
- val two = async(Dispatchers.Default, CoroutineStart.LAZY) { someExpensiveComputation(delay) }
-
- //when
- runBlocking {
- one.await()
- two.await()
- }
- }
-
- //then
- assertTrue(time > delay * 2)
- }
- }
-
- suspend fun someExpensiveComputation(delayInMilliseconds: Long) {
- delay(delayInMilliseconds)
- }
-
-
-}
diff --git a/core-kotlin-modules/core-kotlin-concurrency/src/test/kotlin/com/baeldung/threadsvscoroutines/CoroutineUnitTest.kt b/core-kotlin-modules/core-kotlin-concurrency/src/test/kotlin/com/baeldung/threadsvscoroutines/CoroutineUnitTest.kt
deleted file mode 100644
index ff385d0869..0000000000
--- a/core-kotlin-modules/core-kotlin-concurrency/src/test/kotlin/com/baeldung/threadsvscoroutines/CoroutineUnitTest.kt
+++ /dev/null
@@ -1,52 +0,0 @@
-package com.baeldung.threadsvscoroutines
-
-import kotlinx.coroutines.*
-import org.junit.jupiter.api.Test
-
-class CoroutineUnitTest {
-
- @Test
- fun whenCreateCoroutineWithLaunchWithoutContext_thenRun() = runBlocking {
-
- val job = launch {
- println("${Thread.currentThread()} has run.")
- }
-
- }
-
- @Test
- fun whenCreateCoroutineWithLaunchWithDefaultContext_thenRun() = runBlocking {
-
- val job = launch(Dispatchers.Default) {
- println("${Thread.currentThread()} has run.")
- }
- }
-
- @Test
- fun whenCreateCoroutineWithLaunchWithUnconfinedContext_thenRun() = runBlocking {
-
- val job = launch(Dispatchers.Unconfined) {
- println("${Thread.currentThread()} has run.")
- }
- }
-
- @Test
- fun whenCreateCoroutineWithLaunchWithDedicatedThread_thenRun() = runBlocking {
-
- val job = launch(newSingleThreadContext("dedicatedThread")) {
- println("${Thread.currentThread()} has run.")
- }
-
- }
-
- @Test
- fun whenCreateAsyncCoroutine_thenRun() = runBlocking {
-
- val deferred = async(Dispatchers.IO) {
- return@async "${Thread.currentThread()} has run."
- }
-
- val result = deferred.await()
- println(result)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-concurrency/src/test/kotlin/com/baeldung/threadsvscoroutines/ThreadUnitTest.kt b/core-kotlin-modules/core-kotlin-concurrency/src/test/kotlin/com/baeldung/threadsvscoroutines/ThreadUnitTest.kt
deleted file mode 100644
index 9503751fa3..0000000000
--- a/core-kotlin-modules/core-kotlin-concurrency/src/test/kotlin/com/baeldung/threadsvscoroutines/ThreadUnitTest.kt
+++ /dev/null
@@ -1,38 +0,0 @@
-package com.baeldung.threadsvscoroutines
-
-import org.junit.jupiter.api.Test
-import kotlin.concurrent.thread
-
-class ThreadUnitTest {
-
- @Test
- fun whenCreateThread_thenRun() {
-
- val thread = SimpleThread()
- thread.start()
- }
-
- @Test
- fun whenCreateThreadWithRunnable_thenRun() {
-
- val threadWithRunnable = Thread(SimpleRunnable())
- threadWithRunnable.start()
- }
-
- @Test
- fun whenCreateThreadWithSAMConversions_thenRun() {
-
- val thread = Thread {
- println("${Thread.currentThread()} has run.")
- }
- thread.start()
- }
-
- @Test
- fun whenCreateThreadWithMethodExtension_thenRun() {
-
- thread(start = true) {
- println("${Thread.currentThread()} has run.")
- }
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-datastructures/README.md b/core-kotlin-modules/core-kotlin-datastructures/README.md
deleted file mode 100644
index 3b22730a76..0000000000
--- a/core-kotlin-modules/core-kotlin-datastructures/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-## Core Kotlin
-
-This module contains articles about data structures in Kotlin
-
-### Relevant articles:
-[Implementing a Binary Tree in Kotlin](https://www.baeldung.com/kotlin-binary-tree)
diff --git a/core-kotlin-modules/core-kotlin-datastructures/pom.xml b/core-kotlin-modules/core-kotlin-datastructures/pom.xml
deleted file mode 100644
index eae11c17cf..0000000000
--- a/core-kotlin-modules/core-kotlin-datastructures/pom.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
- 4.0.0
- core-kotlin-datastructures
- core-kotlin-datastructures
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.junit.platform
- junit-platform-runner
- ${junit.platform.version}
- test
-
-
-
-
- 1.1.1
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-datastructures/src/main/kotlin/com/baeldung/binarytree/Main.kt b/core-kotlin-modules/core-kotlin-datastructures/src/main/kotlin/com/baeldung/binarytree/Main.kt
deleted file mode 100644
index eee10fbd8b..0000000000
--- a/core-kotlin-modules/core-kotlin-datastructures/src/main/kotlin/com/baeldung/binarytree/Main.kt
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.baeldung.binarytree
-
-/**
- * Example of how to use the {@link Node} class.
- *
- */
-fun main(args: Array) {
- val tree = Node(4)
- val keys = arrayOf(8, 15, 21, 3, 7, 2, 5, 10, 2, 3, 4, 6, 11)
- for (key in keys) {
- tree.insert(key)
- }
- val node = tree.find(4)!!
- println("Node with value ${node.key} [left = ${node.left?.key}, right = ${node.right?.key}]")
- println("Delete node with key = 3")
- node.delete(3)
- print("Tree content after the node elimination: ")
- println(tree.visit().joinToString { it.toString() })
-}
diff --git a/core-kotlin-modules/core-kotlin-datastructures/src/main/kotlin/com/baeldung/binarytree/Node.kt b/core-kotlin-modules/core-kotlin-datastructures/src/main/kotlin/com/baeldung/binarytree/Node.kt
deleted file mode 100644
index 77bb98f828..0000000000
--- a/core-kotlin-modules/core-kotlin-datastructures/src/main/kotlin/com/baeldung/binarytree/Node.kt
+++ /dev/null
@@ -1,167 +0,0 @@
-package com.baeldung.binarytree
-
-/**
- * An ADT for a binary search tree.
- * Note that this data type is neither immutable nor thread safe.
- */
-class Node(
- var key: Int,
- var left: Node? = null,
- var right: Node? = null) {
-
- /**
- * Return a node with given value. If no such node exists, return null.
- * @param value
- */
- fun find(value: Int): Node? = when {
- this.key > value -> left?.find(value)
- this.key < value -> right?.find(value)
- else -> this
-
- }
-
- /**
- * Insert a given value into the tree.
- * After insertion, the tree should contain a node with the given value.
- * If the tree already contains the given value, nothing is performed.
- * @param value
- */
- fun insert(value: Int) {
- if (value > this.key) {
- if (this.right == null) {
- this.right = Node(value)
- } else {
- this.right?.insert(value)
- }
- } else if (value < this.key) {
- if (this.left == null) {
- this.left = Node(value)
- } else {
- this.left?.insert(value)
- }
- }
- }
-
- /**
- * Delete the value from the given tree. If the tree does not contain the value, the tree remains unchanged.
- * @param value
- */
- fun delete(value: Int) {
- when {
- value > key -> scan(value, this.right, this)
- value < key -> scan(value, this.left, this)
- else -> removeNode(this, null)
- }
- }
-
- /**
- * Scan the tree in the search of the given value.
- * @param value
- * @param node sub-tree that potentially might contain the sought value
- * @param parent node's parent
- */
- private fun scan(value: Int, node: Node?, parent: Node?) {
- if (node == null) {
- System.out.println("value " + value
- + " seems not present in the tree.")
- return
- }
- when {
- value > node.key -> scan(value, node.right, node)
- value < node.key -> scan(value, node.left, node)
- value == node.key -> removeNode(node, parent)
- }
-
- }
-
- /**
- * Remove the node.
- *
- * Removal process depends on how many children the node has.
- *
- * @param node node that is to be removed
- * @param parent parent of the node to be removed
- */
- private fun removeNode(node: Node, parent: Node?) {
- node.left?.let { leftChild ->
- run {
- node.right?.let {
- removeTwoChildNode(node)
- } ?: removeSingleChildNode(node, leftChild)
- }
- } ?: run {
- node.right?.let { rightChild -> removeSingleChildNode(node, rightChild) } ?: removeNoChildNode(node, parent)
- }
-
-
- }
-
- /**
- * Remove the node without children.
- * @param node
- * @param parent
- */
- private fun removeNoChildNode(node: Node, parent: Node?) {
- parent?.let { p ->
- if (node == p.left) {
- p.left = null
- } else if (node == p.right) {
- p.right = null
- }
- } ?: throw IllegalStateException(
- "Can not remove the root node without child nodes")
-
- }
-
- /**
- * Remove a node that has two children.
- *
- * The process of elimination is to find the biggest key in the left sub-tree and replace the key of the
- * node that is to be deleted with that key.
- */
- private fun removeTwoChildNode(node: Node) {
- val leftChild = node.left!!
- leftChild.right?.let {
- val maxParent = findParentOfMaxChild(leftChild)
- maxParent.right?.let {
- node.key = it.key
- maxParent.right = null
- } ?: throw IllegalStateException("Node with max child must have the right child!")
-
- } ?: run {
- node.key = leftChild.key
- node.left = leftChild.left
- }
-
- }
-
- /**
- * Return a node whose right child contains the biggest value in the given sub-tree.
- * Assume that the node n has a non-null right child.
- *
- * @param n
- */
- private fun findParentOfMaxChild(n: Node): Node {
- return n.right?.let { r -> r.right?.let { findParentOfMaxChild(r) } ?: n }
- ?: throw IllegalArgumentException("Right child must be non-null")
-
- }
-
- /**
- * Remove a parent that has only one child.
- * Removal is effectively is just coping the data from the child parent to the parent parent.
- * @param parent Node to be deleted. Assume that it has just one child
- * @param child Assume it is a child of the parent
- */
- private fun removeSingleChildNode(parent: Node, child: Node) {
- parent.key = child.key
- parent.left = child.left
- parent.right = child.right
- }
-
- fun visit(): Array {
- val a = left?.visit() ?: emptyArray()
- val b = right?.visit() ?: emptyArray()
- return a + arrayOf(key) + b
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-datastructures/src/test/kotlin/com/binarytree/NodeTest.kt b/core-kotlin-modules/core-kotlin-datastructures/src/test/kotlin/com/binarytree/NodeTest.kt
deleted file mode 100644
index 5a7f7fc50f..0000000000
--- a/core-kotlin-modules/core-kotlin-datastructures/src/test/kotlin/com/binarytree/NodeTest.kt
+++ /dev/null
@@ -1,320 +0,0 @@
-package com.binarytree
-
-import org.junit.After
-import org.junit.Assert.assertEquals
-import org.junit.Assert.assertNull
-import org.junit.Before
-import org.junit.Test
-
-class NodeTest {
-
- @Before
- fun setUp() {
- }
-
- @After
- fun tearDown() {
- }
-
- /**
- * Test suit for finding the node by value
- * Partition the tests as follows:
- * 1. tree depth: 0, 1, > 1
- * 2. pivot depth location: not present, 0, 1, 2, > 2
- */
-
- /**
- * Find the node by value
- * 1. tree depth: 0
- * 2. pivot depth location: not present
- */
- @Test
- fun givenDepthZero_whenPivotNotPresent_thenNull() {
- val n = Node(1)
- assertNull(n.find(2))
- }
-
- /**
- * Find the node by value
- * 1. tree depth: 0
- * 2. pivot depth location: 0
- */
- @Test
- fun givenDepthZero_whenPivotDepthZero_thenReturnNodeItself() {
- val n = Node(1)
- assertEquals(n, n.find(1))
- }
-
- /**
- * Find the node by value
- * 1. tree depth: 1
- * 2. pivot depth location: not present
- */
- @Test
- fun givenDepthOne_whenPivotNotPresent_thenNull() {
- val n = Node(1, Node(0))
- assertNull(n.find(2))
- }
-
- /**
- * Find the node by value
- * 1. tree depth: 1
- * 2. pivot depth location: not present
- */
- @Test
- fun givenDepthOne_whenPivotAtDepthOne_thenSuccess() {
- val n = Node(1, Node(0))
- assertEquals(n.left, n.find(0)
- )
- }
-
- @Test
- fun givenDepthTwo_whenPivotAtDepth2_then_Success() {
- val left = Node(1, Node(0), Node(2))
- val right = Node(5, Node(4), Node(6))
- val n = Node(3, left, right)
- assertEquals(left.left, n.find(0))
- }
-
-
- /**
- * Test suit for inserting a value
- * Partition the test as follows:
- * 1. tree depth: 0, 1, 2, > 2
- * 2. depth to insert: 0, 1, > 1
- * 3. is duplicate: no, yes
- * 4. sub-tree: left, right
- */
- /**
- * Test for inserting a value
- * 1. tree depth: 0
- * 2. depth to insert: 1
- * 3. is duplicate: no
- * 4. sub-tree: right
- */
- @Test
- fun givenTreeDepthZero_whenInsertNoDuplicateToRight_thenAddNode() {
- val n = Node(1)
- n.insert(2)
- assertEquals(1, n.key)
- with(n.right!!) {
- assertEquals(2, key)
- assertNull(left)
- assertNull(right)
- }
- assertNull(n.left)
- }
-
- /**
- * Test for inserting a value
- * 1. tree depth: 0
- * 2. depth to insert: 1
- * 3. is duplicate: no
- * 4. sub-tree: right
- */
- @Test
- fun givenTreeDepthZero_whenInsertNoDuplicateToLeft_thenSuccess() {
- val n = Node(1)
- n.insert(0)
- assertEquals(1, n.key)
- with(n.left!!) {
- assertEquals(0, key)
- assertNull(left)
- assertNull(right)
- }
- assertNull(n.right)
- }
-
- /**
- * Test for inserting a value
- * 1. tree depth: 0
- * 2. depth to insert: 1
- * 3. is duplicate: yes
- */
- @Test
- fun givenTreeDepthZero_whenInsertDuplicate_thenSuccess() {
- val n = Node(1)
- n.insert(1)
- assertEquals(1, n.key)
- assertNull(n.right)
- assertNull(n.left)
- }
-
-
- /**
- * Test suit for inserting a value
- * Partition the test as follows:
- * 1. tree depth: 0, 1, 2, > 2
- * 2. depth to insert: 0, 1, > 1
- * 3. is duplicate: no, yes
- * 4. sub-tree: left, right
- */
- /**
- * Test for inserting a value
- * 1. tree depth: 1
- * 2. depth to insert: 1
- * 3. is duplicate: no
- * 4. sub-tree: right
- */
- @Test
- fun givenTreeDepthOne_whenInsertNoDuplicateToRight_thenSuccess() {
- val n = Node(10, Node(3))
- n.insert(15)
- assertEquals(10, n.key)
- with(n.right!!) {
- assertEquals(15, key)
- assertNull(left)
- assertNull(right)
- }
- with(n.left!!) {
- assertEquals(3, key)
- assertNull(left)
- assertNull(right)
- }
- }
-
- /**
- * Test for inserting a value
- * 1. tree depth: 1
- * 2. depth to insert: 1
- * 3. is duplicate: no
- * 4. sub-tree: left
- */
- @Test
- fun givenTreeDepthOne_whenInsertNoDuplicateToLeft_thenAddNode() {
- val n = Node(10, null, Node(15))
- n.insert(3)
- assertEquals(10, n.key)
- with(n.right!!) {
- assertEquals(15, key)
- assertNull(left)
- assertNull(right)
- }
- with(n.left!!) {
- assertEquals(3, key)
- assertNull(left)
- assertNull(right)
- }
- }
-
- /**
- * Test for inserting a value
- * 1. tree depth: 1
- * 2. depth to insert: 1
- * 3. is duplicate: yes
- */
- @Test
- fun givenTreeDepthOne_whenInsertDuplicate_thenNoChange() {
- val n = Node(10, null, Node(15))
- n.insert(15)
- assertEquals(10, n.key)
- with(n.right!!) {
- assertEquals(15, key)
- assertNull(left)
- assertNull(right)
- }
- assertNull(n.left)
- }
-
- /**
- * Test suit for removal
- * Partition the input as follows:
- * 1. tree depth: 0, 1, 2, > 2
- * 2. value to delete: absent, present
- * 3. # child nodes: 0, 1, 2
- */
- /**
- * Test for removal value
- * 1. tree depth: 0
- * 2. value to delete: absent
- */
- @Test
- fun givenTreeDepthZero_whenValueAbsent_thenNoChange() {
- val n = Node(1)
- n.delete(0)
- assertEquals(1, n.key)
- assertNull(n.left)
- assertNull(n.right)
- }
-
- /**
- * Test for removal
- * 1. tree depth: 1
- * 2. value to delete: absent
- */
- @Test
- fun givenTreeDepthOne_whenValueAbsent_thenNoChange() {
- val n = Node(1, Node(0), Node(2))
- n.delete(3)
- assertEquals(1, n.key)
- assertEquals(2, n.right!!.key)
- with(n.left!!) {
- assertEquals(0, key)
- assertNull(left)
- assertNull(right)
- }
- with(n.right!!) {
- assertNull(left)
- assertNull(right)
- }
- }
-
- /**
- * Test suit for removal
- * 1. tree depth: 1
- * 2. value to delete: present
- * 3. # child nodes: 0
- */
- @Test
- fun givenTreeDepthOne_whenNodeToDeleteHasNoChildren_thenChangeTree() {
- val n = Node(1, Node(0))
- n.delete(0)
- assertEquals(1, n.key)
- assertNull(n.left)
- assertNull(n.right)
- }
-
- /**
- * Test suit for removal
- * 1. tree depth: 2
- * 2. value to delete: present
- * 3. # child nodes: 1
- */
- @Test
- fun givenTreeDepthTwo_whenNodeToDeleteHasOneChild_thenChangeTree() {
- val n = Node(2, Node(0, null, Node(1)), Node(3))
- n.delete(0)
- assertEquals(2, n.key)
- with(n.right!!) {
- assertEquals(3, key)
- assertNull(left)
- assertNull(right)
- }
- with(n.left!!) {
- assertEquals(1, key)
- assertNull(left)
- assertNull(right)
- }
- }
-
- @Test
- fun givenTreeDepthThree_whenNodeToDeleteHasTwoChildren_thenChangeTree() {
- val l = Node(2, Node(1), Node(5, Node(4), Node(6)))
- val r = Node(10, Node(9), Node(11))
- val n = Node(8, l, r)
- n.delete(8)
- assertEquals(6, n.key)
- with(n.left!!) {
- assertEquals(2, key)
- assertEquals(1, left!!.key)
- assertEquals(5, right!!.key)
- assertEquals(4, right!!.left!!.key)
- }
- with(n.right!!) {
- assertEquals(10, key)
- assertEquals(9, left!!.key)
- assertEquals(11, right!!.key)
- }
- }
-
-}
diff --git a/core-kotlin-modules/core-kotlin-date-time/README.md b/core-kotlin-modules/core-kotlin-date-time/README.md
deleted file mode 100644
index a3e358d4e3..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-## Core Kotlin Date and Time
-
-This module contains articles about Kotlin core date/time features.
-
-### Relevant articles:
-[Working with Dates in Kotlin](https://www.baeldung.com/kotlin-dates)
diff --git a/core-kotlin-modules/core-kotlin-date-time/pom.xml b/core-kotlin-modules/core-kotlin-date-time/pom.xml
deleted file mode 100644
index f3cacefc19..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/pom.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
- 4.0.0
- core-kotlin-date-time
- core-kotlin-date-time
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.assertj
- assertj-core
- ${org.assertj.core.version}
- test
-
-
- org.junit.platform
- junit-platform-runner
- ${junit.platform.version}
- test
-
-
-
-
- 1.1.1
- 3.9.0
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseDuration.kt b/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseDuration.kt
deleted file mode 100644
index 922c3a1988..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseDuration.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.baeldung.dates.datetime
-
-import java.time.Duration
-import java.time.LocalTime
-
-class UseDuration {
-
- fun modifyDates(localTime: LocalTime, duration: Duration): LocalTime {
- return localTime.plus(duration)
- }
-
- fun getDifferenceBetweenDates(localTime1: LocalTime, localTime2: LocalTime): Duration {
- return Duration.between(localTime1, localTime2)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseLocalDate.kt b/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseLocalDate.kt
deleted file mode 100644
index 81d50a70b2..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseLocalDate.kt
+++ /dev/null
@@ -1,42 +0,0 @@
-package com.baeldung.dates.datetime
-
-import java.time.DayOfWeek
-import java.time.LocalDate
-import java.time.LocalDateTime
-import java.time.temporal.ChronoUnit
-import java.time.temporal.TemporalAdjusters
-
-class UseLocalDate {
-
- fun getLocalDateUsingFactoryOfMethod(year: Int, month: Int, dayOfMonth: Int): LocalDate {
- return LocalDate.of(year, month, dayOfMonth)
- }
-
- fun getLocalDateUsingParseMethod(representation: String): LocalDate {
- return LocalDate.parse(representation)
- }
-
- fun getLocalDateFromClock(): LocalDate {
- return LocalDate.now()
- }
-
- fun getNextDay(localDate: LocalDate): LocalDate {
- return localDate.plusDays(1)
- }
-
- fun getPreviousDay(localDate: LocalDate): LocalDate {
- return localDate.minus(1, ChronoUnit.DAYS)
- }
-
- fun getDayOfWeek(localDate: LocalDate): DayOfWeek {
- return localDate.dayOfWeek
- }
-
- fun getFirstDayOfMonth(): LocalDate {
- return LocalDate.now().with(TemporalAdjusters.firstDayOfMonth())
- }
-
- fun getStartOfDay(localDate: LocalDate): LocalDateTime {
- return localDate.atStartOfDay()
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseLocalDateTime.kt b/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseLocalDateTime.kt
deleted file mode 100644
index 5d0eb6a911..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseLocalDateTime.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.baeldung.dates.datetime
-
-import java.time.LocalDateTime
-
-class UseLocalDateTime {
-
- fun getLocalDateTimeUsingParseMethod(representation: String): LocalDateTime {
- return LocalDateTime.parse(representation)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseLocalTime.kt b/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseLocalTime.kt
deleted file mode 100644
index 24402467e8..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseLocalTime.kt
+++ /dev/null
@@ -1,31 +0,0 @@
-package com.baeldung.dates.datetime
-
-import java.time.LocalTime
-import java.time.temporal.ChronoUnit
-
-class UseLocalTime {
-
- fun getLocalTimeUsingFactoryOfMethod(hour: Int, min: Int, seconds: Int): LocalTime {
- return LocalTime.of(hour, min, seconds)
- }
-
- fun getLocalTimeUsingParseMethod(timeRepresentation: String): LocalTime {
- return LocalTime.parse(timeRepresentation)
- }
-
- fun getLocalTimeFromClock(): LocalTime {
- return LocalTime.now()
- }
-
- fun addAnHour(localTime: LocalTime): LocalTime {
- return localTime.plus(1, ChronoUnit.HOURS)
- }
-
- fun getHourFromLocalTime(localTime: LocalTime): Int {
- return localTime.hour
- }
-
- fun getLocalTimeWithMinuteSetToValue(localTime: LocalTime, minute: Int): LocalTime {
- return localTime.withMinute(minute)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UsePeriod.kt b/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UsePeriod.kt
deleted file mode 100644
index d15e02eb37..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UsePeriod.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.baeldung.dates.datetime
-
-import java.time.LocalDate
-import java.time.Period
-
-class UsePeriod {
-
- fun modifyDates(localDate: LocalDate, period: Period): LocalDate {
- return localDate.plus(period)
- }
-
- fun getDifferenceBetweenDates(localDate1: LocalDate, localDate2: LocalDate): Period {
- return Period.between(localDate1, localDate2)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseZonedDateTime.kt b/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseZonedDateTime.kt
deleted file mode 100644
index e2f3a207c4..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/main/kotlin/com/baeldung/dates/datetime/UseZonedDateTime.kt
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.baeldung.dates.datetime
-
-import java.time.LocalDateTime
-import java.time.ZoneId
-import java.time.ZonedDateTime
-
-class UseZonedDateTime {
-
- fun getZonedDateTime(localDateTime: LocalDateTime, zoneId: ZoneId): ZonedDateTime {
- return ZonedDateTime.of(localDateTime, zoneId)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/CreateDateUnitTest.kt b/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/CreateDateUnitTest.kt
deleted file mode 100644
index af5e08ea2d..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/CreateDateUnitTest.kt
+++ /dev/null
@@ -1,34 +0,0 @@
-package com.baeldung.kotlin.dates
-
-import org.assertj.core.api.Assertions.assertThat
-import org.junit.jupiter.api.Test
-import java.time.LocalDate
-import java.time.format.DateTimeFormatter
-
-class CreateDateUnitTest {
-
- @Test
- fun givenString_whenDefaultFormat_thenCreated() {
-
- var date = LocalDate.parse("2018-12-31")
-
- assertThat(date).isEqualTo("2018-12-31")
- }
-
- @Test
- fun givenString_whenCustomFormat_thenCreated() {
-
- var formatter = DateTimeFormatter.ofPattern("dd-MM-yyyy")
- var date = LocalDate.parse("31-12-2018", formatter)
-
- assertThat(date).isEqualTo("2018-12-31")
- }
-
- @Test
- fun givenYMD_whenUsingOf_thenCreated() {
- var date = LocalDate.of(2018, 12, 31)
-
- assertThat(date).isEqualTo("2018-12-31")
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/ExtractDateUnitTest.kt b/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/ExtractDateUnitTest.kt
deleted file mode 100644
index d297f4b6c3..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/ExtractDateUnitTest.kt
+++ /dev/null
@@ -1,29 +0,0 @@
-package com.baeldung.kotlin.dates
-
-import org.assertj.core.api.Assertions.assertThat
-import org.junit.jupiter.api.Test
-import java.time.DayOfWeek
-import java.time.LocalDate
-import java.time.Month
-
-class ExtractDateUnitTest {
-
- @Test
- fun givenDate_thenExtractedYMD() {
- var date = LocalDate.parse("2018-12-31")
-
- assertThat(date.year).isEqualTo(2018)
- assertThat(date.month).isEqualTo(Month.DECEMBER)
- assertThat(date.dayOfMonth).isEqualTo(31)
- }
-
- @Test
- fun givenDate_thenExtractedEraDowDoy() {
- var date = LocalDate.parse("2018-12-31")
-
- assertThat(date.era.toString()).isEqualTo("CE")
- assertThat(date.dayOfWeek).isEqualTo(DayOfWeek.MONDAY)
- assertThat(date.dayOfYear).isEqualTo(365)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/FormatDateUnitTest.kt b/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/FormatDateUnitTest.kt
deleted file mode 100644
index f7ca414aee..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/FormatDateUnitTest.kt
+++ /dev/null
@@ -1,29 +0,0 @@
-package com.baeldung.kotlin.dates
-
-import org.assertj.core.api.Assertions.assertThat
-import org.junit.jupiter.api.Test
-import java.time.LocalDate
-import java.time.format.DateTimeFormatter
-
-class FormatDateUnitTest {
-
- @Test
- fun givenDate_whenDefaultFormat_thenFormattedString() {
-
- var date = LocalDate.parse("2018-12-31")
-
- assertThat(date.toString()).isEqualTo("2018-12-31")
- }
-
- @Test
- fun givenDate_whenCustomFormat_thenFormattedString() {
-
- var date = LocalDate.parse("2018-12-31")
-
- var formatter = DateTimeFormatter.ofPattern("dd-MMMM-yyyy")
- var formattedDate = date.format(formatter)
-
- assertThat(formattedDate).isEqualTo("31-December-2018")
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/PeriodDateUnitTest.kt b/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/PeriodDateUnitTest.kt
deleted file mode 100644
index e8ca2971e8..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/PeriodDateUnitTest.kt
+++ /dev/null
@@ -1,48 +0,0 @@
-package com.baeldung.kotlin.dates
-
-import org.assertj.core.api.Assertions.assertThat
-import org.junit.jupiter.api.Test
-import java.time.LocalDate
-import java.time.Period
-
-class PeriodDateUnitTest {
-
- @Test
- fun givenYMD_thenCreatePeriod() {
- var period = Period.of(1, 2, 3)
-
- assertThat(period.toString()).isEqualTo("P1Y2M3D")
- }
-
- @Test
- fun givenPeriod_whenAdd_thenModifiedDate() {
- var period = Period.of(1, 2, 3)
-
- var date = LocalDate.of(2018, 6, 25)
- var modifiedDate = date.plus(period)
-
- assertThat(modifiedDate).isEqualTo("2019-08-28")
- }
-
- @Test
- fun givenPeriod_whenSubtracted_thenModifiedDate() {
- var period = Period.of(1, 2, 3)
-
- var date = LocalDate.of(2018, 6, 25)
- var modifiedDate = date.minus(period)
-
- assertThat(modifiedDate).isEqualTo("2017-04-22")
- }
-
- @Test
- fun givenTwoDate_whenUsingBetween_thenDiffOfDates() {
-
- var date1 = LocalDate.parse("2018-06-25")
- var date2 = LocalDate.parse("2018-12-25")
-
- var period = Period.between(date1, date2)
-
- assertThat(period.toString()).isEqualTo("P6M")
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseLocalDateTimeUnitTest.kt b/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseLocalDateTimeUnitTest.kt
deleted file mode 100644
index f3615a527c..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseLocalDateTimeUnitTest.kt
+++ /dev/null
@@ -1,21 +0,0 @@
-package com.baeldung.kotlin.datetime
-
-import com.baeldung.dates.datetime.UseLocalDateTime
-import org.junit.Assert.assertEquals
-import org.junit.Test
-import java.time.LocalDate
-import java.time.LocalTime
-import java.time.Month
-
-class UseLocalDateTimeUnitTest {
-
- var useLocalDateTime = UseLocalDateTime()
-
- @Test
- fun givenString_whenUsingParse_thenLocalDateTime() {
- assertEquals(LocalDate.of(2016, Month.MAY, 10), useLocalDateTime.getLocalDateTimeUsingParseMethod("2016-05-10T06:30")
- .toLocalDate())
- assertEquals(LocalTime.of(6, 30), useLocalDateTime.getLocalDateTimeUsingParseMethod("2016-05-10T06:30")
- .toLocalTime())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseLocalDateUnitTest.kt b/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseLocalDateUnitTest.kt
deleted file mode 100644
index e6353c9dab..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseLocalDateUnitTest.kt
+++ /dev/null
@@ -1,59 +0,0 @@
-package com.baeldung.kotlin.datetime
-
-import com.baeldung.dates.datetime.UseLocalDate
-import org.junit.Assert
-import org.junit.Test
-import java.time.DayOfWeek
-import java.time.LocalDate
-import java.time.LocalDateTime
-
-class UseLocalDateUnitTest {
-
- var useLocalDate = UseLocalDate()
-
- @Test
- fun givenValues_whenUsingFactoryOf_thenLocalDate() {
- Assert.assertEquals("2016-05-10", useLocalDate.getLocalDateUsingFactoryOfMethod(2016, 5, 10)
- .toString())
- }
-
- @Test
- fun givenString_whenUsingParse_thenLocalDate() {
- Assert.assertEquals("2016-05-10", useLocalDate.getLocalDateUsingParseMethod("2016-05-10")
- .toString())
- }
-
- @Test
- fun whenUsingClock_thenLocalDate() {
- Assert.assertEquals(LocalDate.now(), useLocalDate.getLocalDateFromClock())
- }
-
- @Test
- fun givenDate_whenUsingPlus_thenNextDay() {
- Assert.assertEquals(LocalDate.now()
- .plusDays(1), useLocalDate.getNextDay(LocalDate.now()))
- }
-
- @Test
- fun givenDate_whenUsingMinus_thenPreviousDay() {
- Assert.assertEquals(LocalDate.now()
- .minusDays(1), useLocalDate.getPreviousDay(LocalDate.now()))
- }
-
- @Test
- fun givenToday_whenUsingGetDayOfWeek_thenDayOfWeek() {
- Assert.assertEquals(DayOfWeek.SUNDAY, useLocalDate.getDayOfWeek(LocalDate.parse("2016-05-22")))
- }
-
- @Test
- fun givenToday_whenUsingWithTemporalAdjuster_thenFirstDayOfMonth() {
- Assert.assertEquals(1, useLocalDate.getFirstDayOfMonth()
- .dayOfMonth.toLong())
- }
-
- @Test
- fun givenLocalDate_whenUsingAtStartOfDay_thenReturnMidnight() {
- Assert.assertEquals(LocalDateTime.parse("2016-05-22T00:00:00"), useLocalDate.getStartOfDay(LocalDate.parse("2016-05-22")))
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseLocalTimeUnitTest.kt b/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseLocalTimeUnitTest.kt
deleted file mode 100644
index 1afe03ca48..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseLocalTimeUnitTest.kt
+++ /dev/null
@@ -1,36 +0,0 @@
-package com.baeldung.kotlin.datetime
-
-import com.baeldung.dates.datetime.UseLocalTime
-import org.junit.Assert
-import org.junit.Test
-import java.time.LocalTime
-
-class UseLocalTimeUnitTest {
-
- internal var useLocalTime = UseLocalTime()
-
- @Test
- fun givenValues_whenUsingFactoryOf_thenLocalTime() {
- Assert.assertEquals("07:07:07", useLocalTime.getLocalTimeUsingFactoryOfMethod(7, 7, 7).toString())
- }
-
- @Test
- fun givenString_whenUsingParse_thenLocalTime() {
- Assert.assertEquals("06:30", useLocalTime.getLocalTimeUsingParseMethod("06:30").toString())
- }
-
- @Test
- fun givenTime_whenAddHour_thenLocalTime() {
- Assert.assertEquals("07:30", useLocalTime.addAnHour(LocalTime.of(6, 30)).toString())
- }
-
- @Test
- fun getHourFromLocalTime() {
- Assert.assertEquals(1, useLocalTime.getHourFromLocalTime(LocalTime.of(1, 1)).toLong())
- }
-
- @Test
- fun getLocalTimeWithMinuteSetToValue() {
- Assert.assertEquals(LocalTime.of(10, 20), useLocalTime.getLocalTimeWithMinuteSetToValue(LocalTime.of(10, 10), 20))
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UsePeriodUnitTest.kt b/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UsePeriodUnitTest.kt
deleted file mode 100644
index 36e1e5533a..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UsePeriodUnitTest.kt
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.baeldung.kotlin.datetime
-
-import com.baeldung.dates.datetime.UsePeriod
-import org.junit.Assert
-import org.junit.Test
-import java.time.LocalDate
-import java.time.Period
-
-class UsePeriodUnitTest {
-
- var usingPeriod = UsePeriod()
-
- @Test
- fun givenPeriodAndLocalDate_thenCalculateModifiedDate() {
- val period = Period.ofDays(1)
- val localDate = LocalDate.parse("2007-05-10")
- Assert.assertEquals(localDate.plusDays(1), usingPeriod.modifyDates(localDate, period))
- }
-
- @Test
- fun givenDates_thenGetPeriod() {
- val localDate1 = LocalDate.parse("2007-05-10")
- val localDate2 = LocalDate.parse("2007-05-15")
-
- Assert.assertEquals(Period.ofDays(5), usingPeriod.getDifferenceBetweenDates(localDate1, localDate2))
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseZonedDateTimeUnitTest.kt b/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseZonedDateTimeUnitTest.kt
deleted file mode 100644
index aa2cdaa4f3..0000000000
--- a/core-kotlin-modules/core-kotlin-date-time/src/test/kotlin/com/baeldung/dates/datetime/UseZonedDateTimeUnitTest.kt
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.baeldung.kotlin.datetime
-
-import com.baeldung.dates.datetime.UseZonedDateTime
-import org.junit.Assert
-import org.junit.Test
-import java.time.LocalDateTime
-import java.time.ZoneId
-
-class UseZonedDateTimeUnitTest {
-
- internal var zonedDateTime = UseZonedDateTime()
-
- @Test
- fun givenZoneId_thenZonedDateTime() {
- val zoneId = ZoneId.of("Europe/Paris")
- val zonedDatetime = zonedDateTime.getZonedDateTime(LocalDateTime.parse("2016-05-20T06:30"), zoneId)
- Assert.assertEquals(zoneId, ZoneId.from(zonedDatetime))
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-design-patterns/README.md b/core-kotlin-modules/core-kotlin-design-patterns/README.md
deleted file mode 100644
index 4bdc164a47..0000000000
--- a/core-kotlin-modules/core-kotlin-design-patterns/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-## Core Kotlin Design Patterns
-
-This module contains articles about design patterns in Kotlin
-
-### Relevant articles:
-- [Creational Design Patterns in Kotlin: Builder](https://www.baeldung.com/kotlin-builder-pattern)
diff --git a/core-kotlin-modules/core-kotlin-design-patterns/pom.xml b/core-kotlin-modules/core-kotlin-design-patterns/pom.xml
deleted file mode 100644
index c112602bc2..0000000000
--- a/core-kotlin-modules/core-kotlin-design-patterns/pom.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
- 4.0.0
- core-kotlin-design-patterns
- core-kotlin-design-patterns
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.junit.platform
- junit-platform-runner
- ${junit.platform.version}
- test
-
-
-
-
- 1.1.1
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/FoodOrder.kt b/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/FoodOrder.kt
deleted file mode 100644
index 3a8a4b9857..0000000000
--- a/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/FoodOrder.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.baeldung.builder
-
-class FoodOrder private constructor(
- val bread: String?,
- val condiments: String?,
- val meat: String?,
- val fish: String?
-) {
- data class Builder(
- var bread: String? = null,
- var condiments: String? = null,
- var meat: String? = null,
- var fish: String? = null) {
-
- fun bread(bread: String) = apply { this.bread = bread }
- fun condiments(condiments: String) = apply { this.condiments = condiments }
- fun meat(meat: String) = apply { this.meat = meat }
- fun fish(fish: String) = apply { this.fish = fish }
- fun build() = FoodOrder(bread, condiments, meat, fish)
- }
-}
-
diff --git a/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/FoodOrderApply.kt b/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/FoodOrderApply.kt
deleted file mode 100644
index 0a68832b00..0000000000
--- a/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/FoodOrderApply.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.builder
-
-class FoodOrderApply {
- var bread: String? = null
- var condiments: String? = null
- var meat: String? = null
- var fish: String? = null
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/FoodOrderNamed.kt b/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/FoodOrderNamed.kt
deleted file mode 100644
index 0e4219b40e..0000000000
--- a/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/FoodOrderNamed.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package com.baeldung.builder
-
-data class FoodOrderNamed(
- val bread: String? = null,
- val condiments: String? = null,
- val meat: String? = null,
- val fish: String? = null)
diff --git a/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/Main.kt b/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/Main.kt
deleted file mode 100644
index cc348e3fbf..0000000000
--- a/core-kotlin-modules/core-kotlin-design-patterns/src/main/kotlin/com/baeldung/builder/Main.kt
+++ /dev/null
@@ -1,9 +0,0 @@
-package com.baeldung.builder
-
-fun main(args: Array) {
- FoodOrder.Builder()
- .bread("bread")
- .condiments("condiments")
- .meat("meat")
- .fish("bread").let { println(it) }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-design-patterns/src/test/kotlin/com/baeldung/builder/BuilderPatternUnitTest.kt b/core-kotlin-modules/core-kotlin-design-patterns/src/test/kotlin/com/baeldung/builder/BuilderPatternUnitTest.kt
deleted file mode 100644
index a6687b6e0a..0000000000
--- a/core-kotlin-modules/core-kotlin-design-patterns/src/test/kotlin/com/baeldung/builder/BuilderPatternUnitTest.kt
+++ /dev/null
@@ -1,140 +0,0 @@
-package com.baeldung.builder
-
-import org.junit.jupiter.api.Assertions
-import org.junit.jupiter.api.Test
-
-internal class BuilderPatternUnitTest {
-
- @Test
- fun whenBuildingFoodOrderSettingValues_thenFieldsNotNull() {
-
- val foodOrder = FoodOrder.Builder()
- .bread("white bread")
- .meat("bacon")
- .fish("salmon")
- .condiments("olive oil")
- .build()
-
- Assertions.assertNotNull(foodOrder.bread)
- Assertions.assertNotNull(foodOrder.meat)
- Assertions.assertNotNull(foodOrder.condiments)
- Assertions.assertNotNull(foodOrder.fish)
- }
-
- @Test
- fun whenBuildingFoodOrderSettingValues_thenFieldsContainsValues() {
-
- val foodOrder = FoodOrder.Builder()
- .bread("white bread")
- .meat("bacon")
- .fish("salmon")
- .condiments("olive oil")
- .build()
-
- Assertions.assertEquals("white bread", foodOrder.bread)
- Assertions.assertEquals("bacon", foodOrder.meat)
- Assertions.assertEquals("olive oil", foodOrder.condiments)
- Assertions.assertEquals("salmon", foodOrder.fish)
- }
-
- @Test
- fun whenBuildingFoodOrderWithoutSettingValues_thenFieldsNull() {
-
- val foodOrder = FoodOrder.Builder()
- .build()
-
- Assertions.assertNull(foodOrder.bread)
- Assertions.assertNull(foodOrder.meat)
- Assertions.assertNull(foodOrder.condiments)
- Assertions.assertNull(foodOrder.fish)
- }
-
-
- @Test
- fun whenBuildingFoodOrderNamedSettingValues_thenFieldsNotNull() {
-
- val foodOrder = FoodOrderNamed(
- meat = "bacon",
- fish = "salmon",
- condiments = "olive oil",
- bread = "white bread"
- )
-
- Assertions.assertNotNull(foodOrder.bread)
- Assertions.assertNotNull(foodOrder.meat)
- Assertions.assertNotNull(foodOrder.condiments)
- Assertions.assertNotNull(foodOrder.fish)
- }
-
- @Test
- fun whenBuildingFoodOrderNamedSettingValues_thenFieldsContainsValues() {
-
- val foodOrder = FoodOrderNamed(
- meat = "bacon",
- fish = "salmon",
- condiments = "olive oil",
- bread = "white bread"
- )
-
- Assertions.assertEquals("white bread", foodOrder.bread)
- Assertions.assertEquals("bacon", foodOrder.meat)
- Assertions.assertEquals("olive oil", foodOrder.condiments)
- Assertions.assertEquals("salmon", foodOrder.fish)
- }
-
- @Test
- fun whenBuildingFoodOrderNamedWithoutSettingValues_thenFieldsNull() {
-
- val foodOrder = FoodOrderNamed()
-
- Assertions.assertNull(foodOrder.bread)
- Assertions.assertNull(foodOrder.meat)
- Assertions.assertNull(foodOrder.condiments)
- Assertions.assertNull(foodOrder.fish)
- }
-
-
- @Test
- fun whenBuildingFoodOrderApplySettingValues_thenFieldsNotNull() {
-
- val foodOrder = FoodOrderApply().apply {
- meat = "bacon"
- fish = "salmon"
- condiments = "olive oil"
- bread = "white bread"
- }
-
- Assertions.assertNotNull(foodOrder.bread)
- Assertions.assertNotNull(foodOrder.meat)
- Assertions.assertNotNull(foodOrder.condiments)
- Assertions.assertNotNull(foodOrder.fish)
- }
-
- @Test
- fun whenBuildingFoodOrderApplySettingValues_thenFieldsContainsValues() {
-
- val foodOrder = FoodOrderApply().apply {
- meat = "bacon"
- fish = "salmon"
- condiments = "olive oil"
- bread = "white bread"
- }
-
- Assertions.assertEquals("white bread", foodOrder.bread)
- Assertions.assertEquals("bacon", foodOrder.meat)
- Assertions.assertEquals("olive oil", foodOrder.condiments)
- Assertions.assertEquals("salmon", foodOrder.fish)
- }
-
- @Test
- fun whenBuildingFoodOrderApplyWithoutSettingValues_thenFieldsNull() {
-
- val foodOrder = FoodOrderApply()
-
- Assertions.assertNull(foodOrder.bread)
- Assertions.assertNull(foodOrder.meat)
- Assertions.assertNull(foodOrder.condiments)
- Assertions.assertNull(foodOrder.fish)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-io/README.md b/core-kotlin-modules/core-kotlin-io/README.md
deleted file mode 100644
index 89f9534d4b..0000000000
--- a/core-kotlin-modules/core-kotlin-io/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-## Core Kotlin I/O
-
-This module contains articles about core Kotlin I/O.
-
-### Relevant articles:
-- [InputStream to String in Kotlin](https://www.baeldung.com/kotlin-inputstream-to-string)
-- [Console I/O in Kotlin](https://www.baeldung.com/kotlin-console-io)
-- [Reading from a File in Kotlin](https://www.baeldung.com/kotlin-read-file)
-- [Writing to a File in Kotlin](https://www.baeldung.com/kotlin-write-file)
diff --git a/core-kotlin-modules/core-kotlin-io/pom.xml b/core-kotlin-modules/core-kotlin-io/pom.xml
deleted file mode 100644
index 9443cd0d5b..0000000000
--- a/core-kotlin-modules/core-kotlin-io/pom.xml
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
- 4.0.0
- core-kotlin-io
- core-kotlin-io
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
- ${kotlin.version}
-
-
- org.junit.jupiter
- junit-jupiter
- ${junit-jupiter.version}
- test
-
-
- org.mockito
- mockito-core
- ${mockito.version}
- test
-
-
- org.assertj
- assertj-core
- ${assertj.version}
- test
-
-
- org.jetbrains.kotlin
- kotlin-test
- ${kotlin.version}
- test
-
-
-
-
- 5.4.2
- 2.27.0
- 3.10.0
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-io/src/main/kotlin/com/baeldung/filesystem/FileReader.kt b/core-kotlin-modules/core-kotlin-io/src/main/kotlin/com/baeldung/filesystem/FileReader.kt
deleted file mode 100644
index 886a3fc51e..0000000000
--- a/core-kotlin-modules/core-kotlin-io/src/main/kotlin/com/baeldung/filesystem/FileReader.kt
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.baeldung.filesystem
-
-import java.io.File
-
-class FileReader {
-
- fun readFileLineByLineUsingForEachLine(fileName: String) = File(fileName).forEachLine { println(it) }
-
- fun readFileAsLinesUsingUseLines(fileName: String): List = File(fileName)
- .useLines { it.toList() }
-
- fun readFileAsLinesUsingBufferedReader(fileName: String): List = File(fileName).bufferedReader().readLines()
-
- fun readFileAsLinesUsingReadLines(fileName: String): List = File(fileName).readLines()
-
- fun readFileAsTextUsingInputStream(fileName: String) =
- File(fileName).inputStream().readBytes().toString(Charsets.UTF_8)
-
- fun readFileDirectlyAsText(fileName: String): String = File(fileName).readText(Charsets.UTF_8)
-
- fun readFileUsingGetResource(fileName: String) = this::class.java.getResource(fileName).readText(Charsets.UTF_8)
-
- fun readFileAsLinesUsingGetResourceAsStream(fileName: String) = this::class.java.getResourceAsStream(fileName).bufferedReader().readLines()
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-io/src/main/kotlin/com/baeldung/filesystem/FileWriter.kt b/core-kotlin-modules/core-kotlin-io/src/main/kotlin/com/baeldung/filesystem/FileWriter.kt
deleted file mode 100644
index 6dc9b95f1f..0000000000
--- a/core-kotlin-modules/core-kotlin-io/src/main/kotlin/com/baeldung/filesystem/FileWriter.kt
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.baeldung.filesystem
-
-import java.io.File
-
-class FileWriter {
-
- fun writeFileUsingPrintWriter(fileName: String, fileContent: String) =
- File(fileName).printWriter().use { out -> out.print(fileContent) }
-
- fun writeFileUsingBufferedWriter(fileName: String, fileContent: String) =
- File(fileName).bufferedWriter().use { out -> out.write(fileContent) }
-
- fun writeFileDirectly(fileName: String, fileContent: String) =
- File(fileName).writeText(fileContent)
-
- fun writeFileDirectlyAsBytes(fileName: String, fileContent: String) =
- File(fileName).writeBytes(fileContent.toByteArray())
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-io/src/main/kotlin/com/baeldung/inputstream/InputStreamExtension.kt b/core-kotlin-modules/core-kotlin-io/src/main/kotlin/com/baeldung/inputstream/InputStreamExtension.kt
deleted file mode 100644
index e94a2e84ee..0000000000
--- a/core-kotlin-modules/core-kotlin-io/src/main/kotlin/com/baeldung/inputstream/InputStreamExtension.kt
+++ /dev/null
@@ -1,18 +0,0 @@
-package com.baeldung.inputstream
-
-import java.io.InputStream
-
-fun InputStream.readUpToChar(stopChar: Char): String {
- val stringBuilder = StringBuilder()
- var currentChar = this.read().toChar()
- while (currentChar != stopChar) {
- stringBuilder.append(currentChar)
- currentChar = this.read().toChar()
- if (this.available() <= 0) {
- stringBuilder.append(currentChar)
- break
- }
- }
- return stringBuilder.toString()
-}
-
diff --git a/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/console/ConsoleIOUnitTest.kt b/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/console/ConsoleIOUnitTest.kt
deleted file mode 100644
index c73096fce6..0000000000
--- a/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/console/ConsoleIOUnitTest.kt
+++ /dev/null
@@ -1,79 +0,0 @@
-package com.baeldung.console
-
-import org.assertj.core.api.Assertions.assertThat
-import org.junit.jupiter.api.AfterEach
-import org.junit.jupiter.api.Test
-import org.mockito.Mockito.`when`
-import org.mockito.Mockito.mock
-import java.io.BufferedReader
-import java.io.ByteArrayInputStream
-import java.io.ByteArrayOutputStream
-import java.io.Console
-import java.io.InputStreamReader
-import java.io.PrintStream
-import java.util.*
-
-
-class ConsoleIOUnitTest {
-
- @Test
- fun givenText_whenPrint_thenPrintText() {
- val expectedTest = "Hello from Kotlin"
- val out = ByteArrayOutputStream()
- System.setOut(PrintStream(out))
-
- print(expectedTest)
- out.flush()
- val printedText = String(out.toByteArray())
-
- assertThat(printedText).isEqualTo(expectedTest)
- }
-
- @Test
- fun givenInput_whenRead_thenReadText() {
- val expectedTest = "Hello from Kotlin"
- val input = ByteArrayInputStream(expectedTest.toByteArray())
- System.setIn(input)
-
- val readText = readLine()
-
- assertThat(readText).isEqualTo(expectedTest)
- }
-
- @Test
- fun givenInput_whenReadWithScanner_thenReadText() {
- val expectedTest = "Hello from Kotlin"
- val scanner = Scanner(ByteArrayInputStream(expectedTest.toByteArray()))
-
- val readText = scanner.nextLine()
-
- assertThat(readText).isEqualTo(expectedTest)
- }
-
- @Test
- fun givenInput_whenReadWithBufferedReader_thenReadText() {
- val expectedTest = "Hello from Kotlin"
- val reader = BufferedReader(InputStreamReader(ByteArrayInputStream(expectedTest.toByteArray())))
-
- val readText = reader.readLine()
-
- assertThat(readText).isEqualTo(expectedTest)
- }
-
- @Test
- fun givenInput_whenReadWithConsole_thenReadText() {
- val expectedTest = "Hello from Kotlin"
- val console = mock(Console::class.java)
- `when`(console.readLine()).thenReturn(expectedTest)
-
- val readText = console.readLine()
-
- assertThat(readText).isEqualTo(expectedTest)
- }
-
- @AfterEach
- fun resetIO() {
- System.setOut(System.out)
- System.setIn(System.`in`)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/filesystem/FileReaderTest.kt b/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/filesystem/FileReaderTest.kt
deleted file mode 100644
index ad541c446e..0000000000
--- a/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/filesystem/FileReaderTest.kt
+++ /dev/null
@@ -1,67 +0,0 @@
-package com.baeldung.filesystem
-
-import org.junit.jupiter.api.Test
-import kotlin.test.assertTrue
-
-internal class FileReaderTest {
-
- private val fileName = "src/test/resources/Kotlin.in"
-
- private val fileReader = FileReader()
-
- @Test
- fun whenReadFileLineByLineUsingForEachLine_thenCorrect() {
- fileReader.readFileLineByLineUsingForEachLine(fileName)
- }
-
- @Test
- fun whenReadFileAsLinesUsingUseLines_thenCorrect() {
- val lines = fileReader.readFileAsLinesUsingUseLines(fileName)
-
- assertTrue { lines.contains("1. Concise") }
- }
-
- @Test
- fun whenReadFileAsLinesUsingBufferedReader_thenCorrect() {
- val lines = fileReader.readFileAsLinesUsingBufferedReader(fileName)
-
- assertTrue { lines.contains("2. Safe") }
- }
-
- @Test
- fun whenReadFileAsLinesUsingReadLines_thenCorrect() {
- val lines = fileReader.readFileAsLinesUsingReadLines(fileName)
-
- assertTrue { lines.contains("3. Interoperable") }
- }
-
- @Test
- fun whenReadFileAsTextUsingInputStream_thenCorrect() {
- val text = fileReader.readFileAsTextUsingInputStream(fileName)
-
- assertTrue { text.contains("4. Tool-friendly") }
- }
-
- @Test
- fun whenReadDirectlyAsText_thenCorrect() {
- val text = fileReader.readFileDirectlyAsText(fileName)
-
- assertTrue { text.contains("Hello to Kotlin") }
- }
-
- @Test
- fun whenReadFileAsTextUsingGetResource_thenCorrect() {
- val text = fileReader.readFileUsingGetResource("/Kotlin.in")
-
- assertTrue { text.contains("1. Concise") }
- }
-
- @Test
- fun whenReadFileUsingGetResourceAsStream_thenCorrect() {
- val lines = fileReader.readFileAsLinesUsingGetResourceAsStream("/Kotlin.in")
-
- assertTrue { lines.contains("3. Interoperable") }
- }
-
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/filesystem/FileWriterTest.kt b/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/filesystem/FileWriterTest.kt
deleted file mode 100644
index 91c66a4fee..0000000000
--- a/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/filesystem/FileWriterTest.kt
+++ /dev/null
@@ -1,43 +0,0 @@
-package com.baeldung.filesystem
-
-import org.junit.jupiter.api.Test
-import java.io.File
-import kotlin.test.assertEquals
-
-internal class FileWriterTest {
-
- private val fileName = "src/test/resources/Kotlin.out"
-
- private val fileContent = "Kotlin\nConcise, Safe, Interoperable, Tool-friendly"
-
- private val fileWriter = FileWriter()
-
- @Test
- fun whenWrittenWithPrintWriter_thenCorrect() {
- fileWriter.writeFileUsingPrintWriter(fileName, fileContent)
-
- assertEquals(fileContent, File(fileName).readText())
- }
-
- @Test
- fun whenWrittenWithBufferedWriter_thenCorrect() {
- fileWriter.writeFileUsingBufferedWriter(fileName, fileContent)
-
- assertEquals(fileContent, File(fileName).readText())
- }
-
- @Test
- fun whenWrittenDirectly_thenCorrect() {
- fileWriter.writeFileDirectly(fileName, fileContent)
-
- assertEquals(fileContent, File(fileName).readText())
- }
-
- @Test
- fun whenWrittenDirectlyAsBytes_thenCorrect() {
- fileWriter.writeFileDirectlyAsBytes(fileName, fileContent)
-
- assertEquals(fileContent, File(fileName).readText())
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/inputstream/InputStreamToStringTest.kt b/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/inputstream/InputStreamToStringTest.kt
deleted file mode 100644
index a0eb26b762..0000000000
--- a/core-kotlin-modules/core-kotlin-io/src/test/kotlin/com/baeldung/inputstream/InputStreamToStringTest.kt
+++ /dev/null
@@ -1,74 +0,0 @@
-package com.baeldung.inputstream
-
-import kotlinx.io.core.use
-import org.junit.Test
-import java.io.BufferedReader
-import java.io.File
-import kotlin.test.assertEquals
-
-class InputStreamToStringTest {
-
- private val fileName = "src/test/resources/inputstream2string.txt"
- private val endOfLine = System.lineSeparator()
- private val fileFullContent = "Computer programming can be a hassle$endOfLine" +
- "It's like trying to take a defended castle"
-
- @Test
- fun whenReadFileWithBufferedReader_thenFullFileContentIsReadAsString() {
- val file = File(fileName)
- val inputStream = file.inputStream()
- val content = inputStream.bufferedReader().use(BufferedReader::readText)
- assertEquals(fileFullContent, content)
- }
-
- @Test
- fun whenReadFileWithBufferedReaderReadText_thenFullFileContentIsReadAsString() {
- val file = File(fileName)
- val inputStream = file.inputStream()
- val reader = BufferedReader(inputStream.reader())
- var content: String
- try {
- content = reader.readText()
- } finally {
- reader.close()
- }
- assertEquals(fileFullContent, content)
- }
-
- @Test
- fun whenReadFileWithBufferedReaderManually_thenFullFileContentIsReadAsString() {
- val file = File(fileName)
- val inputStream = file.inputStream()
- val reader = BufferedReader(inputStream.reader())
- val content = StringBuilder()
- try {
- var line = reader.readLine()
- while (line != null) {
- content.append(line)
- line = reader.readLine()
- }
- } finally {
- reader.close()
- }
- assertEquals(fileFullContent.replace(endOfLine, ""), content.toString())
-
- }
-
- @Test
- fun whenReadFileUpToStopChar_thenPartBeforeStopCharIsReadAsString() {
- val file = File(fileName)
- val inputStream = file.inputStream()
- val content = inputStream.use { it.readUpToChar(' ') }
- assertEquals("Computer", content)
- }
-
- @Test
- fun whenReadFileWithoutContainingStopChar_thenFullFileContentIsReadAsString() {
- val file = File(fileName)
- val inputStream = file.inputStream()
- val content = inputStream.use { it.readUpToChar('-') }
- assertEquals(fileFullContent, content)
- }
-
-}
-
diff --git a/core-kotlin-modules/core-kotlin-io/src/test/resources/Kotlin.in b/core-kotlin-modules/core-kotlin-io/src/test/resources/Kotlin.in
deleted file mode 100644
index d140d4429e..0000000000
--- a/core-kotlin-modules/core-kotlin-io/src/test/resources/Kotlin.in
+++ /dev/null
@@ -1,5 +0,0 @@
-Hello to Kotlin. Its:
-1. Concise
-2. Safe
-3. Interoperable
-4. Tool-friendly
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-io/src/test/resources/Kotlin.out b/core-kotlin-modules/core-kotlin-io/src/test/resources/Kotlin.out
deleted file mode 100644
index 63d15d2528..0000000000
--- a/core-kotlin-modules/core-kotlin-io/src/test/resources/Kotlin.out
+++ /dev/null
@@ -1,2 +0,0 @@
-Kotlin
-Concise, Safe, Interoperable, Tool-friendly
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-io/src/test/resources/inputstream2string.txt b/core-kotlin-modules/core-kotlin-io/src/test/resources/inputstream2string.txt
deleted file mode 100644
index 40ef9fc5f3..0000000000
--- a/core-kotlin-modules/core-kotlin-io/src/test/resources/inputstream2string.txt
+++ /dev/null
@@ -1,2 +0,0 @@
-Computer programming can be a hassle
-It's like trying to take a defended castle
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-io/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker b/core-kotlin-modules/core-kotlin-io/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
deleted file mode 100644
index ca6ee9cea8..0000000000
--- a/core-kotlin-modules/core-kotlin-io/src/test/resources/mockito-extensions/org.mockito.plugins.MockMaker
+++ /dev/null
@@ -1 +0,0 @@
-mock-maker-inline
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/README.md b/core-kotlin-modules/core-kotlin-lang-2/README.md
deleted file mode 100644
index e7f232856b..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-## Core Kotlin Lang
-
-This module contains articles about core features in the Kotlin language.
-
-### Relevant articles:
-- [Kotlin return, break, continue Keywords](https://www.baeldung.com/kotlin-return-break-continue)
-- [Infix Functions in Kotlin](https://www.baeldung.com/kotlin-infix-functions)
-- [Lambda Expressions in Kotlin](https://www.baeldung.com/kotlin-lambda-expressions)
-- [Creating Java static final Equivalents in Kotlin](https://www.baeldung.com/kotlin-java-static-final)
-- [Lazy Initialization in Kotlin](https://www.baeldung.com/kotlin-lazy-initialization)
-- [Comprehensive Guide to Null Safety in Kotlin](https://www.baeldung.com/kotlin-null-safety)
-- [Kotlin Scope Functions](https://www.baeldung.com/kotlin-scope-functions)
-- [If-Else Expression in Kotlin](https://www.baeldung.com/kotlin/if-else-expression)
-- [Checking Whether a lateinit var Is Initialized in Kotlin](https://www.baeldung.com/kotlin/checking-lateinit)
-- [Not-Null Assertion (!!) Operator in Kotlin](https://www.baeldung.com/kotlin/not-null-assertion)
-- [[<-- Prev]](/core-kotlin-modules/core-kotlin-lang)
diff --git a/core-kotlin-modules/core-kotlin-lang-2/pom.xml b/core-kotlin-modules/core-kotlin-lang-2/pom.xml
deleted file mode 100644
index 753147728d..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- 4.0.0
- core-kotlin-lang-2
- core-kotlin-lang-2
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/main/java/com/baeldung/lazy/ClassWithHeavyInitialization.java b/core-kotlin-modules/core-kotlin-lang-2/src/main/java/com/baeldung/lazy/ClassWithHeavyInitialization.java
deleted file mode 100644
index 273749e17e..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/main/java/com/baeldung/lazy/ClassWithHeavyInitialization.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package com.baeldung.lazy;
-
-public class ClassWithHeavyInitialization {
- private ClassWithHeavyInitialization() {
- }
-
- private static class LazyHolder {
- public static final ClassWithHeavyInitialization INSTANCE = new ClassWithHeavyInitialization();
- }
-
- public static ClassWithHeavyInitialization getInstance() {
- return LazyHolder.INSTANCE;
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/main/kotlin/com/baeldung/ifelseexpression/IfElseExpressionExample.kt b/core-kotlin-modules/core-kotlin-lang-2/src/main/kotlin/com/baeldung/ifelseexpression/IfElseExpressionExample.kt
deleted file mode 100644
index f4e42a4f4f..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/main/kotlin/com/baeldung/ifelseexpression/IfElseExpressionExample.kt
+++ /dev/null
@@ -1,86 +0,0 @@
-package com.baeldung.ifelseexpression
-
-fun ifStatementUsage(): String {
- val number = 15
-
- if (number > 0) {
- return "Positive number"
- }
- return "Positive number not found"
-}
-
-fun ifElseStatementUsage(): String {
- val number = -50
-
- if (number > 0) {
- return "Positive number"
- } else {
- return "Negative number"
- }
-}
-
-fun ifElseExpressionUsage(): String {
- val number = -50
-
- val result = if (number > 0) {
- "Positive number"
- } else {
- "Negative number"
- }
- return result
-}
-
-fun ifElseExpressionSingleLineUsage(): String {
- val number = -50
- val result = if (number > 0) "Positive number" else "Negative number"
-
- return result
-}
-
-fun ifElseMultipleExpressionUsage(): Int {
- val x = 24
- val y = 73
-
- val result = if (x > y) {
- println("$x is greater than $y")
- x
- } else {
- println("$x is less than or equal to $y")
- y
- }
- return result
-}
-
-fun ifElseLadderExpressionUsage(): String {
- val number = 60
-
- val result = if (number < 0) {
- "Negative number"
- } else if (number in 0..9) {
- "Single digit number"
- } else if (number in 10..99) {
- "Double digit number"
- } else {
- "Number has more digits"
- }
- return result
-}
-
-fun ifElseNestedExpressionUsage(): Int {
- val x = 37
- val y = 89
- val z = 6
-
- val result = if (x > y) {
- if (x > z)
- x
- else
- z
- } else {
- if (y > z)
- y
- else
- z
- }
- return result
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/main/kotlin/com/baeldung/lambda/Lambda.kt b/core-kotlin-modules/core-kotlin-lang-2/src/main/kotlin/com/baeldung/lambda/Lambda.kt
deleted file mode 100644
index f35f9cdac2..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/main/kotlin/com/baeldung/lambda/Lambda.kt
+++ /dev/null
@@ -1,84 +0,0 @@
-package com.baeldung.lambda
-
-fun inferredType(input: Int): Int {
- val square = { number: Int -> number * number }
-
- return square(input)
-}
-
-fun intToBiggerString(argument: Int): String {
-
- val magnitude100String = { input: Int ->
- val magnitude = input * 100
- magnitude.toString()
- }
-
- return magnitude100String(argument)
-}
-
-fun manyLambda(nums: Array): List {
- val newList = nums.map { intToBiggerString(it) }
-
- return newList
-}
-
-fun empty() {
- val noReturn: (Int) -> Unit = { num -> println(num) }
-
- noReturn(5)
-}
-
-fun invokeLambda(lambda: (Double) -> Boolean): Boolean {
- return lambda(4.329)
-}
-
-fun extendString(arg: String, num: Int): String {
- val another: String.(Int) -> String = { this + it }
-
- return arg.another(num)
-}
-
-fun getCalculationLambda(): (Int) -> Any {
- val calculateGrade = { grade: Int ->
- when (grade) {
- in 0..40 -> "Fail"
- in 41..70 -> "Pass"
- in 71..100 -> "Distinction"
- else -> false
- }
- }
-
- return calculateGrade
-}
-
-fun getCalculationLambdaWithReturn(): (Int) -> String {
- val calculateGrade: Int.() -> String = lambda@{
- if (this < 0 || this > 100) {
- return@lambda "Error"
- } else if (this < 40) {
- return@lambda "Fail"
- } else if (this < 70) {
- return@lambda "Pass"
- }
-
- "Distinction"
- }
-
- return calculateGrade
-}
-
-fun getCalculationAnonymousFunction(): (Int) -> String {
- val calculateGrade = fun(grade: Int): String {
- if (grade < 0 || grade > 100) {
- return "Error"
- } else if (grade < 40) {
- return "Fail"
- } else if (grade < 70) {
- return "Pass"
- }
-
- return "Distinction"
- }
-
- return calculateGrade
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/main/kotlin/com/baeldung/scope/ScopeFunctions.kt b/core-kotlin-modules/core-kotlin-lang-2/src/main/kotlin/com/baeldung/scope/ScopeFunctions.kt
deleted file mode 100644
index 37ad8c65e2..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/main/kotlin/com/baeldung/scope/ScopeFunctions.kt
+++ /dev/null
@@ -1,25 +0,0 @@
-package com.baeldung.scope
-
-data class Student(var studentId: String = "", var name: String = "", var surname: String = "") {
-}
-
-data class Teacher(var teacherId: Int = 0, var name: String = "", var surname: String = "") {
- fun setId(anId: Int): Teacher = apply { teacherId = anId }
- fun setName(aName: String): Teacher = apply { name = aName }
- fun setSurname(aSurname: String): Teacher = apply { surname = aSurname }
-}
-
-data class Headers(val headerInfo: String)
-
-data class Response(val headers: Headers)
-
-data class RestClient(val url: String) {
- fun getResponse() = Response(Headers("some header info"))
-}
-
-data class BankAccount(val id: Int) {
- fun checkAuthorization(username: String) = Unit
- fun addPayee(payee: String) = Unit
- fun makePayment(paymentDetails: String) = Unit
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/java/com/baeldung/lazy/LazyJavaUnitTest.java b/core-kotlin-modules/core-kotlin-lang-2/src/test/java/com/baeldung/lazy/LazyJavaUnitTest.java
deleted file mode 100644
index 01c87d9543..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/java/com/baeldung/lazy/LazyJavaUnitTest.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package com.baeldung.lazy;
-
-import org.junit.Test;
-
-import static junit.framework.TestCase.assertTrue;
-
-public class LazyJavaUnitTest {
-
- @Test
- public void giveHeavyClass_whenInitLazy_thenShouldReturnInstanceOnFirstCall() {
- //when
- ClassWithHeavyInitialization classWithHeavyInitialization = ClassWithHeavyInitialization.getInstance();
- ClassWithHeavyInitialization classWithHeavyInitialization2 = ClassWithHeavyInitialization.getInstance();
-
- //then
- assertTrue(classWithHeavyInitialization == classWithHeavyInitialization2);
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/constant/ConstantUnitTest.kt b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/constant/ConstantUnitTest.kt
deleted file mode 100644
index d9bf433208..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/constant/ConstantUnitTest.kt
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.baeldung.constant
-
-import org.junit.jupiter.api.Test
-import kotlin.test.assertEquals
-
-class ConstantUnitTest {
-
- @Test
- fun givenConstant_whenCompareWithActualValue_thenReturnTrue() {
- assertEquals(10, TestKotlinConstantObject.COMPILE_TIME_CONST)
- assertEquals(30, TestKotlinConstantObject.RUN_TIME_CONST)
- assertEquals(20, TestKotlinConstantObject.JAVA_STATIC_FINAL_FIELD)
-
- assertEquals(40, TestKotlinConstantClass.COMPANION_OBJECT_NUMBER)
- }
-}
-
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/constant/TestKotlinConstantClass.kt b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/constant/TestKotlinConstantClass.kt
deleted file mode 100644
index 3c4d4db220..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/constant/TestKotlinConstantClass.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.constant
-
-
-class TestKotlinConstantClass {
- companion object {
- const val COMPANION_OBJECT_NUMBER = 40
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/constant/TestKotlinConstantObject.kt b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/constant/TestKotlinConstantObject.kt
deleted file mode 100644
index a6951b4481..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/constant/TestKotlinConstantObject.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.baeldung.constant
-
-
-object TestKotlinConstantObject {
- const val COMPILE_TIME_CONST = 10
-
- val RUN_TIME_CONST: Int
-
- @JvmField
- val JAVA_STATIC_FINAL_FIELD = 20
-
- init {
- RUN_TIME_CONST = TestKotlinConstantObject.COMPILE_TIME_CONST + 20;
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/ifelseexpression/IfElseExpressionExampleTest.kt b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/ifelseexpression/IfElseExpressionExampleTest.kt
deleted file mode 100644
index 266e41e07b..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/ifelseexpression/IfElseExpressionExampleTest.kt
+++ /dev/null
@@ -1,43 +0,0 @@
-package com.baeldung.ifelseexpression
-
-import org.junit.jupiter.api.Test
-import org.junit.jupiter.api.Assertions.assertEquals
-import org.junit.jupiter.api.Assertions.assertNotEquals
-
-class IfElseExpressionExampleTest {
-
- @Test
- fun givenNumber_whenIfStatementCalled_thenReturnsString() {
- assertEquals("Positive number", ifStatementUsage())
- }
-
- @Test
- fun givenNumber_whenIfElseStatementCalled_thenReturnsString() {
- assertEquals("Negative number", ifElseStatementUsage())
- }
-
- @Test
- fun givenNumber_whenIfElseExpressionCalled_thenReturnsString() {
- assertEquals("Negative number", ifElseExpressionUsage())
- }
-
- @Test
- fun givenNumber_whenIfElseExpressionSingleLineCalled_thenReturnsString() {
- assertEquals("Negative number", ifElseExpressionSingleLineUsage())
- }
-
- @Test
- fun givenNumber_whenIfElseMultipleExpressionCalled_thenReturnsNumber() {
- assertEquals(73, ifElseMultipleExpressionUsage())
- }
-
- @Test
- fun givenNumber_whenIfElseLadderExpressionCalled_thenReturnsString() {
- assertEquals("Double digit number", ifElseLadderExpressionUsage())
- }
-
- @Test
- fun givenNumber_whenIfElseNestedExpressionCalled_thenReturnsNumber() {
- assertEquals(89, ifElseNestedExpressionUsage())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/infixfunctions/InfixFunctionsTest.kt b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/infixfunctions/InfixFunctionsTest.kt
deleted file mode 100644
index 0b09d34013..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/infixfunctions/InfixFunctionsTest.kt
+++ /dev/null
@@ -1,51 +0,0 @@
-package com.baeldung.infixfunctions
-
-import org.junit.Assert
-import org.junit.Test
-
-class InfixFunctionsTest {
- @Test
- fun testColours() {
- val color = 0x123456
- val red = (color and 0xff0000) shr 16
- val green = (color and 0x00ff00) shr 8
- val blue = (color and 0x0000ff) shr 0
-
- Assert.assertEquals(0x12, red)
- Assert.assertEquals(0x34, green)
- Assert.assertEquals(0x56, blue)
- }
-
- @Test
- fun testNewAssertions() {
- class Assertion(private val target: T) {
- infix fun isEqualTo(other: T) {
- Assert.assertEquals(other, target)
- }
-
- infix fun isDifferentFrom(other: T) {
- Assert.assertNotEquals(other, target)
- }
- }
-
- val result = Assertion(5)
-
- result isEqualTo 5
-
- // The following two lines are expected to fail
- // result isEqualTo 6
- // result isDifferentFrom 5
- }
-
- @Test
- fun testNewStringMethod() {
- infix fun String.substringMatches(r: Regex) : List {
- return r.findAll(this)
- .map { it.value }
- .toList()
- }
-
- val matches = "a bc def" substringMatches ".*? ".toRegex()
- Assert.assertEquals(listOf("a ", "bc "), matches)
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/lambda/LambdaKotlinUnitTest.java b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/lambda/LambdaKotlinUnitTest.java
deleted file mode 100644
index 91c777c036..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/lambda/LambdaKotlinUnitTest.java
+++ /dev/null
@@ -1,36 +0,0 @@
-package com.baeldung.lambda;
-
-import kotlin.jvm.functions.Function1;
-import org.junit.jupiter.api.Test;
-
-import static org.junit.jupiter.api.Assertions.assertEquals;
-import static org.junit.jupiter.api.Assertions.assertTrue;
-
-/**
- * Created by Paul Jervis on 24/04/2018.
- */
-class LambdaKotlinUnitTest {
-
- @Test
- void givenJava6_whenUsingAnonnymousClass_thenReturnLambdaResult() {
- assertTrue(LambdaKt.invokeLambda(new Function1() {
- @Override
- public Boolean invoke(Double c) {
- return c >= 0;
- }
- }));
- }
-
- @Test
- void givenJava8_whenUsingLambda_thenReturnLambdaResult() {
- assertTrue(LambdaKt.invokeLambda(c -> c >= 0));
- }
-
- @Test
- void givenJava8_whenCallingMethodWithStringExtension_thenImplementExtension() {
- String actual = LambdaKt.extendString("Word", 90);
- String expected = "Word90";
-
- assertEquals(expected, actual);
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/lambda/LambdaTest.kt b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/lambda/LambdaTest.kt
deleted file mode 100644
index bddabee462..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/lambda/LambdaTest.kt
+++ /dev/null
@@ -1,96 +0,0 @@
-package com.baeldung.lambda
-
-import org.junit.jupiter.api.Assertions.assertFalse
-import org.junit.jupiter.api.Assertions.assertTrue
-import org.junit.jupiter.api.Test
-import kotlin.test.assertEquals
-
-class LambdaTest {
-
- @Test
- fun whenCallingALambda_thenPerformTheAction() {
- assertEquals(9, inferredType(3))
- }
-
- @Test
- fun whenCallingAMoreComplicatedLambda_thenPerformTheAction() {
- assertEquals("500", intToBiggerString(5))
- }
-
- @Test
- fun whenPassingALambdaObject_thenCallTriggerLambda() {
- val lambda = { arg: Double ->
- arg == 4.329
- }
-
- val result = invokeLambda(lambda)
-
- assertTrue(result)
- }
-
- @Test
- fun whenPassingALambdaLiteral_thenCallTriggerLambda() {
- val result = invokeLambda({
- true
- })
-
- assertTrue(result)
- }
-
- @Test
- fun whenPassingALambdaLiteralOutsideBrackets_thenCallTriggerLambda() {
- val result = invokeLambda { arg -> arg.isNaN() }
-
- assertFalse(result)
- }
-
- @Test
- fun whenPassingAnAnonymousFunction_thenCallTriggerLambda() {
- val result = invokeLambda(fun(arg: Double): Boolean {
- return arg >= 0
- })
-
- assertTrue(result)
- }
-
- @Test
- fun whenUsingLambda_thenCalculateGrade() {
- val gradeCalculation = getCalculationLambda()
-
- assertEquals(false, gradeCalculation(-40))
- assertEquals("Pass", gradeCalculation(50))
- }
-
- @Test
- fun whenUsingReturnStatementLambda_thenCalculateGrade() {
- val gradeCalculation: Int.() -> String = getCalculationLambdaWithReturn()
-
- assertEquals("Distinction", 80.gradeCalculation())
- assertEquals("Error", 244_234_324.gradeCalculation())
- }
-
- @Test
- fun whenUsingAnonymousFunction_thenCalculateGrade() {
- val gradeCalculation = getCalculationAnonymousFunction()
-
- assertEquals("Error", gradeCalculation(244_234_324))
- assertEquals("Pass", gradeCalculation(50))
- }
-
- @Test
- fun whenPassingAFunctionReference_thenCallTriggerLambda() {
- val reference = Double::isFinite
- val result = invokeLambda(reference)
-
- assertTrue(result)
- }
-
- @Test
- fun givenArray_whenMappingArray_thenPerformCalculationOnAllElements() {
- val expected = listOf("100", "200", "300", "400", "500")
- val actual = manyLambda(arrayOf(1, 2, 3, 4, 5))
-
- assertEquals(expected, actual)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/late/LateInitUnitTest.kt b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/late/LateInitUnitTest.kt
deleted file mode 100644
index c99e438742..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/late/LateInitUnitTest.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.baeldung.late
-
-import org.junit.Test
-import kotlin.test.assertFalse
-import kotlin.test.assertTrue
-
-class LateInitUnitTest {
-
- private lateinit var answer: String
-
- @Test(expected = UninitializedPropertyAccessException::class)
- fun givenLateInit_WhenNotInitialized_ShouldThrowAnException() {
- answer.length
- }
-
- @Test
- fun givenLateInit_TheIsInitialized_ReturnsTheInitializationStatus() {
- assertFalse { this::answer.isInitialized }
- answer = "42"
- assertTrue { this::answer.isInitialized }
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/lazy/LazyUnitTest.kt b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/lazy/LazyUnitTest.kt
deleted file mode 100644
index b9b21ed4d9..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/lazy/LazyUnitTest.kt
+++ /dev/null
@@ -1,68 +0,0 @@
-package com.baeldung.lazy
-
-import org.junit.Test
-import java.util.concurrent.CountDownLatch
-import java.util.concurrent.Executors
-import java.util.concurrent.TimeUnit
-import java.util.concurrent.atomic.AtomicInteger
-import kotlin.test.assertEquals
-
-class LazyUnitTest {
- @Test
- fun givenLazyValue_whenGetIt_thenShouldInitializeItOnlyOnce() {
- //given
- val numberOfInitializations: AtomicInteger = AtomicInteger()
- val lazyValue: ClassWithHeavyInitialization by lazy {
- numberOfInitializations.incrementAndGet()
- ClassWithHeavyInitialization()
- }
- //when
- println(lazyValue)
- println(lazyValue)
-
- //then
- assertEquals(numberOfInitializations.get(), 1)
- }
-
- @Test
- fun givenLazyValue_whenGetItUsingPublication_thenCouldInitializeItMoreThanOnce() {
- //given
- val numberOfInitializations: AtomicInteger = AtomicInteger()
- val lazyValue: ClassWithHeavyInitialization by lazy(LazyThreadSafetyMode.PUBLICATION) {
- numberOfInitializations.incrementAndGet()
- ClassWithHeavyInitialization()
- }
- val executorService = Executors.newFixedThreadPool(2)
- val countDownLatch = CountDownLatch(1)
- //when
- executorService.submit { countDownLatch.await(); println(lazyValue) }
- executorService.submit { countDownLatch.await(); println(lazyValue) }
- countDownLatch.countDown()
-
- //then
- executorService.shutdown()
- executorService.awaitTermination(5, TimeUnit.SECONDS)
- //assertEquals(numberOfInitializations.get(), 2)
- }
-
- class ClassWithHeavyInitialization {
-
- }
-
-
- lateinit var a: String
- @Test
- fun givenLateInitProperty_whenAccessItAfterInit_thenPass() {
- //when
- a = "it"
- println(a)
-
- //then not throw
- }
-
- @Test(expected = UninitializedPropertyAccessException::class)
- fun givenLateInitProperty_whenAccessItWithoutInit_thenThrow() {
- //when
- println(a)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/nullsafety/NullSafetyTest.kt b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/nullsafety/NullSafetyTest.kt
deleted file mode 100644
index 66fc043581..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/nullsafety/NullSafetyTest.kt
+++ /dev/null
@@ -1,161 +0,0 @@
-package com.baeldung.nullsafety
-
-import org.junit.Test
-import kotlin.test.assertEquals
-import kotlin.test.assertFailsWith
-import kotlin.test.assertNull
-import kotlin.test.assertTrue
-
-
-class NullSafetyTest {
-
- @Test
- fun givenNonNullableField_whenAssignValueToIt_thenNotNeedToCheckAgainstNull() {
- //given
- var a: String = "value"
- //a = null compilation error
-
- //then
- assertEquals(a.length, 5)
- }
-
- @Test
- fun givenNullableField_whenReadValue_thenNeedToCheckAgainstNull() {
- //given
- var b: String? = "value"
- b = null
-
- //when
- if (b != null) {
-
- } else {
- assertNull(b)
- }
- }
-
- @Test
- fun givenComplexObject_whenUseSafeCall_thenShouldChainCallsResultingWithValue() {
- //given
- val p: Person? = Person(Country("ENG"))
-
- //when
- val res = p?.country?.code
-
- //then
- assertEquals(res, "ENG")
- }
-
- @Test
- fun givenComplexObject_whenUseSafeCall_thenShouldChainCallsResultingWithNull() {
- //given
- val p: Person? = Person(Country(null))
-
- //when
- val res = p?.country?.code
-
- //then
- assertNull(res)
- }
-
- @Test
- fun givenCollectionOfObjects_whenUseLetOperator_thenShouldApplyActionOnlyOnNonNullValue() {
- //given
- val firstName = "Tom"
- val secondName = "Michael"
- val names: List = listOf(firstName, null, secondName)
-
- //when
- var res = listOf()
- for (item in names) {
- item?.let { res = res.plus(it); it }
- ?.also{it -> println("non nullable value: $it")}
- }
-
- //then
- assertEquals(2, res.size)
- assertTrue { res.contains(firstName) }
- assertTrue { res.contains(secondName) }
- }
-
- @Test
- fun fivenCollectionOfObject_whenUseRunOperator_thenExecuteActionOnNonNullValue(){
- //given
- val firstName = "Tom"
- val secondName = "Michael"
- val names: List = listOf(firstName, null, secondName)
-
- //when
- var res = listOf()
- for (item in names) {
- item?.run{res = res.plus(this)}
- }
-
- //then
- assertEquals(2, res.size)
- assertTrue { res.contains(firstName) }
- assertTrue { res.contains(secondName) }
- }
-
- @Test
- fun givenNullableReference_whenUseElvisOperator_thenShouldReturnValueIfReferenceIsNotNull() {
- //given
- val value: String? = "name"
-
- //when
- val res = value?.length ?: -1
-
- //then
- assertEquals(res, 4)
- }
-
- @Test
- fun givenNullableReference_whenUseElvisOperator_thenShouldReturnDefaultValueIfReferenceIsNull() {
- //given
- val value: String? = null
-
- //when
- val res = value?.length ?: -1
-
- //then
- assertEquals(res, -1)
- }
-
- @Test
- fun givenNullableField_whenUsingDoubleExclamationMarkOperatorOnNull_thenThrowNPE() {
- //given
- var b: String? = "value"
- b = null
-
- //when
- assertFailsWith {
- b!!.length
- }
- }
-
- @Test
- fun givenNullableField_whenUsingDoubleExclamationMarkOperatorOnNotNull_thenReturnValue() {
- //given
- val b: String? = "value"
-
- //then
- assertEquals(b!!.length, 5)
- }
-
- @Test
- fun givenNullableList_whenUseFilterNotNullMethod_thenRemoveALlNullValues() {
- //given
- val list: List = listOf("a", null, "b")
-
- //when
- val res = list.filterNotNull()
-
- //then
- assertEquals(res.size, 2)
- assertTrue { res.contains("a") }
- assertTrue { res.contains("b") }
- }
-}
-
-data class Person(val country: Country?)
-
-data class Country(val code: String?)
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/scope/ScopeFunctionsUnitTest.kt b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/scope/ScopeFunctionsUnitTest.kt
deleted file mode 100644
index cb3ed98006..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/scope/ScopeFunctionsUnitTest.kt
+++ /dev/null
@@ -1,143 +0,0 @@
-package com.baeldung.scope
-
-import org.junit.Test
-import kotlin.test.assertTrue
-
-
-class ScopeFunctionsUnitTest {
-
- class Logger {
-
- var called : Boolean = false
-
- fun info(message: String) {
- called = true
- }
-
- fun wasCalled() = called
- }
-
- @Test
- fun shouldTransformWhenLetFunctionUsed() {
- val stringBuider = StringBuilder()
- val numberOfCharacters = stringBuider.let {
- it.append("This is a transformation function.")
- it.append("It takes a StringBuilder instance and returns the number of characters in the generated String")
- it.length
- }
-
- assertTrue {
- numberOfCharacters == 128
- }
- }
-
- @Test
- fun shouldHandleNullabilityWhenLetFunctionUsed() {
-
- val message: String? = "hello there!"
- val charactersInMessage = message?.let {
- "At this point is safe to reference the variable. Let's print the message: $it"
- } ?: "default value"
-
- assertTrue {
- charactersInMessage.equals("At this point is safe to reference the variable. Let's print the message: hello there!")
- }
-
- val aNullMessage = null
- val thisIsNull = aNullMessage?.let {
- "At this point it would be safe to reference the variable. But it will not really happen because it is null. Let's reference: $it"
- } ?: "default value"
-
- assertTrue {
- thisIsNull.equals("default value")
- }
- }
-
- @Test
- fun shouldInitializeObjectWhenUsingApply() {
- val aStudent = Student().apply {
- studentId = "1234567"
- name = "Mary"
- surname = "Smith"
- }
-
- assertTrue {
- aStudent.name.equals("Mary")
- }
- }
-
- @Test
- fun shouldAllowBuilderStyleObjectDesignWhenApplyUsedInClassMethods() {
- val teacher = Teacher()
- .setId(1000)
- .setName("Martha")
- .setSurname("Spector")
-
- assertTrue {
- teacher.surname.equals("Spector")
- }
- }
-
- @Test
- fun shouldAllowSideEffectWhenUsingAlso() {
- val restClient = RestClient("http://www.someurl.com")
-
- val logger = Logger()
-
- val headers = restClient
- .getResponse()
- .also { logger.info(it.toString()) }
- .headers
-
- assertTrue {
- logger.wasCalled() && headers.headerInfo.equals("some header info")
- }
-
- }
-
- @Test
- fun shouldInitializeFieldWhenAlsoUsed() {
- val aStudent = Student().also { it.name = "John"}
-
- assertTrue {
- aStudent.name.equals("John")
- }
- }
-
- @Test
- fun shouldLogicallyGroupObjectCallsWhenUsingWith() {
- val bankAccount = BankAccount(1000)
- with (bankAccount) {
- checkAuthorization("someone")
- addPayee("some payee")
- makePayment("payment information")
- }
- }
-
- @Test
- fun shouldConvertObjectWhenRunUsed() {
- val stringBuider = StringBuilder()
- val numberOfCharacters = stringBuider.run {
- append("This is a transformation function.")
- append("It takes a StringBuilder instance and returns the number of characters in the generated String")
- length
- }
-
- assertTrue {
- numberOfCharacters == 128
- }
- }
-
- @Test
- fun shouldHandleNullabilityWhenRunIsUsed() {
- val message: String? = "hello there!"
- val charactersInMessage = message?.run {
- "At this point is safe to reference the variable. Let's print the message: $this"
- } ?: "default value"
-
- assertTrue {
- charactersInMessage.equals("At this point is safe to reference the variable. Let's print the message: hello there!")
- }
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/structuraljump/StructuralJumpUnitTest.kt b/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/structuraljump/StructuralJumpUnitTest.kt
deleted file mode 100644
index 88011ab396..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-2/src/test/kotlin/com/baeldung/structuraljump/StructuralJumpUnitTest.kt
+++ /dev/null
@@ -1,121 +0,0 @@
-package com.baeldung.structuraljump
-
-import org.junit.Test
-import kotlin.test.assertEquals
-import kotlin.test.assertFalse
-
-class StructuralJumpUnitTest {
-
- @Test
- fun givenLoop_whenBreak_thenComplete() {
- var value = ""
- for (i in "hello_world") {
- if (i == '_')
- break
- value += i.toString()
- }
- assertEquals("hello", value)
- }
- @Test
- fun givenLoop_whenBreakWithLabel_thenComplete() {
- var value = ""
- outer_loop@ for (i in 'a'..'d') {
- for (j in 1..3) {
- value += "" + i + j
- if (i == 'b' && j == 1)
- break@outer_loop
- }
- }
- assertEquals("a1a2a3b1", value)
- }
-
- @Test
- fun givenLoop_whenContinue_thenComplete() {
- var result = ""
- for (i in "hello_world") {
- if (i == '_')
- continue
- result += i
- }
- assertEquals("helloworld", result)
- }
- @Test
- fun givenLoop_whenContinueWithLabel_thenComplete() {
- var result = ""
- outer_loop@ for (i in 'a'..'c') {
- for (j in 1..3) {
- if (i == 'b')
- continue@outer_loop
- result += "" + i + j
- }
- }
- assertEquals("a1a2a3c1c2c3", result)
- }
-
- @Test
- fun givenLambda_whenReturn_thenComplete() {
- var result = returnInLambda();
- assertEquals("hello", result)
- }
-
- private fun returnInLambda(): String {
- var result = ""
- "hello_world".forEach {
- // non-local return directly to the caller
- if (it == '_') return result
- result += it.toString()
- }
- //this line won't be reached
- return result;
- }
-
- @Test
- fun givenLambda_whenReturnWithExplicitLabel_thenComplete() {
- var result = ""
- "hello_world".forEach lit@{
- if (it == '_') {
- // local return to the caller of the lambda, i.e. the forEach loop
- return@lit
- }
- result += it.toString()
- }
- assertEquals("helloworld", result)
- }
-
- @Test
- fun givenLambda_whenReturnWithImplicitLabel_thenComplete() {
- var result = ""
- "hello_world".forEach {
- if (it == '_') {
- // local return to the caller of the lambda, i.e. the forEach loop
- return@forEach
- }
- result += it.toString()
- }
- assertEquals("helloworld", result)
- }
-
- @Test
- fun givenAnonymousFunction_return_thenComplete() {
- var result = ""
- "hello_world".forEach(fun(element) {
- // local return to the caller of the anonymous fun, i.e. the forEach loop
- if (element == '_') return
- result += element.toString()
- })
- assertEquals("helloworld", result)
- }
-
- @Test
- fun givenAnonymousFunction_returnToLabel_thenComplete() {
- var result = ""
- run loop@{
- "hello_world".forEach {
- // non-local return from the lambda passed to run
- if (it == '_') return@loop
- result += it.toString()
- }
- }
- assertEquals("hello", result)
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop-2/README.md b/core-kotlin-modules/core-kotlin-lang-oop-2/README.md
deleted file mode 100644
index a62a25c01d..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop-2/README.md
+++ /dev/null
@@ -1,11 +0,0 @@
-## Core Kotlin Lang OOP
-
-This module contains articles about Object-Oriented Programming in Kotlin
-
-### Relevant articles:
-
-- [Generics in Kotlin](https://www.baeldung.com/kotlin-generics)
-- [Delegated Properties in Kotlin](https://www.baeldung.com/kotlin-delegated-properties)
-- [Delegation Pattern in Kotlin](https://www.baeldung.com/kotlin-delegation-pattern)
-- [Anonymous Inner Classes in Kotlin](https://www.baeldung.com/kotlin/anonymous-inner-classes)
-- [[<-- Prev]](/core-kotlin-modules/core-kotlin-lang-oop)
diff --git a/core-kotlin-modules/core-kotlin-lang-oop-2/pom.xml b/core-kotlin-modules/core-kotlin-lang-oop-2/pom.xml
deleted file mode 100644
index f0adea121e..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop-2/pom.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
- 4.0.0
- core-kotlin-lang-oop-2
- core-kotlin-lang-oop-2
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.assertj
- assertj-core
- ${assertj.version}
- test
-
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/anonymous/Anonymous.kt b/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/anonymous/Anonymous.kt
deleted file mode 100644
index ea471f5d00..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/anonymous/Anonymous.kt
+++ /dev/null
@@ -1,41 +0,0 @@
-package com.baeldung.anonymous
-
-import java.io.Serializable
-import java.nio.channels.Channel
-
-fun main() {
- val channel = object : Channel {
- override fun isOpen() = false
-
- override fun close() {
- }
- }
-
- val maxEntries = 10
- val lruCache = object : LinkedHashMap(10, 0.75f) {
-
- override fun removeEldestEntry(eldest: MutableMap.MutableEntry?): Boolean {
- return size > maxEntries
- }
- }
-
- val map = object : LinkedHashMap() {
- // omitted
- }
-
- val serializableChannel = object : Channel, Serializable {
- override fun isOpen(): Boolean {
- TODO("Not yet implemented")
- }
-
- override fun close() {
- TODO("Not yet implemented")
- }
- }
-
- val obj = object {
- val question = "answer"
- val answer = 42
- }
- println("The ${obj.question} is ${obj.answer}")
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/generic/Reified.kt b/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/generic/Reified.kt
deleted file mode 100644
index 37a632fe41..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/generic/Reified.kt
+++ /dev/null
@@ -1,6 +0,0 @@
-inline fun Iterable<*>.filterIsInstance() = filter { it is T }
-
-fun main(args: Array) {
- val set = setOf("1984", 2, 3, "Brave new world", 11)
- println(set.filterIsInstance())
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/Database.kt b/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/Database.kt
deleted file mode 100644
index 9ea9f027fc..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/Database.kt
+++ /dev/null
@@ -1,35 +0,0 @@
-package com.baeldung.kotlin.delegates
-
-val data = arrayOf>(
- mutableMapOf(
- "id" to 1,
- "name" to "George",
- "age" to 4
- ),
- mutableMapOf(
- "id" to 2,
- "name" to "Charlotte",
- "age" to 2
- )
-)
-
-class NoRecordFoundException(id: Int) : Exception("No record found for id $id") {
- init {
- println("No record found for ID $id")
- }
-}
-
-fun queryForValue(field: String, id: Int): Any {
- println("Loading record $id from the fake database")
- val value = data.firstOrNull { it["id"] == id }
- ?.get(field) ?: throw NoRecordFoundException(id)
- println("Loaded value $value for field $field of record $id")
- return value
-}
-
-fun update(field: String, id: Int, value: Any?) {
- println("Updating field $field of record $id to value $value in the fake database")
- data.firstOrNull { it["id"] == id }
- ?.put(field, value)
- ?: throw NoRecordFoundException(id)
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/DatabaseDelegate.kt b/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/DatabaseDelegate.kt
deleted file mode 100644
index c1c0f8823c..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/DatabaseDelegate.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.baeldung.kotlin.delegates
-
-import kotlin.properties.ReadWriteProperty
-import kotlin.reflect.KProperty
-
-class DatabaseDelegate(private val field: String, private val id: Int) : ReadWriteProperty {
- override fun getValue(thisRef: R, property: KProperty<*>): T =
- queryForValue(field, id) as T
-
- override fun setValue(thisRef: R, property: KProperty<*>, value: T) {
- update(field, id, value)
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/InterfaceDelegation.kt b/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/InterfaceDelegation.kt
deleted file mode 100644
index 8e261aacf2..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/InterfaceDelegation.kt
+++ /dev/null
@@ -1,64 +0,0 @@
-package com.baeldung.kotlin.delegates
-
-import java.util.concurrent.locks.ReentrantLock
-import kotlin.concurrent.withLock
-
-interface Producer {
-
- fun produce(): String
-}
-
-class ProducerImpl : Producer {
-
- override fun produce() = "ProducerImpl"
-}
-
-class EnhancedProducer(private val delegate: Producer) : Producer by delegate {
-
- override fun produce() = "${delegate.produce()} and EnhancedProducer"
-}
-
-interface MessageService {
-
- fun processMessage(message: String): String
-}
-
-class MessageServiceImpl : MessageService {
- override fun processMessage(message: String): String {
- return "MessageServiceImpl: $message"
- }
-}
-
-interface UserService {
-
- fun processUser(userId: String): String
-}
-
-class UserServiceImpl : UserService {
-
- override fun processUser(userId: String): String {
- return "UserServiceImpl: $userId"
- }
-}
-
-class CompositeService : UserService by UserServiceImpl(), MessageService by MessageServiceImpl()
-
-interface Service {
-
- val seed: Int
-
- fun serve(action: (Int) -> Unit)
-}
-
-class ServiceImpl : Service {
-
- override val seed = 1
-
- override fun serve(action: (Int) -> Unit) {
- action(seed)
- }
-}
-
-class ServiceDecorator : Service by ServiceImpl() {
- override val seed = 2
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/User.kt b/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/User.kt
deleted file mode 100644
index 7788305ea1..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop-2/src/main/kotlin/com/baeldung/kotlin/delegates/User.kt
+++ /dev/null
@@ -1,6 +0,0 @@
-package com.baeldung.kotlin.delegates
-
-class User(val id: Int) {
- var name: String by DatabaseDelegate("name", id)
- var age: Int by DatabaseDelegate("age", id)
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/GenericsTest.kt b/core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/GenericsTest.kt
deleted file mode 100644
index b189d0f483..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/GenericsTest.kt
+++ /dev/null
@@ -1,143 +0,0 @@
-package com.baeldung.kotlin
-
-import org.junit.Test
-import kotlin.test.assertEquals
-import kotlin.test.assertTrue
-
-class GenericsTest {
-
- @Test
- fun givenParametrizeClass_whenInitializeItWithSpecificType_thenShouldBeParameterized() {
- //given
- val parameterizedClass = ParameterizedClass("string-value")
-
- //when
- val res = parameterizedClass.getValue()
-
- //then
- assertTrue(res is String)
- }
-
- @Test
- fun givenParametrizeClass_whenInitializeIt_thenShouldBeParameterizedByInferredType() {
- //given
- val parameterizedClass = ParameterizedClass("string-value")
-
- //when
- val res = parameterizedClass.getValue()
-
- //then
- assertTrue(res is String)
- }
-
- @Test
- fun givenParameterizedProducerByOutKeyword_whenGetValue_thenCanAssignItToSuperType() {
- //given
- val parameterizedProducer = ParameterizedProducer("string")
-
- //when
- val ref: ParameterizedProducer = parameterizedProducer
-
- //then
- assertTrue(ref is ParameterizedProducer)
- }
-
- @Test
- fun givenParameterizedConsumerByInKeyword_whenGetValue_thenCanAssignItToSubType() {
- //given
- val parameterizedConsumer = ParameterizedConsumer()
-
- //when
- val ref: ParameterizedConsumer = parameterizedConsumer
-
- //then
- assertTrue(ref is ParameterizedConsumer)
- }
-
- @Test
- fun givenTypeProjections_whenOperateOnTwoList_thenCanAcceptListOfSubtypes() {
- //given
- val ints: Array = arrayOf(1, 2, 3)
- val any: Array = arrayOfNulls(3)
-
- //when
- copy(ints, any)
-
- //then
- assertEquals(any[0], 1)
- assertEquals(any[1], 2)
- assertEquals(any[2], 3)
-
- }
-
- fun copy(from: Array, to: Array) {
- assert(from.size == to.size)
- for (i in from.indices)
- to[i] = from[i]
- }
-
- @Test
- fun givenTypeProjection_whenHaveArrayOfIn_thenShouldAddElementsOfSubtypesToIt() {
- //given
- val objects: Array = arrayOfNulls(1)
-
- //when
- fill(objects, 1)
-
- //then
- assertEquals(objects[0], 1)
- }
-
- fun fill(dest: Array, value: Int) {
- dest[0] = value
- }
-
- @Test
- fun givenStartProjection_whenPassAnyType_thenCompile() {
- //given
- val array = arrayOf(1,2,3)
-
- //then
- printArray(array)
-
- }
-
- fun printArray(array: Array<*>) {
- array.forEach { println(it) }
- }
-
- @Test
- fun givenFunctionWithDefinedGenericConstraints_whenCallWithProperType_thenCompile(){
- //given
- val listOfInts = listOf(5,2,3,4,1)
-
- //when
- val sorted = sort(listOfInts)
-
- //then
- assertEquals(sorted, listOf(1,2,3,4,5))
- }
-
- fun > sort(list: List): List{
- return list.sorted()
- }
-
- class ParameterizedClass(private val value: A) {
-
- fun getValue(): A {
- return value
- }
- }
-
- class ParameterizedProducer(private val value: T) {
- fun get(): T {
- return value
- }
- }
-
- class ParameterizedConsumer {
- fun toString(value: T): String {
- return value.toString()
- }
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/kotlin/delegates/DatabaseDelegatesTest.kt b/core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/kotlin/delegates/DatabaseDelegatesTest.kt
deleted file mode 100644
index fc50730dfa..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/kotlin/delegates/DatabaseDelegatesTest.kt
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.baeldung.kotlin.delegates
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class DatabaseDelegatesTest {
- @Test
- fun testGetKnownFields() {
- val user = User(1)
- assertEquals("George", user.name)
- assertEquals(4, user.age)
- }
-
- @Test
- fun testSetKnownFields() {
- val user = User(2)
- user.age = 3
- assertEquals(3, user.age)
- }
-
- @Test(expected = NoRecordFoundException::class)
- fun testGetKnownField() {
- val user = User(3)
- user.name
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/kotlin/delegates/InterfaceDelegationTest.kt b/core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/kotlin/delegates/InterfaceDelegationTest.kt
deleted file mode 100644
index e65032acd4..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop-2/src/test/kotlin/com/baeldung/kotlin/delegates/InterfaceDelegationTest.kt
+++ /dev/null
@@ -1,28 +0,0 @@
-package com.baeldung.kotlin.delegates
-
-import org.assertj.core.api.Assertions.assertThat
-import org.junit.Test
-
-class InterfaceDelegationTest {
-
- @Test
- fun `when delegated implementation is used then it works as expected`() {
- val producer = EnhancedProducer(ProducerImpl())
- assertThat(producer.produce()).isEqualTo("ProducerImpl and EnhancedProducer")
- }
-
- @Test
- fun `when composite delegation is used then it works as expected`() {
- val service = CompositeService()
- assertThat(service.processMessage("message")).isEqualTo("MessageServiceImpl: message")
- assertThat(service.processUser("user")).isEqualTo("UserServiceImpl: user")
- }
-
- @Test
- fun `when decoration is used then delegate knows nothing about it`() {
- val service = ServiceDecorator()
- service.serve {
- assertThat(it).isEqualTo(1)
- }
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/README.md b/core-kotlin-modules/core-kotlin-lang-oop/README.md
deleted file mode 100644
index 0c1aeb7850..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-## Core Kotlin Lang OOP
-
-This module contains articles about Object-Oriented Programming in Kotlin
-
-### Relevant articles:
-
-- [Data Classes in Kotlin](https://www.baeldung.com/kotlin-data-classes)
-- [Sealed Classes in Kotlin](https://www.baeldung.com/kotlin-sealed-classes)
-- [Extension Methods in Kotlin](https://www.baeldung.com/kotlin-extension-methods)
-- [Objects in Kotlin](https://www.baeldung.com/kotlin-objects)
-- [Working with Enums in Kotlin](https://www.baeldung.com/kotlin-enum)
-- [Kotlin Constructors](https://www.baeldung.com/kotlin-constructors)
-- [Kotlin Nested and Inner Classes](https://www.baeldung.com/kotlin-inner-classes)
-- [Guide to Kotlin Interfaces](https://www.baeldung.com/kotlin-interfaces)
-- [Inline Classes in Kotlin](https://www.baeldung.com/kotlin-inline-classes)
-- [Static Methods Behavior in Kotlin](https://www.baeldung.com/kotlin-static-methods)
-- More articles: [[next -->]](/core-kotlin-modules/core-kotlin-lang-oop-2)
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/pom.xml b/core-kotlin-modules/core-kotlin-lang-oop/pom.xml
deleted file mode 100644
index 03fc80f07d..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/pom.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
- 4.0.0
- core-kotlin-lang-oop
- core-kotlin-lang-oop
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.assertj
- assertj-core
- ${assertj.version}
- test
-
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/constructor/Car.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/constructor/Car.kt
deleted file mode 100644
index 72b8d330e8..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/constructor/Car.kt
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.baeldung.constructor
-
-class Car {
- val id: String
- val type: String
-
- constructor(id: String, type: String) {
- this.id = id
- this.type = type
- }
-
-}
-
-fun main(args: Array) {
- val car = Car("1", "sport")
- val s= Car("2", "suv")
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/constructor/Employee.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/constructor/Employee.kt
deleted file mode 100644
index 4483bfcf08..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/constructor/Employee.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.constructor
-
-class Employee(name: String, val salary: Int): Person(name)
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/constructor/Person.java b/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/constructor/Person.java
deleted file mode 100644
index 57911b24ee..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/constructor/Person.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.baeldung.constructor;
-
-class PersonJava {
- final String name;
- final String surname;
- final Integer age;
-
- public PersonJava(String name, String surname) {
- this.name = name;
- this.surname = surname;
- this.age = null;
- }
-
- public PersonJava(String name, String surname, Integer age) {
- this.name = name;
- this.surname = surname;
- this.age = age;
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/dataclass/Movie.java b/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/dataclass/Movie.java
deleted file mode 100644
index 7eac98fe2a..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/java/com/baeldung/dataclass/Movie.java
+++ /dev/null
@@ -1,88 +0,0 @@
-package com.baeldung.dataclass;
-
-public class Movie {
-
- private String name;
- private String studio;
- private float rating;
-
- public Movie(String name, String studio, float rating) {
- this.name = name;
- this.studio = studio;
- this.rating = rating;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public String getStudio() {
- return studio;
- }
-
- public void setStudio(String studio) {
- this.studio = studio;
- }
-
- public float getRating() {
- return rating;
- }
-
- public void setRating(float rating) {
- this.rating = rating;
- }
-
- @Override
- public int hashCode() {
- final int prime = 31;
- int result = 1;
-
- result = prime * result + ((name == null) ? 0 : name.hashCode());
- result = prime * result + Float.floatToIntBits(rating);
- result = prime * result + ((studio == null) ? 0 : studio.hashCode());
-
- return result;
- }
-
- @Override
- public boolean equals(Object obj) {
- if (this == obj)
- return true;
-
- if (obj == null)
- return false;
-
- if (getClass() != obj.getClass())
- return false;
-
- Movie other = (Movie) obj;
-
- if (name == null) {
- if (other.name != null)
- return false;
-
- } else if (!name.equals(other.name))
- return false;
-
- if (Float.floatToIntBits(rating) != Float.floatToIntBits(other.rating))
- return false;
-
- if (studio == null) {
- if (other.studio != null)
- return false;
-
- } else if (!studio.equals(other.studio))
- return false;
-
- return true;
- }
-
- @Override
- public String toString() {
- return "Movie [name=" + name + ", studio=" + studio + ", rating=" + rating + "]";
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/constructor/Person.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/constructor/Person.kt
deleted file mode 100644
index 3779d74541..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/constructor/Person.kt
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.baeldung.constructor
-
-open class Person(
- val name: String,
- val age: Int? = null
-) {
- val upperCaseName: String = name.toUpperCase()
-
- init {
- println("Hello, I'm $name")
-
- if (age != null && age < 0) {
- throw IllegalArgumentException("Age cannot be less than zero!")
- }
- }
-
- init {
- println("upperCaseName is $upperCaseName")
- }
-
-}
-
-fun main(args: Array) {
- val person = Person("John")
- val personWithAge = Person("John", 22)
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/dataclass/Movie.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/dataclass/Movie.kt
deleted file mode 100644
index c0c15b2516..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/dataclass/Movie.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.dataclass
-
-data class Movie(val name: String, val studio: String, var rating: Float)
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/dataclass/Sandbox.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/dataclass/Sandbox.kt
deleted file mode 100644
index d47909bf29..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/dataclass/Sandbox.kt
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.baeldung.dataclass
-
-fun main(args: Array) {
-
- val movie = Movie("Whiplash", "Sony Pictures", 8.5F)
-
- println(movie.name) //Whiplash
- println(movie.studio) //Sony Pictures
- println(movie.rating) //8.5
-
- movie.rating = 9F
-
- println(movie.toString()) //Movie(name=Whiplash, studio=Sony Pictures, rating=9.0)
-
- val betterRating = movie.copy(rating = 9.5F)
- println(betterRating.toString()) //Movie(name=Whiplash, studio=Sony Pictures, rating=9.5)
-
- movie.component1() //name
- movie.component2() //studio
- movie.component3() //rating
-
- val(name, studio, rating) = movie
-
- fun getMovieInfo() = movie
- val(namef, studiof, ratingf) = getMovieInfo()
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/enums/CardType.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/enums/CardType.kt
deleted file mode 100644
index 69cfce5601..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/enums/CardType.kt
+++ /dev/null
@@ -1,23 +0,0 @@
-package com.baeldung.enums
-
-enum class CardType(val color: String) : ICardLimit {
- SILVER("gray") {
- override fun getCreditLimit() = 100000
- override fun calculateCashbackPercent() = 0.25f
- },
- GOLD("yellow") {
- override fun getCreditLimit() = 200000
- override fun calculateCashbackPercent(): Float = 0.5f
- },
- PLATINUM("black") {
- override fun getCreditLimit() = 300000
- override fun calculateCashbackPercent() = 0.75f
- };
-
- companion object {
- fun getCardTypeByColor(color: String) = values().firstOrNull { it.color == color }
- fun getCardTypeByName(name: String) = valueOf(name.toUpperCase())
- }
-
- abstract fun calculateCashbackPercent(): Float
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/enums/ICardLimit.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/enums/ICardLimit.kt
deleted file mode 100644
index 7994822a52..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/enums/ICardLimit.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package com.baeldung.enums
-
-interface ICardLimit {
- fun getCreditLimit(): Int
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/inline/classes/CircleRadius.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/inline/classes/CircleRadius.kt
deleted file mode 100644
index 5b46b9570f..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/inline/classes/CircleRadius.kt
+++ /dev/null
@@ -1,14 +0,0 @@
-package com.baeldung.inline.classes
-
-interface Drawable {
- fun draw()
-}
-
-inline class CircleRadius(private val circleRadius : Double) : Drawable {
- val diameterOfCircle get() = 2 * circleRadius
- fun areaOfCircle() = 3.14 * circleRadius * circleRadius
-
- override fun draw() {
- println("Draw my circle")
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/inline/classes/InlineDoubleWrapper.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/inline/classes/InlineDoubleWrapper.kt
deleted file mode 100644
index 430fa509da..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/inline/classes/InlineDoubleWrapper.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.inline.classes
-
-inline class InlineDoubleWrapper(val doubleValue : Double)
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/ConflictingInterfaces.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/ConflictingInterfaces.kt
deleted file mode 100644
index 630afbdae7..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/ConflictingInterfaces.kt
+++ /dev/null
@@ -1,23 +0,0 @@
-package com.baeldung.interfaces
-
-interface BaseInterface {
- fun someMethod(): String
-}
-
-interface FirstChildInterface : BaseInterface {
- override fun someMethod(): String {
- return("Hello, from someMethod in FirstChildInterface")
- }
-}
-
-interface SecondChildInterface : BaseInterface {
- override fun someMethod(): String {
- return("Hello, from someMethod in SecondChildInterface")
- }
-}
-
-class ChildClass : FirstChildInterface, SecondChildInterface {
- override fun someMethod(): String {
- return super.someMethod()
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/InterfaceDelegation.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/InterfaceDelegation.kt
deleted file mode 100644
index 591fde0689..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/InterfaceDelegation.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.baeldung.interfaces
-
-interface MyInterface {
- fun someMethod(): String
-}
-
-class MyClass() : MyInterface {
- override fun someMethod(): String {
- return("Hello, World!")
- }
-}
-
-class MyDerivedClass(myInterface: MyInterface) : MyInterface by myInterface
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/MultipleInterfaces.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/MultipleInterfaces.kt
deleted file mode 100644
index 105a85cbb3..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/MultipleInterfaces.kt
+++ /dev/null
@@ -1,29 +0,0 @@
-package com.baeldung.interfaces
-
-interface FirstInterface {
- fun someMethod(): String
-
- fun anotherMethod(): String {
- return("Hello, from anotherMethod in FirstInterface")
- }
-}
-
-interface SecondInterface {
- fun someMethod(): String {
- return("Hello, from someMethod in SecondInterface")
- }
-
- fun anotherMethod(): String {
- return("Hello, from anotherMethod in SecondInterface")
- }
-}
-
-class SomeClass: FirstInterface, SecondInterface {
- override fun someMethod(): String {
- return("Hello, from someMethod in SomeClass")
- }
-
- override fun anotherMethod(): String {
- return("Hello, from anotherMethod in SomeClass")
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/SimpleInterface.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/SimpleInterface.kt
deleted file mode 100644
index 0758549dde..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/interfaces/SimpleInterface.kt
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.baeldung.interfaces
-
-interface SimpleInterface {
- val firstProp: String
- val secondProp: String
- get() = "Second Property"
- fun firstMethod(): String
- fun secondMethod(): String {
- println("Hello, from: " + secondProp)
- return ""
- }
-}
-
-class SimpleClass: SimpleInterface {
- override val firstProp: String = "First Property"
- override val secondProp: String
- get() = "Second Property, Overridden!"
- override fun firstMethod(): String {
- return("Hello, from: " + firstProp)
- }
- override fun secondMethod(): String {
- return("Hello, from: " + secondProp + firstProp)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/kotlin/Sealed.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/kotlin/Sealed.kt
deleted file mode 100644
index 96e54716b3..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/kotlin/Sealed.kt
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.baeldung.kotlin
-
-sealed class Result {
- abstract fun map(func: (S) -> R) : Result
- abstract fun mapFailure(func: (F) -> R) : Result
- abstract fun get() : S?
-}
-
-data class Success(val success: S) : Result() {
- override fun map(func: (S) -> R) : Result = Success(func(success))
- override fun mapFailure(func: (F) -> R): Result = Success(success)
- override fun get(): S? = success
-}
-
-data class Failure(val failure: F) : Result() {
- override fun map(func: (S) -> R) : Result = Failure(failure)
- override fun mapFailure(func: (F) -> R): Result = Failure(func(failure))
- override fun get(): S? = null
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/kotlin/StringUtil.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/kotlin/StringUtil.kt
deleted file mode 100644
index ca57b2965e..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/kotlin/StringUtil.kt
+++ /dev/null
@@ -1,9 +0,0 @@
-@file:JvmName("Strings")
-package com.baeldung.kotlin
-
-fun String.escapeForXml() : String {
- return this
- .replace("&", "&")
- .replace("<", "<")
- .replace(">", ">")
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/nested/Computer.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/nested/Computer.kt
deleted file mode 100644
index ee01c06646..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/nested/Computer.kt
+++ /dev/null
@@ -1,75 +0,0 @@
-package com.baeldung.nested
-
-import org.slf4j.Logger
-import org.slf4j.LoggerFactory
-
-class Computer(val model: String) {
-
- companion object {
- const val originCountry = "China"
- fun getBuiltDate(): String {
- return "2018-05-23"
- }
-
- val log: Logger = LoggerFactory.getLogger(Computer::class.java)
- }
-
- //Nested class
- class MotherBoard(val manufacturer: String) {
- fun getInfo() = "Made by $manufacturer installed in $originCountry - ${getBuiltDate()}"
- }
-
- //Inner class
- inner class HardDisk(val sizeInGb: Int) {
- fun getInfo() = "Installed on ${this@Computer} with $sizeInGb GB"
- }
-
- interface Switcher {
- fun on(): String
- }
-
- interface Protector {
- fun smart()
- }
-
- fun powerOn(): String {
- //Local class
- var defaultColor = "Blue"
-
- class Led(val color: String) {
- fun blink(): String {
- return "blinking $color"
- }
-
- fun changeDefaultPowerOnColor() {
- defaultColor = "Violet"
- }
- }
-
- val powerLed = Led("Green")
- log.debug("defaultColor is $defaultColor")
- powerLed.changeDefaultPowerOnColor()
- log.debug("defaultColor changed inside Led class to $defaultColor")
- //Anonymous object
- val powerSwitch = object : Switcher, Protector {
- override fun on(): String {
- return powerLed.blink()
- }
-
- override fun smart() {
- log.debug("Smart protection is implemented")
- }
-
- fun changeDefaultPowerOnColor() {
- defaultColor = "Yellow"
- }
- }
- powerSwitch.changeDefaultPowerOnColor()
- log.debug("defaultColor changed inside powerSwitch anonymous object to $defaultColor")
- return powerSwitch.on()
- }
-
- override fun toString(): String {
- return "Computer(model=$model)"
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/static/ConsoleUtils.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/static/ConsoleUtils.kt
deleted file mode 100644
index 23c7cfb11a..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/static/ConsoleUtils.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.baeldung.static
-
-class ConsoleUtils {
- companion object {
- @JvmStatic
- fun debug(debugMessage : String) {
- println("[DEBUG] $debugMessage")
- }
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/static/LoggingUtils.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/static/LoggingUtils.kt
deleted file mode 100644
index e67addc9ea..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/main/kotlin/com/baeldung/static/LoggingUtils.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package com.baeldung.static
-
-fun debug(debugMessage : String) {
- println("[DEBUG] $debugMessage")
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/java/com/baeldung/kotlin/StringUtilUnitTest.java b/core-kotlin-modules/core-kotlin-lang-oop/src/test/java/com/baeldung/kotlin/StringUtilUnitTest.java
deleted file mode 100644
index c7ef18b879..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/java/com/baeldung/kotlin/StringUtilUnitTest.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package com.baeldung.kotlin;
-
-import kotlin.text.StringsKt;
-import org.junit.Assert;
-import org.junit.Test;
-
-import static com.baeldung.kotlin.Strings.*;
-
-
-public class StringUtilUnitTest {
-
- @Test
- public void shouldEscapeXmlTagsInString() {
- String xml = "hi";
-
- String escapedXml = escapeForXml(xml);
-
- Assert.assertEquals("<a>hi</a>", escapedXml);
- }
-
- @Test
- public void callingBuiltInKotlinExtensionMethod() {
- String name = "john";
-
- String capitalizedName = StringsKt.capitalize(name);
-
- Assert.assertEquals("John", capitalizedName);
- }
-
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/enums/CardTypeUnitTest.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/enums/CardTypeUnitTest.kt
deleted file mode 100644
index 525faebd55..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/enums/CardTypeUnitTest.kt
+++ /dev/null
@@ -1,84 +0,0 @@
-package com.baeldung.enums
-
-import org.junit.jupiter.api.Assertions
-import org.junit.jupiter.api.Assertions.assertEquals
-import org.junit.jupiter.api.Test
-
-internal class CardTypeUnitTest {
-
- @Test
- fun givenSilverCardType_whenCalculateCashbackPercent_thenReturnCashbackValue() {
- assertEquals(0.25f, CardType.SILVER.calculateCashbackPercent())
- }
-
- @Test
- fun givenGoldCardType_whenCalculateCashbackPercent_thenReturnCashbackValue() {
- assertEquals(0.5f, CardType.GOLD.calculateCashbackPercent())
- }
-
- @Test
- fun givenPlatinumCardType_whenCalculateCashbackPercent_thenReturnCashbackValue() {
- assertEquals(0.75f, CardType.PLATINUM.calculateCashbackPercent())
- }
-
- @Test
- fun givenSilverCardType_whenGetCreditLimit_thenReturnCreditLimit() {
- assertEquals(100000, CardType.SILVER.getCreditLimit())
- }
-
- @Test
- fun givenGoldCardType_whenGetCreditLimit_thenReturnCreditLimit() {
- assertEquals(200000, CardType.GOLD.getCreditLimit())
- }
-
- @Test
- fun givenPlatinumCardType_whenGetCreditLimit_thenReturnCreditLimit() {
- assertEquals(300000, CardType.PLATINUM.getCreditLimit())
- }
-
- @Test
- fun givenSilverCardType_whenCheckColor_thenReturnColor() {
- assertEquals("gray", CardType.SILVER.color)
- }
-
- @Test
- fun givenGoldCardType_whenCheckColor_thenReturnColor() {
- assertEquals("yellow", CardType.GOLD.color)
- }
-
- @Test
- fun givenPlatinumCardType_whenCheckColor_thenReturnColor() {
- assertEquals("black", CardType.PLATINUM.color)
- }
-
- @Test
- fun whenGetCardTypeByColor_thenSilverCardType() {
- Assertions.assertEquals(CardType.SILVER, CardType.getCardTypeByColor("gray"))
- }
-
- @Test
- fun whenGetCardTypeByColor_thenGoldCardType() {
- Assertions.assertEquals(CardType.GOLD, CardType.getCardTypeByColor("yellow"))
- }
-
- @Test
- fun whenGetCardTypeByColor_thenPlatinumCardType() {
- Assertions.assertEquals(CardType.PLATINUM, CardType.getCardTypeByColor("black"))
- }
-
- @Test
- fun whenGetCardTypeByName_thenSilverCardType() {
- Assertions.assertEquals(CardType.SILVER, CardType.getCardTypeByName("silver"))
- }
-
- @Test
- fun whenGetCardTypeByName_thenGoldCardType() {
- Assertions.assertEquals(CardType.GOLD, CardType.getCardTypeByName("gold"))
- }
-
- @Test
- fun whenGetCardTypeByName_thenPlatinumCardType() {
- Assertions.assertEquals(CardType.PLATINUM, CardType.getCardTypeByName("platinum"))
- }
-
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/inline/classes/CircleRadiusTest.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/inline/classes/CircleRadiusTest.kt
deleted file mode 100644
index 8de378b6dd..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/inline/classes/CircleRadiusTest.kt
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.baeldung.inline.classes
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class CircleRadiusTest {
-
- @Test
- fun givenRadius_ThenDiameterIsCorrectlyCalculated() {
- val radius = CircleRadius(5.0)
- assertEquals(10.0, radius.diameterOfCircle)
- }
-
- @Test
- fun givenRadius_ThenAreaIsCorrectlyCalculated() {
- val radius = CircleRadius(5.0)
- assertEquals(78.5, radius.areaOfCircle())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/inline/classes/InlineDoubleWrapperTest.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/inline/classes/InlineDoubleWrapperTest.kt
deleted file mode 100644
index 349c90d6f4..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/inline/classes/InlineDoubleWrapperTest.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.baeldung.inline.classes
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class InlineDoubleWrapperTest {
-
- @Test
- fun whenInclineClassIsUsed_ThenPropertyIsReadCorrectly() {
- val piDoubleValue = InlineDoubleWrapper(3.14)
- assertEquals(3.14, piDoubleValue.doubleValue)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/interfaces/InterfaceExamplesUnitTest.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/interfaces/InterfaceExamplesUnitTest.kt
deleted file mode 100644
index 96b99948b7..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/interfaces/InterfaceExamplesUnitTest.kt
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.baeldung.interfaces
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class InterfaceExamplesUnitTest {
- @Test
- fun givenAnInterface_whenImplemented_thenBehavesAsOverridden() {
- val simpleClass = SimpleClass()
- assertEquals("Hello, from: First Property", simpleClass.firstMethod())
- assertEquals("Hello, from: Second Property, Overridden!First Property", simpleClass.secondMethod())
- }
-
- @Test
- fun givenMultipleInterfaces_whenImplemented_thenBehavesAsOverridden() {
- val someClass = SomeClass()
- assertEquals("Hello, from someMethod in SomeClass", someClass.someMethod())
- assertEquals("Hello, from anotherMethod in SomeClass", someClass.anotherMethod())
- }
-
- @Test
- fun givenConflictingInterfaces_whenImplemented_thenBehavesAsOverridden() {
- val childClass = ChildClass()
- assertEquals("Hello, from someMethod in SecondChildInterface", childClass.someMethod())
- }
-
- @Test
- fun givenAnInterface_whenImplemented_thenBehavesAsDelegated() {
- val myClass = MyClass()
- assertEquals("Hello, World!", MyDerivedClass(myClass).someMethod())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/ExtensionMethods.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/ExtensionMethods.kt
deleted file mode 100644
index 44c5cd0ece..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/ExtensionMethods.kt
+++ /dev/null
@@ -1,44 +0,0 @@
-package com.baeldung.kotlin
-
-import org.junit.Assert
-import org.junit.Test
-
-class ExtensionMethods {
- @Test
- fun simpleExtensionMethod() {
- Assert.assertEquals("Nothing", "Nothing".escapeForXml())
- Assert.assertEquals("<Tag>", "".escapeForXml())
- Assert.assertEquals("a&b", "a&b".escapeForXml())
- }
-
- @Test
- fun genericExtensionMethod() {
- fun T.concatAsString(b: T) : String {
- return this.toString() + b.toString()
- }
-
- Assert.assertEquals("12", "1".concatAsString("2"))
- Assert.assertEquals("12", 1.concatAsString(2))
- // This doesn't compile
- // Assert.assertEquals("12", 1.concatAsString(2.0))
- }
-
- @Test
- fun infixExtensionMethod() {
- infix fun Number.toPowerOf(exponent: Number): Double {
- return Math.pow(this.toDouble(), exponent.toDouble())
- }
-
- Assert.assertEquals(9.0, 3 toPowerOf 2, 0.1)
- Assert.assertEquals(3.0, 9 toPowerOf 0.5, 0.1)
- }
-
- @Test
- fun operatorExtensionMethod() {
- operator fun List.times(by: Int): List {
- return this.map { it * by }
- }
-
- Assert.assertEquals(listOf(2, 4, 6), listOf(1, 2, 3) * 2)
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/SealedTest.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/SealedTest.kt
deleted file mode 100644
index 8c7509f653..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/SealedTest.kt
+++ /dev/null
@@ -1,84 +0,0 @@
-package com.baeldung.kotlin
-
-import org.junit.Assert
-import org.junit.Test
-
-class SealedTest {
- fun divide(a: Int, b: Int) : Result = when (b) {
- 0 -> Failure("Division by zero")
- else -> Success(a.toFloat() / b)
- }
-
- @Test
- fun testSuccess() {
- val result = divide(10, 5)
- Assert.assertEquals(Success(2.0f), result)
- }
-
- @Test
- fun testError() {
- val result = divide(10, 0)
- Assert.assertEquals(Failure("Division by zero"), result)
- }
-
- @Test
- fun testMatchOnSuccess() {
- val result = divide(10, 5)
- when (result) {
- is Success -> {
- // Expected
- }
- is Failure -> Assert.fail("Expected Success")
- }
- }
-
- @Test
- fun testMatchOnError() {
- val result = divide(10, 0)
- when (result) {
- is Failure -> {
- // Expected
- }
- }
- }
-
- @Test
- fun testGetSuccess() {
- val result = divide(10, 5)
- Assert.assertEquals(2.0f, result.get())
- }
-
- @Test
- fun testGetError() {
- val result = divide(10, 0)
- Assert.assertNull(result.get())
- }
-
- @Test
- fun testMapOnSuccess() {
- val result = divide(10, 5)
- .map { "Result: $it" }
- Assert.assertEquals(Success("Result: 2.0"), result)
- }
-
- @Test
- fun testMapOnError() {
- val result = divide(10, 0)
- .map { "Result: $it" }
- Assert.assertEquals(Failure("Division by zero"), result)
- }
-
- @Test
- fun testMapFailureOnSuccess() {
- val result = divide(10, 5)
- .mapFailure { "Failure: $it" }
- Assert.assertEquals(Success(2.0f), result)
- }
-
- @Test
- fun testMapFailureOnError() {
- val result = divide(10, 0)
- .mapFailure { "Failure: $it" }
- Assert.assertEquals(Failure("Failure: Division by zero"), result)
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/Counter.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/Counter.kt
deleted file mode 100644
index 46ba42e1e5..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/Counter.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.baeldung.kotlin.objects
-
-object Counter {
- private var count: Int = 0
-
- fun currentCount() = count
-
- fun increment() {
- ++count
- }
-
- fun decrement() {
- --count
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/ObjectsTest.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/ObjectsTest.kt
deleted file mode 100644
index 0bbb1c741d..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/ObjectsTest.kt
+++ /dev/null
@@ -1,36 +0,0 @@
-package com.baeldung.kotlin.objects
-
-import org.junit.Assert
-import org.junit.Test
-
-class ObjectsTest {
- @Test
- fun singleton() {
-
- Assert.assertEquals(42, SimpleSingleton.answer)
- Assert.assertEquals("Hello, world!", SimpleSingleton.greet("world"))
- }
-
- @Test
- fun counter() {
- Assert.assertEquals(0, Counter.currentCount())
- Counter.increment()
- Assert.assertEquals(1, Counter.currentCount())
- Counter.decrement()
- Assert.assertEquals(0, Counter.currentCount())
- }
-
- @Test
- fun comparator() {
- val strings = listOf("Hello", "World")
- val sortedStrings = strings.sortedWith(ReverseStringComparator)
-
- Assert.assertEquals(listOf("World", "Hello"), sortedStrings)
- }
-
- @Test
- fun companion() {
- Assert.assertEquals("You can see me", OuterClass.public)
- // Assert.assertEquals("You can't see me", OuterClass.secret) // Cannot access 'secret'
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/OuterClass.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/OuterClass.kt
deleted file mode 100644
index 4abb7a668d..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/OuterClass.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.baeldung.kotlin.objects
-
-class OuterClass {
- companion object {
- private val secret = "You can't see me"
- val public = "You can see me"
- }
-
- fun getSecretValue() = secret
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/ReverseStringComparator.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/ReverseStringComparator.kt
deleted file mode 100644
index 20dc2d8c5b..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/ReverseStringComparator.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package com.baeldung.kotlin.objects
-
-object ReverseStringComparator : Comparator {
- override fun compare(o1: String, o2: String) = o1.reversed().compareTo(o2.reversed())
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/SimpleSingleton.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/SimpleSingleton.kt
deleted file mode 100644
index bfafd8183f..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/SimpleSingleton.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package com.baeldung.kotlin.objects
-
-object SimpleSingleton {
- val answer = 42;
-
- fun greet(name: String) = "Hello, $name!"
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/StaticClass.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/StaticClass.kt
deleted file mode 100644
index 36cd476110..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/kotlin/objects/StaticClass.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.kotlin.objects
-
-class StaticClass {
- companion object {
- @JvmStatic
- val staticField = 42
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/nested/ComputerUnitTest.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/nested/ComputerUnitTest.kt
deleted file mode 100644
index 7882d85b3c..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/nested/ComputerUnitTest.kt
+++ /dev/null
@@ -1,28 +0,0 @@
-package com.baeldung.nested
-
-import org.assertj.core.api.Assertions.assertThat
-import org.junit.jupiter.api.Test
-
-class ComputerUnitTest {
-
- @Test
- fun givenComputer_whenPowerOn_thenBlink() {
- val computer = Computer("Desktop")
-
- assertThat(computer.powerOn()).isEqualTo("blinking Green")
- }
-
- @Test
- fun givenMotherboard_whenGetInfo_thenGetInstalledAndBuiltDetails() {
- val motherBoard = Computer.MotherBoard("MotherBoard Inc.")
-
- assertThat(motherBoard.getInfo()).isEqualTo("Made by MotherBoard Inc. installed in China - 2018-05-23")
- }
-
- @Test
- fun givenHardDisk_whenGetInfo_thenGetComputerModelAndDiskSizeInGb() {
- val hardDisk = Computer("Desktop").HardDisk(1000)
-
- assertThat(hardDisk.getInfo()).isEqualTo("Installed on Computer(model=Desktop) with 1000 GB")
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/static/ConsoleUtilsUnitTest.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/static/ConsoleUtilsUnitTest.kt
deleted file mode 100644
index 8abed144eb..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/static/ConsoleUtilsUnitTest.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.baeldung.static
-
-import org.junit.Test
-
-class ConsoleUtilsUnitTest {
- @Test
- fun givenAStaticMethod_whenCalled_thenNoErrorIsThrown() {
- ConsoleUtils.debug("test message")
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/static/LoggingUtilsUnitTest.kt b/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/static/LoggingUtilsUnitTest.kt
deleted file mode 100644
index 59587ff009..0000000000
--- a/core-kotlin-modules/core-kotlin-lang-oop/src/test/kotlin/com/baeldung/static/LoggingUtilsUnitTest.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.baeldung.static
-
-import org.junit.Test
-
-class LoggingUtilsUnitTest {
- @Test
- fun givenAPackageMethod_whenCalled_thenNoErrorIsThrown() {
- debug("test message")
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/README.md b/core-kotlin-modules/core-kotlin-lang/README.md
deleted file mode 100644
index eaeae76854..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
-## Core Kotlin Lang
-
-This module contains articles about core features in the Kotlin language.
-
-### Relevant articles:
-- [Guide to the “when{}” Block in Kotlin](https://www.baeldung.com/kotlin-when)
-- [Difference Between “==” and “===” Operators in Kotlin](https://www.baeldung.com/kotlin-equality-operators)
-- [Nested forEach in Kotlin](https://www.baeldung.com/kotlin-nested-foreach)
-- [Destructuring Declarations in Kotlin](https://www.baeldung.com/kotlin-destructuring-declarations)
-- [Try-with-resources in Kotlin](https://www.baeldung.com/kotlin-try-with-resources)
-- [Operator Overloading in Kotlin](https://www.baeldung.com/kotlin-operator-overloading)
-- [Inline Functions in Kotlin](https://www.baeldung.com/kotlin-inline-functions)
-- [Void Type in Kotlin](https://www.baeldung.com/kotlin-void-type)
-- [How to use Kotlin Range Expressions](https://www.baeldung.com/kotlin-ranges)
-- [Creating a Kotlin Range Iterator on a Custom Object](https://www.baeldung.com/kotlin-custom-range-iterator)
-- [[More --> ]](/core-kotlin-modules/core-kotlin-lang-2)
diff --git a/core-kotlin-modules/core-kotlin-lang/pom.xml b/core-kotlin-modules/core-kotlin-lang/pom.xml
deleted file mode 100644
index d3ac7f690c..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/pom.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- 4.0.0
- core-kotlin-lang
- core-kotlin-lang
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/destructuringdeclarations/Person.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/destructuringdeclarations/Person.kt
deleted file mode 100644
index d3167ce033..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/destructuringdeclarations/Person.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.destructuringdeclarations
-
-data class Person(var id: Int, var name: String, var age: Int)
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/destructuringdeclarations/Result.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/destructuringdeclarations/Result.kt
deleted file mode 100644
index e3da9b46a4..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/destructuringdeclarations/Result.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.destructuringdeclarations
-
-data class Result(val result: Int, val status: String)
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/destructuringdeclarations/Sandbox.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/destructuringdeclarations/Sandbox.kt
deleted file mode 100644
index f845d01539..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/destructuringdeclarations/Sandbox.kt
+++ /dev/null
@@ -1,42 +0,0 @@
-package com.baeldung.destructuringdeclarations
-
-fun main(args: Array) {
-
- //2.1. Objects
- val person = Person(1, "Jon Snow", 20)
- val(id, name, age) = person
-
- println(id) //1
- println(name) //Jon Snow
- println(age) //20
-
- //2.2. Functions
- fun getPersonInfo() = Person(2, "Ned Stark", 45)
- val(idf, namef, agef) = getPersonInfo()
-
- fun twoValuesReturn(): Pair {
-
- // needed code
-
- return Pair(1, "success")
- }
-
- // Now, to use this function:
- val (result, status) = twoValuesReturn()
-
- //2.3. Collections and For-loops
- var map: HashMap = HashMap()
- map.put(1, person)
-
- for((key, value) in map){
- println("Key: $key, Value: $value")
- }
-
- //2.4. Underscore and Destructuring in Lambdas
- val (_, name2, age2) = person
- val (id3, name3) = person
-
- map.mapValues { entry -> "${entry.value}!" }
- map.mapValues { (key, value) -> "$value!" }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/equalityoperators/User.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/equalityoperators/User.kt
deleted file mode 100644
index 030169bb8a..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/equalityoperators/User.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.equalityoperators
-
-data class User(val name: String, val age: Int, val hobbies: List)
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/forEach/forEach.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/forEach/forEach.kt
deleted file mode 100644
index 20eda4e64f..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/forEach/forEach.kt
+++ /dev/null
@@ -1,87 +0,0 @@
-package com.baeldung.forEach
-
-
-class Country(val name : String, val cities : List)
-
-class City(val name : String, val streets : List)
-
-fun City.getStreetsWithCityName() : List {
- return streets.map { "$name, $it" }.toList()
-}
-
-fun Country.getCitiesWithCountryName() : List {
- return cities.flatMap { it.getStreetsWithCityName() }
- .map { "$name, $it" }
-}
-
-class World {
-
- private val streetsOfAmsterdam = listOf("Herengracht", "Prinsengracht")
- private val streetsOfBerlin = listOf("Unter den Linden","Tiergarten")
- private val streetsOfMaastricht = listOf("Grote Gracht", "Vrijthof")
- private val countries = listOf(
- Country("Netherlands", listOf(City("Maastricht", streetsOfMaastricht),
- City("Amsterdam", streetsOfAmsterdam))),
- Country("Germany", listOf(City("Berlin", streetsOfBerlin))))
-
- fun allCountriesIt() {
- countries.forEach { println(it.name) }
- }
-
- fun allCountriesItExplicit() {
- countries.forEach { it -> println(it.name) }
- }
-
- //here we cannot refer to 'it' anymore inside the forEach
- fun allCountriesExplicit() {
- countries.forEach { c -> println(c.name) }
- }
-
- fun allNested() {
- countries.forEach {
- println(it.name)
- it.cities.forEach {
- println(" ${it.name}")
- it.streets.forEach { println(" $it") }
- }
- }
- }
-
- fun allTable() {
- countries.forEach { c ->
- c.cities.forEach { p ->
- p.streets.forEach { println("${c.name} ${p.name} $it") }
- }
- }
- }
-
- fun allStreetsFlatMap() {
-
- countries.flatMap { it.cities}
- .flatMap { it.streets}
- .forEach { println(it) }
- }
-
- fun allFlatMapTable() {
-
- countries.flatMap { it.getCitiesWithCountryName() }
- .forEach { println(it) }
- }
-}
-
-fun main(args : Array) {
-
- val world = World()
-
- world.allCountriesExplicit()
-
- world.allNested()
-
- world.allTable()
-
- world.allStreetsFlatMap()
-
- world.allFlatMapTable()
-}
-
-
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/inline/Inline.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/inline/Inline.kt
deleted file mode 100644
index 3b179642ba..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/inline/Inline.kt
+++ /dev/null
@@ -1,28 +0,0 @@
-package com.baeldung.inline
-
-import kotlin.random.Random
-
-/**
- * An extension function on all collections to apply a function to all collection
- * elements.
- */
-fun Collection.each(block: (T) -> Unit) {
- for (e in this) block(e)
-}
-
-/**
- * In order to see the the JVM bytecode:
- * 1. Compile the Kotlin file using `kotlinc Inline.kt`
- * 2. Take a peek at the bytecode using the `javap -c InlineKt`
- */
-fun main() {
- val numbers = listOf(1, 2, 3, 4, 5)
- val random = random()
-
- numbers.each { println(random * it) } // capturing the random variable
-}
-
-/**
- * Generates a random number.
- */
-private fun random(): Int = Random.nextInt()
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Money.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Money.kt
deleted file mode 100644
index 93eb78c5b6..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Money.kt
+++ /dev/null
@@ -1,31 +0,0 @@
-package com.baeldung.operators
-
-import java.math.BigDecimal
-
-enum class Currency {
- DOLLARS, EURO
-}
-
-class Money(val amount: BigDecimal, val currency: Currency) : Comparable {
-
- override fun compareTo(other: Money): Int =
- convert(Currency.DOLLARS).compareTo(other.convert(Currency.DOLLARS))
-
- fun convert(currency: Currency): BigDecimal = TODO()
-
- override fun equals(other: Any?): Boolean {
- if (this === other) return true
- if (other !is Money) return false
-
- if (amount != other.amount) return false
- if (currency != other.currency) return false
-
- return true
- }
-
- override fun hashCode(): Int {
- var result = amount.hashCode()
- result = 31 * result + currency.hashCode()
- return result
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Page.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Page.kt
deleted file mode 100644
index 8a0ee48a36..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Page.kt
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.baeldung.operators
-
-interface Page {
- fun pageNumber(): Int
- fun pageSize(): Int
- fun elements(): MutableList
-}
-
-operator fun Page.invoke(index: Int): T = elements()[index]
-operator fun Page.get(index: Int): T = elements()[index]
-operator fun Page.get(start: Int, endExclusive: Int): List = elements().subList(start, endExclusive)
-operator fun Page.set(index: Int, value: T) {
- elements()[index] = value
-}
-
-operator fun Page.contains(element: T): Boolean = element in elements()
-operator fun Page.iterator() = elements().iterator()
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Point.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Point.kt
deleted file mode 100644
index e3282e64cc..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Point.kt
+++ /dev/null
@@ -1,31 +0,0 @@
-package com.baeldung.operators
-
-data class Point(val x: Int, val y: Int)
-
-operator fun Point.unaryMinus() = Point(-x, -y)
-operator fun Point.not() = Point(y, x)
-operator fun Point.inc() = Point(x + 1, y + 1)
-operator fun Point.dec() = Point(x - 1, y - 1)
-
-operator fun Point.plus(other: Point): Point = Point(x + other.x, y + other.y)
-operator fun Point.minus(other: Point): Point = Point(x - other.x, y - other.y)
-operator fun Point.times(other: Point): Point = Point(x * other.x, y * other.y)
-operator fun Point.div(other: Point): Point = Point(x / other.x, y / other.y)
-operator fun Point.rem(other: Point): Point = Point(x % other.x, y % other.y)
-operator fun Point.times(factor: Int): Point = Point(x * factor, y * factor)
-operator fun Int.times(point: Point): Point = Point(point.x * this, point.y * this)
-
-class Shape {
- val points = mutableListOf()
-
- operator fun Point.unaryPlus() {
- points.add(this)
- }
-}
-
-fun shape(init: Shape.() -> Unit): Shape {
- val shape = Shape()
- shape.init()
-
- return shape
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Utils.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Utils.kt
deleted file mode 100644
index 0f16544f38..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/operators/Utils.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.operators
-
-import java.math.BigInteger
-
-operator fun MutableCollection.plusAssign(element: T) {
- add(element)
-}
-operator fun BigInteger.plus(other: Int): BigInteger = add(BigInteger("$other"))
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/CharRange.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/CharRange.kt
deleted file mode 100644
index 3151674d61..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/CharRange.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.baeldung.range
-
-fun main(args: Array) {
-
- for (ch in 'a'..'f') {
- print(ch)
- }
- println()
-
- for (ch in 'f' downTo 'a') {
- print(ch)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Color.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Color.kt
deleted file mode 100644
index ef7adf06b5..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Color.kt
+++ /dev/null
@@ -1,21 +0,0 @@
-package com.baeldung.range
-
-enum class Color(val rgb: Int) {
- BLUE(0x0000FF),
- GREEN(0x008000),
- RED(0xFF0000),
- MAGENTA(0xFF00FF),
- YELLOW(0xFFFF00);
-}
-
-fun main(args: Array) {
-
- println(Color.values().toList());
- val red = Color.RED
- val yellow = Color.YELLOW
- val range = red..yellow
-
- println(range.contains(Color.MAGENTA))
- println(range.contains(Color.BLUE))
- println(range.contains(Color.GREEN))
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Filter.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Filter.kt
deleted file mode 100644
index 0e611b14cf..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Filter.kt
+++ /dev/null
@@ -1,18 +0,0 @@
-package com.baeldung.range
-
-fun main(args: Array) {
- val r = 1..10
-
- //Apply filter
- val f = r.filter { it -> it % 2 == 0 }
- println(f)
-
- //Map
- val m = r.map { it -> it * it }
- println(m)
-
- //Reduce
- val rdc = r.reduce { a, b -> a + b }
- println(rdc)
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/FirstLast.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/FirstLast.kt
deleted file mode 100644
index b82f5a8b9b..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/FirstLast.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.range
-
-fun main(args: Array) {
-
- println((1..9).first)
- println((1..9 step 2).step)
- println((3..9).reversed().last)
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/OtherRangeFunctions.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/OtherRangeFunctions.kt
deleted file mode 100644
index 19dcab89b2..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/OtherRangeFunctions.kt
+++ /dev/null
@@ -1,14 +0,0 @@
-package com.baeldung.range
-
-fun main(args: Array) {
-
- val r = 1..20
- println(r.min())
- println(r.max())
- println(r.sum())
- println(r.average())
- println(r.count())
-
- val repeated = listOf(1, 1, 2, 4, 4, 6, 10)
- println(repeated.distinct())
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Range.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Range.kt
deleted file mode 100644
index c313181599..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Range.kt
+++ /dev/null
@@ -1,28 +0,0 @@
-package com.baeldung.range
-
-fun main(args: Array) {
-
- for (i in 1..9) {
- print(i)
- }
- println()
-
- for (i in 9 downTo 1) {
- print(i)
- }
- println()
-
- for (i in 1.rangeTo(9)) {
- print(i)
- }
- println()
-
- for (i in 9.downTo(1)) {
- print(i)
- }
- println()
-
- for (i in 1 until 9) {
- print(i)
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/ReverseRange.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/ReverseRange.kt
deleted file mode 100644
index 875cf62200..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/ReverseRange.kt
+++ /dev/null
@@ -1,14 +0,0 @@
-package com.baeldung.range
-
-fun main(args: Array) {
-
- (1..9).reversed().forEach {
- print(it)
- }
-
- println()
-
- (1..9).reversed().step(3).forEach {
- print(it)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Step.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Step.kt
deleted file mode 100644
index b9c5d48588..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/Step.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.baeldung.range
-
-fun main(args: Array) {
-
- for(i in 1..9 step 2){
- print(i)
- }
-
- println()
-
- for (i in 9 downTo 1 step 2){
- print(i)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/UntilRange.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/UntilRange.kt
deleted file mode 100644
index 2c116a286f..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/range/UntilRange.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.range
-
-fun main(args: Array) {
-
- for (i in 1 until 9) {
- print(i)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/rangeiterator/CustomColor.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/rangeiterator/CustomColor.kt
deleted file mode 100644
index c1ab8e1610..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/rangeiterator/CustomColor.kt
+++ /dev/null
@@ -1,56 +0,0 @@
-package com.baeldung.rangeiterator
-
-import java.lang.IllegalStateException
-
-class CustomColor(val rgb: Int): Comparable {
-
- override fun compareTo(other: CustomColor): Int {
- return this.rgb.compareTo(other.rgb)
- }
-
- operator fun rangeTo(that: CustomColor) = ColorRange(this, that)
-
- operator fun inc(): CustomColor {
- return CustomColor(rgb + 1)
- }
-
- init {
- if(rgb < 0x000000 || rgb > 0xFFFFFF){
- throw IllegalStateException("RGB must be between 0 and 16777215")
- }
- }
-
- override fun toString(): String {
- return "CustomColor(rgb=$rgb)"
- }
-}
-class ColorRange(override val start: CustomColor,
- override val endInclusive: CustomColor) : ClosedRange, Iterable{
-
- override fun iterator(): Iterator {
- return ColorIterator(start, endInclusive)
- }
-}
-
-class ColorIterator(val start: CustomColor, val endInclusive: CustomColor) : Iterator {
-
- var initValue = start
-
- override fun hasNext(): Boolean {
- return initValue <= endInclusive
- }
-
- override fun next(): CustomColor {
- return initValue++
- }
-}
-
-fun main(args: Array) {
- val a = CustomColor(0xABCDEF)
- val b = CustomColor(-1)
- val c = CustomColor(0xABCDFF)
-
- for(color in a..c){
- println(color)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/whenblock/WhenBlockTypes.kt b/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/whenblock/WhenBlockTypes.kt
deleted file mode 100644
index a4cd7b98f0..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/main/kotlin/com/baeldung/whenblock/WhenBlockTypes.kt
+++ /dev/null
@@ -1,28 +0,0 @@
-package com.baeldung.whenblock
-
-enum class UnixFileType {
- D, HYPHEN_MINUS, L
-}
-
-sealed class UnixFile {
-
- abstract fun getFileType(): UnixFileType
-
- class RegularFile(val content: String) : UnixFile() {
- override fun getFileType(): UnixFileType {
- return UnixFileType.HYPHEN_MINUS
- }
- }
-
- class Directory(val children: List) : UnixFile() {
- override fun getFileType(): UnixFileType {
- return UnixFileType.D
- }
- }
-
- class SymbolicLink(val originalFile: UnixFile) : UnixFile() {
- override fun getFileType(): UnixFileType {
- return UnixFileType.L
- }
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/equalityoperators/EqualityTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/equalityoperators/EqualityTest.kt
deleted file mode 100644
index 0728d55b73..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/equalityoperators/EqualityTest.kt
+++ /dev/null
@@ -1,58 +0,0 @@
-package com.baeldung.equalityoperators
-
-import org.junit.Test
-import kotlin.test.assertFalse
-import kotlin.test.assertTrue
-
-class EqualityTest {
-
- // Checks referential equality
- @Test
- fun givenTwoIntegers_whenCheckReference_thenEqualReference() {
- val a = Integer(10)
- val b = Integer(10)
-
- assertFalse(a === b)
- }
-
- // Checks structural equality
- @Test
- fun givenTwoIntegers_whenCheckValue_thenStructurallyEqual() {
- val a = Integer(10)
- val b = Integer(10)
-
- assertTrue(a == b)
- }
-
- @Test
- fun givenUser_whenCheckReference_thenEqualReference() {
- val user = User("John", 30, listOf("Hiking, Chess"))
- val user2 = User("Sarah", 28, listOf("Shopping, Gymnastics"))
-
- assertFalse(user === user2)
- }
-
- @Test
- fun givenUser_whenCheckValue_thenStructurallyEqual() {
- val user = User("John", 30, listOf("Hiking, Chess"))
- val user2 = User("John", 30, listOf("Hiking, Chess"))
-
- assertTrue(user == user2)
- }
-
- @Test
- fun givenArray_whenCheckReference_thenEqualReference() {
- val hobbies = arrayOf("Riding motorcycle, Video games")
- val hobbies2 = arrayOf("Riding motorcycle, Video games")
-
- assertFalse(hobbies === hobbies2)
- }
-
- @Test
- fun givenArray_whenCheckContent_thenStructurallyEqual() {
- val hobbies = arrayOf("Hiking, Chess")
- val hobbies2 = arrayOf("Hiking, Chess")
-
- assertTrue(hobbies contentEquals hobbies2)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/operators/PageTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/operators/PageTest.kt
deleted file mode 100644
index fa6e1773bd..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/operators/PageTest.kt
+++ /dev/null
@@ -1,33 +0,0 @@
-package com.baeldung.operators
-
-import org.junit.Test
-import kotlin.test.assertEquals
-import kotlin.test.assertTrue
-
-class PageTest {
-
- private val page = PageImpl(1, 10, "Java", "Kotlin", "Scala")
-
- @Test
- fun `Get convention should work as expected`() {
- assertEquals(page[1], "Kotlin")
- assertEquals(page[1, 3], listOf("Kotlin", "Scala"))
- }
-
- @Test
- fun `Invoke convention should work as expected`() {
- assertEquals(page(1), "Kotlin")
- }
-
- @Test
- fun `In convention should work on a page as expected`() {
- assertTrue("Kotlin" in page)
- }
-
-}
-
-private class PageImpl(val page: Int, val size: Int, vararg val elements: T) : Page {
- override fun pageNumber(): Int = page
- override fun pageSize(): Int = size
- override fun elements(): MutableList = mutableListOf(*elements)
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/operators/PointTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/operators/PointTest.kt
deleted file mode 100644
index 168ab6431d..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/operators/PointTest.kt
+++ /dev/null
@@ -1,48 +0,0 @@
-package com.baeldung.operators
-
-import org.junit.Test
-import kotlin.test.assertEquals
-import kotlin.test.assertTrue
-
-class PointTest {
-
- private val p1 = Point(1, 2)
- private val p2 = Point(2, 3)
-
- @Test
- fun `We should be able to add two points together using +`() {
- assertEquals(p1 + p2, Point(3, 5))
- }
-
- @Test
- fun `We shoud be able to subtract one point from another using -`() {
- assertEquals(p1 - p2, Point(-1, -1))
- }
-
- @Test
- fun `We should be able to multiply two points together with *`() {
- assertEquals(p1 * p2, Point(2, 6))
- }
-
- @Test
- fun `We should be able to divide one point by another`() {
- assertEquals(p1 / p2, Point(0, 0))
- }
-
- @Test
- fun `We should be able to scale a point by an integral factor`() {
- assertEquals(p1 * 2, Point(2, 4))
- assertEquals(2 * p1, Point(2, 4))
- }
-
- @Test
- fun `We should be able to add points to an empty shape`() {
- val line = shape {
- +Point(0, 0)
- +Point(1, 3)
- }
-
- assertTrue(Point(0, 0) in line.points)
- assertTrue(Point(1, 3) in line.points)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/operators/UtilsTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/operators/UtilsTest.kt
deleted file mode 100644
index 4abe962cb5..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/operators/UtilsTest.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.baeldung.operators
-
-import java.math.BigInteger
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class UtilsTest {
-
- @Test
- fun `We should be able to add an int value to an existing BigInteger using +`() {
- assertEquals(BigInteger.ZERO + 1, BigInteger.ONE)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/CharRangeTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/CharRangeTest.kt
deleted file mode 100644
index 0e23f508b6..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/CharRangeTest.kt
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.baeldung.range
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class CharRangeTest {
-
- @Test
- fun testCharRange() {
- assertEquals(listOf('a', 'b', 'c'), ('a'..'c').toList())
- }
-
- @Test
- fun testCharDownRange() {
- assertEquals(listOf('c', 'b', 'a'), ('c'.downTo('a')).toList())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/ColorTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/ColorTest.kt
deleted file mode 100644
index 4ac3270fcc..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/ColorTest.kt
+++ /dev/null
@@ -1,20 +0,0 @@
-package com.baeldung.range
-
-import org.junit.Test
-import kotlin.test.assertFalse
-import kotlin.test.assertTrue
-
-class ColorTest {
-
- @Test
- fun testEnumRange() {
-
- println(Color.values().toList());
- val red = Color.RED
- val yellow = Color.YELLOW
- val range = red..yellow
-
- assertTrue { range.contains(Color.MAGENTA) }
- assertFalse { range.contains(Color.BLUE) }
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/FilterTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/FilterTest.kt
deleted file mode 100644
index d0e2df8860..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/FilterTest.kt
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.baeldung.range
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class FilterTest {
-
- val r = 1..10
-
- @Test
- fun filterTest() {
- assertEquals(listOf(2, 4, 6, 8, 10), r.filter { it -> it % 2 == 0 }.toList())
- }
-
- @Test
- fun mapTest() {
- assertEquals(listOf(1, 4, 9, 16, 25, 36, 49, 64, 81, 100), r.map { it -> it * it }.toList())
- }
-
- @Test
- fun reduceTest() {
- assertEquals(55, r.reduce { a, b -> a + b })
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/FirstLastTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/FirstLastTest.kt
deleted file mode 100644
index ca797e9c9b..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/FirstLastTest.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.baeldung.range
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class FirstLastTest {
-
- @Test
- fun testFirst() {
- assertEquals(1, (1..9).first)
- }
-
- @Test
- fun testLast() {
- assertEquals(9, (1..9).last)
- }
-
- @Test
- fun testStep() {
- assertEquals(2, (1..9 step 2).step)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/OtherRangeFunctionsTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/OtherRangeFunctionsTest.kt
deleted file mode 100644
index d2d36bbfae..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/OtherRangeFunctionsTest.kt
+++ /dev/null
@@ -1,40 +0,0 @@
-package com.baeldung.range
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class OtherRangeFunctionsTest {
-
- val r = 1..20
- val repeated = listOf(1, 1, 2, 4, 4, 6, 10)
-
- @Test
- fun testMin() {
- assertEquals(1, r.min())
- }
-
- @Test
- fun testMax() {
- assertEquals(20, r.max())
- }
-
- @Test
- fun testSum() {
- assertEquals(210, r.sum())
- }
-
- @Test
- fun testAverage() {
- assertEquals(10.5, r.average())
- }
-
- @Test
- fun testCount() {
- assertEquals(20, r.count())
- }
-
- @Test
- fun testDistinct() {
- assertEquals(listOf(1, 2, 4, 6, 10), repeated.distinct())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/RangeTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/RangeTest.kt
deleted file mode 100644
index 48fa483924..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/RangeTest.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.baeldung.range
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class RangeTest {
-
- @Test
- fun testRange() {
- assertEquals(listOf(1,2,3), (1.rangeTo(3).toList()))
- }
-
- @Test
- fun testDownTo(){
- assertEquals(listOf(3,2,1), (3.downTo(1).toList()))
- }
-
- @Test
- fun testUntil(){
- assertEquals(listOf(1,2), (1.until(3).toList()))
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/ReverseRangeTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/ReverseRangeTest.kt
deleted file mode 100644
index 7e1c7badb7..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/ReverseRangeTest.kt
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.baeldung.range
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class ReverseRangeTest {
-
- @Test
- fun reversedTest() {
- assertEquals(listOf(9, 6, 3), (1..9).reversed().step(3).toList())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/StepTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/StepTest.kt
deleted file mode 100644
index 4570ceeb0a..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/StepTest.kt
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.baeldung.range
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class StepTest {
-
- @Test
- fun testStep() {
- assertEquals(listOf(1, 3, 5, 7, 9), (1..9 step 2).toList())
- }
-
- @Test
- fun testStepDown() {
- assertEquals(listOf(9, 7, 5, 3, 1), (9 downTo 1 step 2).toList())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/UntilRangeTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/UntilRangeTest.kt
deleted file mode 100644
index f941c7f1e6..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/range/UntilRangeTest.kt
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.baeldung.range
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class UntilRangeTest {
-
- @Test
- fun testUntil() {
- assertEquals(listOf(1, 2, 3, 4), (1 until 5).toList())
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/rangeiterator/CustomColorTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/rangeiterator/CustomColorTest.kt
deleted file mode 100644
index 676b47ae7a..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/rangeiterator/CustomColorTest.kt
+++ /dev/null
@@ -1,41 +0,0 @@
-package com.baeldung.rangeiterator
-
-import org.junit.Test
-import java.lang.IllegalStateException
-import kotlin.test.assertFailsWith
-import kotlin.test.assertTrue
-
-class CustomColorTest {
-
- @Test
- fun testInvalidConstructor(){
- assertFailsWith(IllegalStateException::class){
- CustomColor(-1)
- }
- }
-
- @Test
- fun assertHas10Colors(){
- assertTrue {
- val a = CustomColor(1)
- val b = CustomColor(10)
- val range = a..b
- for(cc in range){
- println(cc)
- }
- range.toList().size == 10
- }
- }
-
- @Test
- fun assertContains0xCCCCCC(){
- assertTrue {
- val a = CustomColor(0xBBBBBB)
- val b = CustomColor(0xDDDDDD)
- val range = a..b
- range.contains(CustomColor(0xCCCCCC))
- }
- }
-
-}
-
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/trywithresource/UseTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/trywithresource/UseTest.kt
deleted file mode 100644
index d17832b380..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/trywithresource/UseTest.kt
+++ /dev/null
@@ -1,67 +0,0 @@
-package com.baeldung.trywithresource
-
-import org.junit.Test
-import java.beans.ExceptionListener
-import java.beans.XMLEncoder
-import java.io.*
-import java.lang.Exception
-import kotlin.test.assertEquals
-import kotlin.test.assertTrue
-import kotlin.test.fail
-
-class UseTest {
-
- @Test
- fun givenCloseable_whenUseIsCalled_thenItIsClosed() {
- val stringWriter = StringWriter()
- val writer = BufferedWriter(stringWriter) //Using a BufferedWriter because after close() it throws.
- writer.use {
- assertEquals(writer, it)
-
- it.write("something")
- }
- try {
- writer.write("something else")
-
- fail("write() should have thrown an exception because the writer is closed.")
- } catch (e: IOException) {
- //Ok
- }
-
- assertEquals("something", stringWriter.toString())
- }
-
- @Test
- fun givenAutoCloseable_whenUseIsCalled_thenItIsClosed() {
- val baos = ByteArrayOutputStream()
- val encoder = XMLEncoder(PrintStream(baos)) //XMLEncoder is AutoCloseable but not Closeable.
- //Here, we use a PrintStream because after close() it throws.
- encoder.exceptionListener = ThrowingExceptionListener()
- encoder.use {
- assertEquals(encoder, it)
-
- it.writeObject("something")
- }
- try {
- encoder.writeObject("something else")
- encoder.flush()
-
- fail("write() should have thrown an exception because the encoder is closed.")
- } catch (e: IOException) {
- //Ok
- }
- }
-
- @Test
- fun whenSimpleFormIsUsed_thenItWorks() {
- StringWriter().use { it.write("something") }
- }
-}
-
-class ThrowingExceptionListener : ExceptionListener {
- override fun exceptionThrown(e: Exception?) {
- if(e != null) {
- throw e
- }
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/voidtypes/VoidTypesUnitTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/voidtypes/VoidTypesUnitTest.kt
deleted file mode 100644
index 468352dbed..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/voidtypes/VoidTypesUnitTest.kt
+++ /dev/null
@@ -1,63 +0,0 @@
-package com.baeldung.voidtypes
-
-import org.junit.jupiter.api.Test
-import kotlin.test.assertNull
-import kotlin.test.assertTrue
-
-class VoidTypesUnitTest {
-
- // Un-commenting below methods will result into compilation error
- // as the syntax used is incorrect and is used for explanation in tutorial.
-
- // fun returnTypeAsVoidAttempt1(): Void {
- // println("Trying with Void as return type")
- // }
-
- // fun returnTypeAsVoidAttempt2(): Void {
- // println("Trying with Void as return type")
- // return null
- // }
-
- fun returnTypeAsVoidSuccess(): Void? {
- println("Function can have Void as return type")
- return null
- }
-
- fun unitReturnTypeForNonMeaningfulReturns(): Unit {
- println("No meaningful return")
- }
-
- fun unitReturnTypeIsImplicit() {
- println("Unit Return type is implicit")
- }
-
- fun alwaysThrowException(): Nothing {
- throw IllegalArgumentException()
- }
-
- fun invokeANothingOnlyFunction() {
- alwaysThrowException()
-
- var name = "Tom"
- }
-
- @Test
- fun givenJavaVoidFunction_thenMappedToKotlinUnit() {
- assertTrue(System.out.println() is Unit)
- }
-
- @Test
- fun givenVoidReturnType_thenReturnsNullOnly() {
- assertNull(returnTypeAsVoidSuccess())
- }
-
- @Test
- fun givenUnitReturnTypeDeclared_thenReturnsOfTypeUnit() {
- assertTrue(unitReturnTypeForNonMeaningfulReturns() is Unit)
- }
-
- @Test
- fun givenUnitReturnTypeNotDeclared_thenReturnsOfTypeUnit() {
- assertTrue(unitReturnTypeIsImplicit() is Unit)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/whenblock/WhenBlockUnitTest.kt b/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/whenblock/WhenBlockUnitTest.kt
deleted file mode 100644
index 31b6ad69f5..0000000000
--- a/core-kotlin-modules/core-kotlin-lang/src/test/kotlin/com/baeldung/whenblock/WhenBlockUnitTest.kt
+++ /dev/null
@@ -1,136 +0,0 @@
-package com.baeldung.whenblock
-
-import org.junit.Assert.assertEquals
-import org.junit.Assert.assertTrue
-import org.junit.Test
-
-class WhenBlockUnitTest {
-
- @Test
- fun testWhenExpression() {
- val directoryType = UnixFileType.D
-
- val objectType = when (directoryType) {
- UnixFileType.D -> "d"
- UnixFileType.HYPHEN_MINUS -> "-"
- UnixFileType.L -> "l"
- }
-
- assertEquals("d", objectType)
- }
-
- @Test
- fun testWhenExpressionWithDefaultCase() {
- val fileType = UnixFileType.L
-
- val result = when (fileType) {
- UnixFileType.L -> "linking to another file"
- else -> "not a link"
- }
-
- assertEquals("linking to another file", result)
- }
-
- @Test(expected = IllegalArgumentException::class)
- fun testWhenExpressionWithThrowException() {
- val fileType = UnixFileType.L
-
- val result: Boolean = when (fileType) {
- UnixFileType.HYPHEN_MINUS -> true
- else -> throw IllegalArgumentException("Wrong type of file")
- }
- }
-
- @Test
- fun testWhenStatement() {
- val fileType = UnixFileType.HYPHEN_MINUS
-
- when (fileType) {
- UnixFileType.HYPHEN_MINUS -> println("Regular file type")
- UnixFileType.D -> println("Directory file type")
- }
- }
-
- @Test
- fun testCaseCombination() {
- val fileType = UnixFileType.D
-
- val frequentFileType: Boolean = when (fileType) {
- UnixFileType.HYPHEN_MINUS, UnixFileType.D -> true
- else -> false
- }
-
- assertTrue(frequentFileType)
- }
-
- @Test
- fun testWhenWithoutArgument() {
- val fileType = UnixFileType.L
-
- val objectType = when {
- fileType === UnixFileType.L -> "l"
- fileType === UnixFileType.HYPHEN_MINUS -> "-"
- fileType === UnixFileType.D -> "d"
- else -> "unknown file type"
- }
-
- assertEquals("l", objectType)
- }
-
- @Test
- fun testDynamicCaseExpression() {
- val unixFile = UnixFile.SymbolicLink(UnixFile.RegularFile("Content"))
-
- when {
- unixFile.getFileType() == UnixFileType.D -> println("It's a directory!")
- unixFile.getFileType() == UnixFileType.HYPHEN_MINUS -> println("It's a regular file!")
- unixFile.getFileType() == UnixFileType.L -> println("It's a soft link!")
- }
- }
-
- @Test
- fun testCollectionCaseExpressions() {
- val regularFile = UnixFile.RegularFile("Test Content")
- val symbolicLink = UnixFile.SymbolicLink(regularFile)
- val directory = UnixFile.Directory(listOf(regularFile, symbolicLink))
-
- val isRegularFileInDirectory = when (regularFile) {
- in directory.children -> true
- else -> false
- }
-
- val isSymbolicLinkInDirectory = when {
- symbolicLink in directory.children -> true
- else -> false
- }
-
- assertTrue(isRegularFileInDirectory)
- assertTrue(isSymbolicLinkInDirectory)
- }
-
- @Test
- fun testRangeCaseExpressions() {
- val fileType = UnixFileType.HYPHEN_MINUS
-
- val isCorrectType = when (fileType) {
- in UnixFileType.D..UnixFileType.L -> true
- else -> false
- }
-
- assertTrue(isCorrectType)
- }
-
- @Test
- fun testWhenWithIsOperatorWithSmartCase() {
- val unixFile: UnixFile = UnixFile.RegularFile("Test Content")
-
- val result = when (unixFile) {
- is UnixFile.RegularFile -> unixFile.content
- is UnixFile.Directory -> unixFile.children.map { it.getFileType() }.joinToString(", ")
- is UnixFile.SymbolicLink -> unixFile.originalFile.getFileType()
- }
-
- assertEquals("Test Content", result)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-strings/README.md b/core-kotlin-modules/core-kotlin-strings/README.md
deleted file mode 100644
index 0e3d8ea57f..0000000000
--- a/core-kotlin-modules/core-kotlin-strings/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-## Core Kotlin Strings
-
-This module contains articles about core Kotlin strings.
-
-### Relevant articles:
-- [Generate a Random Alphanumeric String in Kotlin](https://www.baeldung.com/kotlin-random-alphanumeric-string)
-- [String Comparison in Kotlin](https://www.baeldung.com/kotlin-string-comparison)
-- [Concatenate Strings in Kotlin](https://www.baeldung.com/kotlin-concatenate-strings)
-- [Kotlin String Templates](https://www.baeldung.com/kotlin-string-template)
diff --git a/core-kotlin-modules/core-kotlin-strings/pom.xml b/core-kotlin-modules/core-kotlin-strings/pom.xml
deleted file mode 100644
index fb2998e9e1..0000000000
--- a/core-kotlin-modules/core-kotlin-strings/pom.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
- 4.0.0
- core-kotlin-strings
- core-kotlin-strings
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.apache.commons
- commons-lang3
- ${commons-lang3.version}
-
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-strings/src/main/kotlin/com/baeldung/stringtemplates/Templates.kt b/core-kotlin-modules/core-kotlin-strings/src/main/kotlin/com/baeldung/stringtemplates/Templates.kt
deleted file mode 100644
index 4b2d863618..0000000000
--- a/core-kotlin-modules/core-kotlin-strings/src/main/kotlin/com/baeldung/stringtemplates/Templates.kt
+++ /dev/null
@@ -1,115 +0,0 @@
-package com.baeldung.stringtemplates
-
-/**
- * Example of a useful function defined in Kotlin String class
- */
-fun padExample(): String {
- return "Hello".padEnd(10, '!')
-}
-
-/**
- * Example of a simple string template usage
- */
-fun simpleTemplate(n: Int): String {
- val message = "n = $n"
- return message
-}
-
-/**
- * Example of a string template with a simple expression
- */
-fun templateWithExpression(n: Int): String {
- val message = "n + 1 = ${n + 1}"
- return message
-}
-
-/**
- * Example of a string template with expression containing some logic
- */
-fun templateWithLogic(n: Int): String {
- val message = "$n is ${if (n > 0) "positive" else "not positive"}"
- return message
-}
-
-/**
- * Example of nested string templates
- */
-fun nestedTemplates(n: Int): String {
- val message = "$n is ${if (n > 0) "positive" else if (n < 0) "negative and ${if (n % 2 == 0) "even" else "odd"}" else "zero"}"
- return message
-}
-
-/**
- * Example of joining array's element into a string with a default separator
- */
-fun templateJoinArray(): String {
- val numbers = listOf(1, 1, 2, 3, 5, 8)
- val message = "first Fibonacci numbers: ${numbers.joinToString()}"
- return message
-}
-
-/**
- * Example of escaping the dollar sign
- */
-fun notAStringTemplate(): String {
- val message = "n = \$n"
- return message
-}
-
-/**
- * Example of a simple triple quoted string
- */
-fun showFilePath(): String {
- val path = """C:\Repository\read.me"""
- return path
-}
-
-/**
- * Example of a multiline string
- */
-fun showMultiline(): String {
- val receipt = """Item 1: $1.00
-Item 2: $0.50"""
- return receipt
-}
-
-/**
- * Example of a multiline string with indentation
- */
-fun showMultilineIndent(): String {
- val receipt = """Item 1: $1.00
- >Item 2: $0.50""".trimMargin(">")
- return receipt
-}
-
-/**
- * Example of a triple quoted string with a not-working escape sequence
- */
-fun showTripleQuotedWrongEscape(): String {
- val receipt = """Item 1: $1.00\nItem 2: $0.50"""
- return receipt
-}
-
-/**
- * Example of a triple quoted string with a correctly working escape sequence
- */
-
-fun showTripleQuotedCorrectEscape(): String {
- val receipt = """Item 1: $1.00${"\n"}Item 2: $0.50"""
- return receipt
-}
-
-fun main(args: Array) {
- println(padExample())
- println(simpleTemplate(10))
- println(templateWithExpression(5))
- println(templateWithLogic(7))
- println(nestedTemplates(-5))
- println(templateJoinArray())
- println(notAStringTemplate())
- println(showFilePath())
- println(showMultiline())
- println(showMultilineIndent())
- println(showTripleQuotedWrongEscape())
- println(showTripleQuotedCorrectEscape())
-}
diff --git a/core-kotlin-modules/core-kotlin-strings/src/test/kotlin/com/baeldung/randomstring/RandomStringUnitTest.kt b/core-kotlin-modules/core-kotlin-strings/src/test/kotlin/com/baeldung/randomstring/RandomStringUnitTest.kt
deleted file mode 100644
index 5b84d1f67d..0000000000
--- a/core-kotlin-modules/core-kotlin-strings/src/test/kotlin/com/baeldung/randomstring/RandomStringUnitTest.kt
+++ /dev/null
@@ -1,64 +0,0 @@
-package com.baeldung.randomstring
-
-import org.apache.commons.lang3.RandomStringUtils
-import org.junit.Before
-import org.junit.jupiter.api.BeforeAll
-import org.junit.jupiter.api.BeforeEach
-import org.junit.jupiter.api.Test
-import java.security.SecureRandom
-import java.util.concurrent.ThreadLocalRandom
-import kotlin.experimental.and
-import kotlin.streams.asSequence
-import kotlin.test.assertEquals
-
-const val STRING_LENGTH = 10
-const val ALPHANUMERIC_REGEX = "[a-zA-Z0-9]+"
-
-class RandomStringUnitTest {
- private val charPool : List = ('a'..'z') + ('A'..'Z') + ('0'..'9')
-
- @Test
- fun givenAStringLength_whenUsingJava_thenReturnAlphanumericString() {
- var randomString = ThreadLocalRandom.current()
- .ints(STRING_LENGTH.toLong(), 0, charPool.size)
- .asSequence()
- .map(charPool::get)
- .joinToString("")
-
- assert(randomString.matches(Regex(ALPHANUMERIC_REGEX)))
- assertEquals(STRING_LENGTH, randomString.length)
- }
-
- @Test
- fun givenAStringLength_whenUsingKotlin_thenReturnAlphanumericString() {
- var randomString = (1..STRING_LENGTH).map { i -> kotlin.random.Random.nextInt(0, charPool.size) }
- .map(charPool::get)
- .joinToString("")
-
- assert(randomString.matches(Regex(ALPHANUMERIC_REGEX)))
- assertEquals(STRING_LENGTH, randomString.length)
- }
-
- @Test
- fun givenAStringLength_whenUsingApacheCommon_thenReturnAlphanumericString() {
- var randomString = RandomStringUtils.randomAlphanumeric(STRING_LENGTH)
-
- assert(randomString.matches(Regex(ALPHANUMERIC_REGEX)))
- assertEquals(STRING_LENGTH, randomString.length)
- }
-
- @Test
- fun givenAStringLength_whenUsingRandomForBytes_thenReturnAlphanumericString() {
- val random = SecureRandom()
- val bytes = ByteArray(STRING_LENGTH)
- random.nextBytes(bytes)
-
- var randomString = (0..bytes.size - 1).map { i ->
- charPool.get((bytes[i] and 0xFF.toByte() and (charPool.size-1).toByte()).toInt())
- }.joinToString("")
-
- assert(randomString.matches(Regex(ALPHANUMERIC_REGEX)))
- assertEquals(STRING_LENGTH, randomString.length)
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-strings/src/test/kotlin/com/baeldung/stringcomparison/StringComparisonTest.kt b/core-kotlin-modules/core-kotlin-strings/src/test/kotlin/com/baeldung/stringcomparison/StringComparisonTest.kt
deleted file mode 100644
index 49ff798faa..0000000000
--- a/core-kotlin-modules/core-kotlin-strings/src/test/kotlin/com/baeldung/stringcomparison/StringComparisonTest.kt
+++ /dev/null
@@ -1,47 +0,0 @@
-package com.baeldung.stringcomparison
-
-import org.junit.Test
-import kotlin.test.assertFalse
-import kotlin.test.assertTrue
-
-class StringComparisonUnitTest {
-
- @Test
- fun `compare using equals operator`() {
- val first = "kotlin"
- val second = "kotlin"
- val firstCapitalized = "KOTLIN"
- assertTrue { first == second }
- assertFalse { first == firstCapitalized }
- }
-
- @Test
- fun `compare using referential equals operator`() {
- val first = "kotlin"
- val second = "kotlin"
- val third = String("kotlin".toCharArray())
- assertTrue { first === second }
- assertFalse { first === third }
- }
-
- @Test
- fun `compare using equals method`() {
- val first = "kotlin"
- val second = "kotlin"
- val firstCapitalized = "KOTLIN"
- assertTrue { first.equals(second) }
- assertFalse { first.equals(firstCapitalized) }
- assertTrue { first.equals(firstCapitalized, true) }
- }
-
- @Test
- fun `compare using compare method`() {
- val first = "kotlin"
- val second = "kotlin"
- val firstCapitalized = "KOTLIN"
- assertTrue { first.compareTo(second) == 0 }
- assertTrue { first.compareTo(firstCapitalized) == 32 }
- assertTrue { firstCapitalized.compareTo(first) == -32 }
- assertTrue { first.compareTo(firstCapitalized, true) == 0 }
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-strings/src/test/kotlin/com/baeldung/stringconcatenation/StringConcatenationTest.kt b/core-kotlin-modules/core-kotlin-strings/src/test/kotlin/com/baeldung/stringconcatenation/StringConcatenationTest.kt
deleted file mode 100644
index 9ac011f7d2..0000000000
--- a/core-kotlin-modules/core-kotlin-strings/src/test/kotlin/com/baeldung/stringconcatenation/StringConcatenationTest.kt
+++ /dev/null
@@ -1,48 +0,0 @@
-package com.baeldung.stringconcatenation
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class StringConcatenationTest {
-
- @Test
- fun givenTwoStrings_concatenateWithTemplates_thenEquals() {
- val a = "Hello"
- val b = "Baeldung"
- val c = "$a $b"
-
- assertEquals("Hello Baeldung", c)
- }
-
- @Test
- fun givenTwoStrings_concatenateWithPlusOperator_thenEquals() {
- val a = "Hello"
- val b = "Baeldung"
- val c = a + " " + b
-
- assertEquals("Hello Baeldung", c)
- }
-
- @Test
- fun givenTwoStrings_concatenateWithStringBuilder_thenEquals() {
- val a = "Hello"
- val b = "Baeldung"
-
- val builder = StringBuilder()
- builder.append(a).append(" ").append(b)
-
- val c = builder.toString()
-
- assertEquals("Hello Baeldung", c)
- }
-
- @Test
- fun givenTwoStrings_concatenateWithPlusMethod_thenEquals() {
- val a = "Hello"
- val b = "Baeldung"
- val c = a.plus(" ").plus(b)
-
- assertEquals("Hello Baeldung", c)
- }
-
-}
diff --git a/core-kotlin-modules/core-kotlin-testing/README.md b/core-kotlin-modules/core-kotlin-testing/README.md
deleted file mode 100644
index f4d89593a7..0000000000
--- a/core-kotlin-modules/core-kotlin-testing/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-## Core Kotlin Testing
-
-This module contains articles about testing in Kotlin
-
-### Relevant articles:
-- [JUnit 5 for Kotlin Developers](https://www.baeldung.com/junit-5-kotlin)
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-testing/pom.xml b/core-kotlin-modules/core-kotlin-testing/pom.xml
deleted file mode 100644
index d38bc62409..0000000000
--- a/core-kotlin-modules/core-kotlin-testing/pom.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
- 4.0.0
- core-kotlin-testing
- core-kotlin-testing
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.junit.platform
- junit-platform-runner
- ${junit.platform.version}
- test
-
-
-
-
- 1.1.1
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/Calculator.kt b/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/Calculator.kt
deleted file mode 100644
index 9f6e3ab2b9..0000000000
--- a/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/Calculator.kt
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.baeldung.junit5
-
-class Calculator {
- fun add(a: Int, b: Int) = a + b
-
- fun divide(a: Int, b: Int) = if (b == 0) {
- throw DivideByZeroException(a)
- } else {
- a / b
- }
-
- fun square(a: Int) = a * a
-
- fun squareRoot(a: Int) = Math.sqrt(a.toDouble())
-
- fun log(base: Int, value: Int) = Math.log(value.toDouble()) / Math.log(base.toDouble())
-}
diff --git a/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/CalculatorUnitTest.kt b/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/CalculatorUnitTest.kt
deleted file mode 100644
index 07cab3b76e..0000000000
--- a/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/CalculatorUnitTest.kt
+++ /dev/null
@@ -1,82 +0,0 @@
-package com.baeldung.junit5
-
-import org.junit.jupiter.api.*
-import org.junit.jupiter.api.function.Executable
-
-class CalculatorUnitTest {
- private val calculator = Calculator()
-
- @Test
- fun `Adding 1 and 3 should be equal to 4`() {
- Assertions.assertEquals(4, calculator.add(1, 3))
- }
-
- @Test
- fun `Dividing by zero should throw the DivideByZeroException`() {
- val exception = Assertions.assertThrows(DivideByZeroException::class.java) {
- calculator.divide(5, 0)
- }
-
- Assertions.assertEquals(5, exception.numerator)
- }
-
- @Test
- fun `The square of a number should be equal to that number multiplied in itself`() {
- Assertions.assertAll(
- Executable { Assertions.assertEquals(1, calculator.square(1)) },
- Executable { Assertions.assertEquals(4, calculator.square(2)) },
- Executable { Assertions.assertEquals(9, calculator.square(3)) }
- )
- }
-
- @TestFactory
- fun testSquaresFactory() = listOf(
- DynamicTest.dynamicTest("when I calculate 1^2 then I get 1") { Assertions.assertEquals(1,calculator.square(1))},
- DynamicTest.dynamicTest("when I calculate 2^2 then I get 4") { Assertions.assertEquals(4,calculator.square(2))},
- DynamicTest.dynamicTest("when I calculate 3^2 then I get 9") { Assertions.assertEquals(9,calculator.square(3))}
- )
-
- @TestFactory
- fun testSquaresFactory2() = listOf(
- 1 to 1,
- 2 to 4,
- 3 to 9,
- 4 to 16,
- 5 to 25)
- .map { (input, expected) ->
- DynamicTest.dynamicTest("when I calculate $input^2 then I get $expected") {
- Assertions.assertEquals(expected, calculator.square(input))
- }
- }
-
- private val squaresTestData = listOf(
- 1 to 1,
- 2 to 4,
- 3 to 9,
- 4 to 16,
- 5 to 25)
-
- @TestFactory
- fun testSquaresFactory3() = squaresTestData
- .map { (input, expected) ->
- DynamicTest.dynamicTest("when I calculate $input^2 then I get $expected") {
- Assertions.assertEquals(expected, calculator.square(input))
- }
- }
- @TestFactory
- fun testSquareRootsFactory3() = squaresTestData
- .map { (expected, input) ->
- DynamicTest.dynamicTest("I calculate the square root of $input then I get $expected") {
- Assertions.assertEquals(expected.toDouble(), calculator.squareRoot(input))
- }
- }
-
- @Tags(
- Tag("slow"),
- Tag("logarithms")
- )
- @Test
- fun `Log to base 2 of 8 should be equal to 3`() {
- Assertions.assertEquals(3.0, calculator.log(2, 8))
- }
-}
diff --git a/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/DivideByZeroException.kt b/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/DivideByZeroException.kt
deleted file mode 100644
index 5675367fd5..0000000000
--- a/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/DivideByZeroException.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.junit5
-
-class DivideByZeroException(val numerator: Int) : Exception()
diff --git a/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/SimpleUnitTest.kt b/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/SimpleUnitTest.kt
deleted file mode 100644
index e3fe998efd..0000000000
--- a/core-kotlin-modules/core-kotlin-testing/src/test/kotlin/com/baeldung/junit5/SimpleUnitTest.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.baeldung.junit5
-
-import org.junit.jupiter.api.Assertions
-import org.junit.jupiter.api.Disabled
-import org.junit.jupiter.api.Test
-
-class SimpleUnitTest {
-
- @Test
- fun `isEmpty should return true for empty lists`() {
- val list = listOf()
- Assertions.assertTrue(list::isEmpty)
- }
-
- @Test
- @Disabled
- fun `3 is equal to 4`() {
- Assertions.assertEquals(3, 4) {
- "Three does not equal four"
- }
- }
-}
diff --git a/core-kotlin-modules/core-kotlin/README.md b/core-kotlin-modules/core-kotlin/README.md
deleted file mode 100644
index a890658e95..0000000000
--- a/core-kotlin-modules/core-kotlin/README.md
+++ /dev/null
@@ -1,15 +0,0 @@
-## Core Kotlin
-
-This module contains articles about Kotlin core features.
-
-### Relevant articles:
-
-- [Introduction to the Kotlin Language](https://www.baeldung.com/kotlin-intro)
-- [Kotlin Java Interoperability](https://www.baeldung.com/kotlin-java-interoperability)
-- [Get a Random Number in Kotlin](https://www.baeldung.com/kotlin-random-number)
-- [Create a Java and Kotlin Project with Maven](https://www.baeldung.com/kotlin-maven-java-project)
-- [Kotlin Ternary Conditional Operator](https://www.baeldung.com/kotlin-ternary-operator)
-- [Sequences in Kotlin](https://www.baeldung.com/kotlin/sequences)
-- [Converting Kotlin Data Class from JSON using GSON](https://www.baeldung.com/kotlin-json-convert-data-class)
-- [Exception Handling in Kotlin](https://www.baeldung.com/kotlin/exception-handling)
-- [Quick Guide to Kotlin Default and Named Arguments](https://www.baeldung.com/kotlin/default-named-arguments)
diff --git a/core-kotlin-modules/core-kotlin/pom.xml b/core-kotlin-modules/core-kotlin/pom.xml
deleted file mode 100644
index 6e36b7c8ef..0000000000
--- a/core-kotlin-modules/core-kotlin/pom.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
- 4.0.0
- core-kotlin
- core-kotlin
- jar
-
-
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.junit.platform
- junit-platform-runner
- ${junit.platform.version}
- test
-
-
-
-
- 1.1.1
-
-
-
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/interoperability/ArrayExample.java b/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/interoperability/ArrayExample.java
deleted file mode 100644
index 93b9a3984a..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/interoperability/ArrayExample.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.baeldung.interoperability;
-
-import java.io.File;
-import java.io.FileReader;
-import java.io.IOException;
-
-public class ArrayExample {
-
- public int sumValues(int[] nums) {
- int res = 0;
-
- for (int x:nums) {
- res += x;
- }
-
- return res;
- }
-
- public void writeList() throws IOException {
- File file = new File("E://file.txt");
- FileReader fr = new FileReader(file);
- fr.close();
- }
-}
diff --git a/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/interoperability/Customer.java b/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/interoperability/Customer.java
deleted file mode 100644
index 4a070a0f97..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/interoperability/Customer.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.baeldung.interoperability;
-
-public class Customer {
-
- private String firstName;
- private String lastName;
-
- public String getFirstName() {
- return firstName;
- }
-
- public void setFirstName(String firstName) {
- this.firstName = firstName;
- }
-
- public String getLastName() {
- return lastName;
- }
-
- public void setLastName(String lastName) {
- this.lastName = lastName;
- }
-
-}
diff --git a/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/introduction/StringUtils.java b/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/introduction/StringUtils.java
deleted file mode 100644
index 1c477ce039..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/introduction/StringUtils.java
+++ /dev/null
@@ -1,7 +0,0 @@
-package com.baeldung.introduction;
-
-public class StringUtils {
- public static String toUpperCase(String name) {
- return name.toUpperCase();
- }
-}
diff --git a/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/mavenjavakotlin/Application.java b/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/mavenjavakotlin/Application.java
deleted file mode 100644
index ac933d6228..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/mavenjavakotlin/Application.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package com.baeldung.mavenjavakotlin;
-
-import com.baeldung.mavenjavakotlin.services.JavaService;
-
-public class Application {
-
- private static final String JAVA = "java";
- private static final String KOTLIN = "kotlin";
-
- public static void main(String[] args) {
- String language = args[0];
- switch (language) {
- case JAVA:
- new JavaService().sayHello();
- break;
- case KOTLIN:
- new KotlinService().sayHello();
- break;
- default:
- // Do nothing
- break;
- }
- }
-
-}
diff --git a/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/mavenjavakotlin/services/JavaService.java b/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/mavenjavakotlin/services/JavaService.java
deleted file mode 100644
index b767e761af..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/java/com/baeldung/mavenjavakotlin/services/JavaService.java
+++ /dev/null
@@ -1,9 +0,0 @@
-package com.baeldung.mavenjavakotlin.services;
-
-public class JavaService {
-
- public void sayHello() {
- System.out.println("Java says 'Hello World!'");
- }
-
-}
diff --git a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/arguments/DefaultArguments.kt b/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/arguments/DefaultArguments.kt
deleted file mode 100644
index 691b3475b4..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/arguments/DefaultArguments.kt
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.baeldung.arguments
-
-fun main() {
-
- // Skip both the connectTimeout and enableRetry arguments
- connect("http://www.baeldung.com")
-
- // Skip only the enableRetry argument:
- connect("http://www.baeldung.com", 5000)
-
- // Skip only the middle argument connectTimeout
- // connect("http://www.baeldung.com", false) // This results in a compiler error
-
- // Because we skipped the connectTimeout argument, we must pass the enableRetry as a named argument
- connect("http://www.baeldung.com", enableRetry = false)
-
- // Overriding Functions and Default Arguments
- val realConnector = RealConnector()
- realConnector.connect("www.baeldung.com")
- realConnector.connect()
-}
-
-fun connect(url: String, connectTimeout: Int = 1000, enableRetry: Boolean = true) {
- println("The parameters are url = $url, connectTimeout = $connectTimeout, enableRetry = $enableRetry")
-}
-
-open class AbstractConnector {
- open fun connect(url: String = "localhost") {
- // function implementation
- }
-}
-
-class RealConnector : AbstractConnector() {
- override fun connect(url: String) {
- println("The parameter is url = $url")
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/arguments/NamedArguments.kt b/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/arguments/NamedArguments.kt
deleted file mode 100644
index 0cbf6f158a..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/arguments/NamedArguments.kt
+++ /dev/null
@@ -1,28 +0,0 @@
-package com.baeldung.arguments
-
-fun main() {
- resizePane(newSize = 10, forceResize = true, noAnimation = false)
-
- // Swap the order of last two named arguments
- resizePane(newSize = 11, noAnimation = false, forceResize = true)
-
- // Named arguments can be passed in any order
- resizePane(forceResize = true, newSize = 12, noAnimation = false)
-
- // Mixing Named and Positional Arguments
- // Kotlin 1.3 would allow us to name only the arguments after the positional ones
- resizePane(20, true, noAnimation = false)
-
- // Using a positional argument in the middle of named arguments (supported from Kotlin 1.4.0)
- // resizePane(newSize = 20, true, noAnimation = false)
-
- // Only the last argument as a positional argument (supported from Kotlin 1.4.0)
- // resizePane(newSize = 30, forceResize = true, false)
-
- // Use a named argument in the middle of positional arguments (supported from Kotlin 1.4.0)
- // resizePane(40, forceResize = true, false)
-}
-
-fun resizePane(newSize: Int, forceResize: Boolean, noAnimation: Boolean) {
- println("The parameters are newSize = $newSize, forceResize = $forceResize, noAnimation = $noAnimation")
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/exceptionhandling/ExceptionHandling.kt b/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/exceptionhandling/ExceptionHandling.kt
deleted file mode 100644
index 6689ab43e4..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/exceptionhandling/ExceptionHandling.kt
+++ /dev/null
@@ -1,88 +0,0 @@
-package com.baeldung.exceptionhandling
-
-import java.io.IOException
-
-class ExceptionHandling {
-
- fun tryCatchBlock(): Int? {
- try {
- val message = "Welcome to Kotlin Tutorials"
- return message.toInt()
- } catch (exception: NumberFormatException) {
- println("NumberFormatException in the code")
- return null
- }
- }
-
- fun tryCatchExpression(): Int? {
- val number = try {
- val message = "Welcome to Kotlin Tutorials"
- message.toInt()
- } catch (exception: NumberFormatException) {
- println("NumberFormatException in the code")
- null
- }
- return number
- }
-
- fun multipleCatchBlock(): Int? {
- return try {
- val result = 25 / 0
- result
- } catch (exception: NumberFormatException) {
- println("NumberFormatException in the code")
- null
- } catch (exception: ArithmeticException) {
- println("ArithmeticException in the code")
- null
- } catch (exception: Exception) {
- println("Exception in the code")
- null
- }
- }
-
- fun nestedTryCatchBlock(): Int? {
- return try {
- val firstNumber = 50 / 2 * 0
- try {
- val secondNumber = 100 / firstNumber
- secondNumber
- } catch (exception: ArithmeticException) {
- println("ArithmeticException in the code")
- null
- }
- } catch (exception: NumberFormatException) {
- println("NumberFormatException in the code")
- null
- }
- }
-
- fun finallyBlock(): Int? {
- return try {
- val message = "Welcome to Kotlin Tutorials"
- message.toInt()
- } catch (exception: NumberFormatException) {
- println("NumberFormatException in the code")
- null
- } finally {
- println("In the Finally block")
- }
- }
-
- fun throwKeyword(): Int {
- val message = "Welcome to Kotlin Tutorials"
- if (message.length > 10) throw IllegalArgumentException("String is invalid")
- else return message.length
- }
-
- fun throwExpression(): Int? {
- val message: String? = null
- return message?.length ?: throw IllegalArgumentException("String is null")
- }
-
- @Throws(IOException::class)
- fun throwsAnnotation(): String?{
- val filePath = null
- return filePath ?: throw IOException("File path is invalid")
- }
-}
diff --git a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/Example1.kt b/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/Example1.kt
deleted file mode 100644
index aacd8f7915..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/Example1.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package com.baeldung.introduction
-
-fun main(args: Array){
- println("hello word")
-}
diff --git a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/Item.kt b/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/Item.kt
deleted file mode 100644
index bb91dd1eae..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/Item.kt
+++ /dev/null
@@ -1,14 +0,0 @@
-package com.baeldung.introduction
-
-open class Item(val id: String, val name: String = "unknown_name") {
- open fun getIdOfItem(): String {
- return id
- }
-}
-
-class ItemWithCategory(id: String, name: String, val categoryId: String) : Item(id, name) {
- override fun getIdOfItem(): String {
- return id + name
- }
-}
-
diff --git a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/ItemService.kt b/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/ItemService.kt
deleted file mode 100644
index dfcf17df7c..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/ItemService.kt
+++ /dev/null
@@ -1,83 +0,0 @@
-package com.baeldung.introduction
-
-import java.util.*
-
-class ItemService {
- fun findItemNameForId(id: String): Item? {
- val itemId = UUID.randomUUID().toString()
- return Item(itemId, "name-$itemId")
- }
-}
-
-class ItemManager(val categoryId: String, val dbConnection: String) {
- var email = ""
-
- constructor(categoryId: String, dbConnection: String, email: String)
- : this(categoryId, dbConnection) {
- this.email = email
- }
-
- fun isFromSpecificCategory(catId: String): Boolean {
- return categoryId == catId
- }
-
- fun makeAnalyisOfCategory(catId: String): Unit {
- val result = if (catId == "100") "Yes" else "No"
- println(result)
- `object`()
- }
-
- fun sum(a: Int, b: Int): Int {
- return a + b
- }
-
- fun `object`(): String {
- return "this is object"
- }
-
-}
-
-fun main(args: Array) {
- val numbers = arrayOf("first", "second", "third", "fourth")
-
- for (n in numbers) {
- println(n)
- }
-
- for (i in 2..9 step 2) {
- println(i)
- }
-
- val res = 1.rangeTo(10).map { it * 2 }
- println(res)
-
- val firstName = "Tom"
- val secondName = "Mary"
- val concatOfNames = "$firstName + $secondName"
- println("Names: $concatOfNames")
- val sum = "four: ${2 + 2}"
-
- val itemManager = ItemManager("cat_id", "db://connection")
- ItemManager(categoryId = "catId", dbConnection = "db://Connection")
- val result = "function result: ${itemManager.isFromSpecificCategory("1")}"
- println(result)
-
- val number = 2
- if (number < 10) {
- println("number less that 10")
- } else if (number > 10) {
- println("number is greater that 10")
- }
-
- val name = "John"
- when (name) {
- "John" -> println("Hi man")
- "Alice" -> println("Hi lady")
- }
-
- val items = listOf(1, 2, 3, 4)
-
-
- val rwList = mutableListOf(1, 2, 3)
- rwList.add(5)
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/ListExtension.kt b/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/ListExtension.kt
deleted file mode 100644
index e71292c60a..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/ListExtension.kt
+++ /dev/null
@@ -1,14 +0,0 @@
-package com.baeldung.introduction
-
-import java.util.concurrent.ThreadLocalRandom
-
-class ListExtension {
- fun List.random(): T? {
- if (this.isEmpty()) return null
- return get(ThreadLocalRandom.current().nextInt(count()))
- }
-
- fun getRandomElementOfList(list: List): T? {
- return list.random()
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/MathematicsOperations.kt b/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/MathematicsOperations.kt
deleted file mode 100644
index 0ed30ed5b4..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/introduction/MathematicsOperations.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package com.baeldung.introduction
-
-class MathematicsOperations {
- fun addTwoNumbers(a: Int, b: Int): Int {
- return a + b
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/mavenjavakotlin/KotlinService.kt b/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/mavenjavakotlin/KotlinService.kt
deleted file mode 100644
index 10d6a792d8..0000000000
--- a/core-kotlin-modules/core-kotlin/src/main/kotlin/com/baeldung/mavenjavakotlin/KotlinService.kt
+++ /dev/null
@@ -1,9 +0,0 @@
-package com.baeldung.mavenjavakotlin
-
-class KotlinService {
-
- fun sayHello() {
- System.out.println("Kotlin says 'Hello World!'")
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/test/java/com/baeldung/introduction/JavaCallToKotlinUnitTest.java b/core-kotlin-modules/core-kotlin/src/test/java/com/baeldung/introduction/JavaCallToKotlinUnitTest.java
deleted file mode 100644
index 2c386eaad3..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/java/com/baeldung/introduction/JavaCallToKotlinUnitTest.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.baeldung.introduction;
-
-import org.junit.Test;
-
-import static org.junit.Assert.assertEquals;
-
-public class JavaCallToKotlinUnitTest {
- @Test
- public void givenKotlinClass_whenCallFromJava_shouldProduceResults() {
- //when
- int res = new MathematicsOperations().addTwoNumbers(2, 4);
-
- //then
- assertEquals(6, res);
-
- }
-}
diff --git a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/exceptionhandling/ExceptionHandlingUnitTest.kt b/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/exceptionhandling/ExceptionHandlingUnitTest.kt
deleted file mode 100644
index af7aa4406f..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/exceptionhandling/ExceptionHandlingUnitTest.kt
+++ /dev/null
@@ -1,51 +0,0 @@
-package com.baeldung.exceptionhandling
-
-import org.junit.jupiter.api.Test
-import org.junit.jupiter.api.assertThrows
-import java.io.IOException
-import kotlin.test.assertNull
-
-class ExceptionHandlingUnitTest {
-
- private val classUnderTest: ExceptionHandling = ExceptionHandling()
-
- @Test
- fun givenInvalidConversion_whenTryCatchUsed_thenReturnsCatchBlockValue(){
- assertNull(classUnderTest.tryCatchBlock())
- }
-
- @Test
- fun givenInvalidConversion_whenTryCatchExpressionUsed_thenReturnsCatchBlockValue(){
- assertNull(classUnderTest.tryCatchExpression())
- }
-
- @Test
- fun givenDivisionByZero_whenMultipleCatchUsed_thenReturnsCatchBlockValue(){
- assertNull(classUnderTest.multipleCatchBlock())
- }
-
- @Test
- fun givenDivisionByZero_whenNestedTryCatchUsed_thenReturnsNestedCatchBlockValue(){
- assertNull(classUnderTest.nestedTryCatchBlock())
- }
-
- @Test
- fun givenInvalidConversion_whenTryCatchFinallyUsed_thenReturnsCatchAndFinallyBlock(){
- assertNull(classUnderTest.finallyBlock())
- }
-
- @Test
- fun givenIllegalArgument_whenThrowKeywordUsed_thenThrowsException(){
- assertThrows { classUnderTest.throwKeyword() }
- }
-
- @Test
- fun givenIllegalArgument_whenElvisExpressionUsed_thenThrowsException(){
- assertThrows { classUnderTest.throwExpression() }
- }
-
- @Test
- fun whenAnnotationUsed_thenThrowsException(){
- assertThrows { classUnderTest.throwsAnnotation() }
- }
-}
diff --git a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/interoperability/ArrayTest.kt b/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/interoperability/ArrayTest.kt
deleted file mode 100644
index 8e9467f92a..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/interoperability/ArrayTest.kt
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.baeldung.interoperability
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class ArrayTest {
-
- @Test
- fun givenArray_whenValidateArrayType_thenComplete () {
- val ex = ArrayExample()
- val numArray = intArrayOf(1, 2, 3)
-
- assertEquals(ex.sumValues(numArray), 6)
- }
-
- @Test
- fun givenCustomer_whenGetSuperType_thenComplete() {
- val instance = Customer::class
- val supertypes = instance.supertypes
-
- assertEquals(supertypes[0].toString(), "kotlin.Any")
- }
-
- @Test
- fun givenCustomer_whenGetConstructor_thenComplete() {
- val instance = Customer::class.java
- val constructors = instance.constructors
-
- assertEquals(constructors.size, 1)
- assertEquals(constructors[0].name, "com.baeldung.interoperability.Customer")
- }
-
- fun makeReadFile() {
- val ax = ArrayExample()
- ax.writeList()
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/interoperability/CustomerTest.kt b/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/interoperability/CustomerTest.kt
deleted file mode 100644
index c1b09cd0c1..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/interoperability/CustomerTest.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.baeldung.interoperability
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class CustomerTest {
-
- @Test
- fun givenCustomer_whenNameAndLastNameAreAssigned_thenComplete() {
- val customer = Customer()
-
- // Setter method is being called
- customer.firstName = "Frodo"
- customer.lastName = "Baggins"
-
- // Getter method is being called
- assertEquals(customer.firstName, "Frodo")
- assertEquals(customer.lastName, "Baggins")
- }
-
-}
-
diff --git a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/ItemServiceTest.kt b/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/ItemServiceTest.kt
deleted file mode 100644
index 2ba14a7462..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/ItemServiceTest.kt
+++ /dev/null
@@ -1,21 +0,0 @@
-package com.baeldung.introduction
-
-import org.junit.Test
-import kotlin.test.assertNotNull
-
-class ItemServiceTest {
-
- @Test
- fun givenItemId_whenGetForOptionalItem_shouldMakeActionOnNonNullValue() {
- //given
- val id = "item_id"
- val itemService = ItemService()
-
- //when
- val result = itemService.findItemNameForId(id)
-
- //then
- assertNotNull(result?.let { it -> it.id })
- assertNotNull(result!!.id)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/KotlinJavaInteroperabilityTest.kt b/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/KotlinJavaInteroperabilityTest.kt
deleted file mode 100644
index 5dddf9bfc9..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/KotlinJavaInteroperabilityTest.kt
+++ /dev/null
@@ -1,20 +0,0 @@
-package com.baeldung.introduction
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-
-class KotlinJavaInteroperabilityTest {
-
- @Test
- fun givenLowercaseString_whenExecuteMethodFromJavaStringUtils_shouldReturnStringUppercase() {
- //given
- val name = "tom"
-
- //whene
- val res = StringUtils.toUpperCase(name)
-
- //then
- assertEquals(res, "TOM")
- }
-}
diff --git a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/LambdaTest.kt b/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/LambdaTest.kt
deleted file mode 100644
index 5e5166074e..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/LambdaTest.kt
+++ /dev/null
@@ -1,20 +0,0 @@
-package com.baeldung.introduction
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-
-class LambdaTest {
-
- @Test
- fun givenListOfNumber_whenDoingOperationsUsingLambda_shouldReturnProperResult() {
- //given
- val listOfNumbers = listOf(1, 2, 3)
-
- //when
- val sum = listOfNumbers.reduce { a, b -> a + b }
-
- //then
- assertEquals(6, sum)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/ListExtensionTest.kt b/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/ListExtensionTest.kt
deleted file mode 100644
index 38f244297b..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/introduction/ListExtensionTest.kt
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.baeldung.introduction
-
-import org.junit.Test
-import kotlin.test.assertTrue
-
-class ListExtensionTest {
-
- @Test
- fun givenList_whenExecuteExtensionFunctionOnList_shouldReturnRandomElementOfList() {
- //given
- val elements = listOf("a", "b", "c")
-
- //when
- val result = ListExtension().getRandomElementOfList(elements)
-
- //then
- assertTrue(elements.contains(result))
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/nullassertion/NotNullAssertionUnitTest.kt b/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/nullassertion/NotNullAssertionUnitTest.kt
deleted file mode 100644
index 434f177927..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/nullassertion/NotNullAssertionUnitTest.kt
+++ /dev/null
@@ -1,20 +0,0 @@
-package com.baeldung.nullassertion
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class NotNullAssertionUnitTest {
-
- @Test
- fun givenNullableValue_WhenNotNull_ShouldExtractTheValue() {
- val answer: String? = "42"
-
- assertEquals(42, answer!!.toInt())
- }
-
- @Test(expected = KotlinNullPointerException::class)
- fun givenNullableValue_WhenIsNull_ThenShouldThrow() {
- val noAnswer: String? = null
- noAnswer!!
- }
-}
diff --git a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/random/RandomNumberTest.kt b/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/random/RandomNumberTest.kt
deleted file mode 100644
index 2956a35f8a..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/random/RandomNumberTest.kt
+++ /dev/null
@@ -1,55 +0,0 @@
-
-import org.junit.jupiter.api.Test
-import java.util.concurrent.ThreadLocalRandom
-import kotlin.test.assertTrue
-
-class RandomNumberTest {
-
- @Test
- fun whenRandomNumberWithJavaUtilMath_thenResultIsBetween0And1() {
- val randomNumber = Math.random()
- assertTrue { randomNumber >=0 }
- assertTrue { randomNumber <= 1 }
- }
-
- @Test
- fun whenRandomNumberWithJavaThreadLocalRandom_thenResultsInDefaultRanges() {
- val randomDouble = ThreadLocalRandom.current().nextDouble()
- val randomInteger = ThreadLocalRandom.current().nextInt()
- val randomLong = ThreadLocalRandom.current().nextLong()
- assertTrue { randomDouble >= 0 }
- assertTrue { randomDouble <= 1 }
- assertTrue { randomInteger >= Integer.MIN_VALUE }
- assertTrue { randomInteger <= Integer.MAX_VALUE }
- assertTrue { randomLong >= Long.MIN_VALUE }
- assertTrue { randomLong <= Long.MAX_VALUE }
- }
-
- @Test
- fun whenRandomNumberWithKotlinJSMath_thenResultIsBetween0And1() {
- val randomDouble = Math.random()
- assertTrue { randomDouble >=0 }
- assertTrue { randomDouble <= 1 }
- }
-
- @Test
- fun whenRandomNumberWithKotlinNumberRange_thenResultInGivenRange() {
- val randomInteger = (1..12).shuffled().first()
- assertTrue { randomInteger >= 1 }
- assertTrue { randomInteger <= 12 }
- }
-
- @Test
- fun whenRandomNumberWithJavaThreadLocalRandom_thenResultsInGivenRanges() {
- val randomDouble = ThreadLocalRandom.current().nextDouble(1.0, 10.0)
- val randomInteger = ThreadLocalRandom.current().nextInt(1, 10)
- val randomLong = ThreadLocalRandom.current().nextLong(1, 10)
- assertTrue { randomDouble >= 1 }
- assertTrue { randomDouble <= 10 }
- assertTrue { randomInteger >= 1 }
- assertTrue { randomInteger <= 10 }
- assertTrue { randomLong >= 1 }
- assertTrue { randomLong <= 10 }
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/sequences/SequencesTest.kt b/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/sequences/SequencesTest.kt
deleted file mode 100644
index a41e213c44..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/sequences/SequencesTest.kt
+++ /dev/null
@@ -1,54 +0,0 @@
-package com.baeldung.sequeces
-
-import org.junit.Test
-import kotlin.test.assertEquals
-import java.time.Instant
-
-class SequencesTest {
-
- @Test
- fun shouldBuildSequenceWhenUsingFromElements() {
- val seqOfElements = sequenceOf("first" ,"second", "third")
- .toList()
- assertEquals(3, seqOfElements.count())
- }
-
- @Test
- fun shouldBuildSequenceWhenUsingFromFunction() {
- val seqFromFunction = generateSequence(Instant.now()) {it.plusSeconds(1)}
- .take(3)
- .toList()
- assertEquals(3, seqFromFunction.count())
- }
-
- @Test
- fun shouldBuildSequenceWhenUsingFromChunks() {
- val seqFromChunks = sequence {
- yield(1)
- yieldAll((2..5).toList())
- }.toList()
- assertEquals(5, seqFromChunks.count())
- }
-
- @Test
- fun shouldBuildSequenceWhenUsingFromCollection() {
- val seqFromIterable = (1..10)
- .asSequence()
- .toList()
- assertEquals(10, seqFromIterable.count())
- }
-
- @Test
- fun shouldShowNoCountDiffWhenUsingWithAndWithoutSequence() {
- val withSequence = (1..10).asSequence()
- .filter{it % 2 == 1}
- .map { it * 2 }
- .toList()
- val withoutSequence = (1..10)
- .filter{it % 2 == 1}
- .map { it * 2 }
- .toList()
- assertEquals(withSequence.count(), withoutSequence.count())
- }
-
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/ternary/TernaryOperatorTest.kt b/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/ternary/TernaryOperatorTest.kt
deleted file mode 100644
index 347290de72..0000000000
--- a/core-kotlin-modules/core-kotlin/src/test/kotlin/com/baeldung/ternary/TernaryOperatorTest.kt
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.baeldung.ternary
-
-import org.junit.Test
-import kotlin.test.assertEquals
-
-class TernaryOperatorTest {
-
- @Test
- fun `using If`() {
- val a = true
- val result = if (a) "yes" else "no"
- assertEquals("yes", result)
- }
-
- @Test
- fun `using When`() {
- val a = true
- val result = when(a) {
- true -> "yes"
- false -> "no"
- }
- assertEquals("yes", result)
- }
-
- @Test
- fun `using elvis`() {
- val a: String? = null
- val result = a ?: "Default"
-
- assertEquals("Default", result)
- }
-}
\ No newline at end of file
diff --git a/core-kotlin-modules/pom.xml b/core-kotlin-modules/pom.xml
deleted file mode 100644
index 67520a7dee..0000000000
--- a/core-kotlin-modules/pom.xml
+++ /dev/null
@@ -1,70 +0,0 @@
-
-
- 4.0.0
- com.baeldung.core-kotlin-modules
- core-kotlin-modules
- core-kotlin-modules
- pom
-
-
- com.baeldung
- parent-kotlin
- 1.0.0-SNAPSHOT
- ../parent-kotlin
-
-
-
- core-kotlin
- core-kotlin-advanced
- core-kotlin-annotations
- core-kotlin-collections
- core-kotlin-collections-2
- core-kotlin-concurrency
- core-kotlin-date-time
- core-kotlin-design-patterns
- core-kotlin-io
- core-kotlin-lang
- core-kotlin-lang-2
- core-kotlin-lang-oop
- core-kotlin-lang-oop-2
- core-kotlin-strings
- core-kotlin-testing
-
-
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-plugin
- ${kotlin.version}
-
-
- compile
- compile
-
- compile
-
-
-
- test-compile
- test-compile
-
- test-compile
-
-
-
-
- 1.8
-
-
-
-
-
-
- 1.3.30
-
-
-
diff --git a/core-scala/README.md b/core-scala/README.md
deleted file mode 100644
index 72b583c22b..0000000000
--- a/core-scala/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-### Relevant Articles:
-
-- [Pattern Matching in Scala](https://www.baeldung.com/scala/pattern-matching)
diff --git a/core-scala/pom.xml b/core-scala/pom.xml
deleted file mode 100644
index 8277b0f856..0000000000
--- a/core-scala/pom.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-
-
- 4.0.0
- core-scala
- 1.0-SNAPSHOT
- core-scala
- jar
-
-
- com.baeldung
- parent-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.scala-lang
- scala-library
- ${scala.version}
-
-
-
-
- src/main/scala
- src/test/scala
-
-
- net.alchim31.maven
- scala-maven-plugin
- ${scala.plugin.version}
-
-
-
- compile
- testCompile
-
-
-
- -dependencyfile
- ${project.build.directory}/.scala_dependencies
-
-
-
-
-
-
-
-
-
- 2.12.7
- 3.3.2
-
-
-
diff --git a/discord4j/.gitignore b/discord4j/.gitignore
new file mode 100644
index 0000000000..7ed0d6b679
--- /dev/null
+++ b/discord4j/.gitignore
@@ -0,0 +1,32 @@
+target/
+!.mvn/wrapper/maven-wrapper.jar
+!**/src/main/**/target/
+!**/src/test/**/target/
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
+*.iml
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+build/
+!**/src/main/**/build/
+!**/src/test/**/build/
+
+### VS Code ###
+.vscode/
diff --git a/discord4j/README.md b/discord4j/README.md
new file mode 100644
index 0000000000..58a9924666
--- /dev/null
+++ b/discord4j/README.md
@@ -0,0 +1,7 @@
+## DISCORD4J
+
+This module contains articles about Discord4J
+
+### Relevant Articles:
+
+- [Creating a Discord Bot with Discord4J + Spring Boot](https://www.baeldung.com/spring-discord4j-bot)
\ No newline at end of file
diff --git a/discord4j/pom.xml b/discord4j/pom.xml
new file mode 100644
index 0000000000..664692f60a
--- /dev/null
+++ b/discord4j/pom.xml
@@ -0,0 +1,71 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.3.5.RELEASE
+
+
+ com.baeldung
+ discord4j-bot
+ 0.0.1-SNAPSHOT
+ discord4j-bot
+ Demo Discord bot using Discord4J + Spring Boot
+
+
+ 1.8
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter
+
+
+ org.springframework.boot
+ spring-boot-starter-webflux
+
+
+ org.springframework.boot
+ spring-boot-starter-actuator
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+ org.junit.vintage
+ junit-vintage-engine
+
+
+
+
+
+ com.discord4j
+ discord4j-core
+ 3.1.1
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+
+ 1.8
+ 1.8
+
+
+
+
+
+
diff --git a/discord4j/src/main/java/com/baeldung/discordbot/BotConfiguration.java b/discord4j/src/main/java/com/baeldung/discordbot/BotConfiguration.java
new file mode 100644
index 0000000000..901308605b
--- /dev/null
+++ b/discord4j/src/main/java/com/baeldung/discordbot/BotConfiguration.java
@@ -0,0 +1,46 @@
+package com.baeldung.discordbot;
+
+import com.baeldung.discordbot.events.EventListener;
+import discord4j.core.DiscordClientBuilder;
+import discord4j.core.GatewayDiscordClient;
+import discord4j.core.event.domain.Event;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+
+import java.util.List;
+
+@Configuration
+public class BotConfiguration {
+
+ private static final Logger log = LoggerFactory.getLogger( BotConfiguration.class );
+
+ @Value("${token}")
+ private String token;
+
+ @Bean
+ public GatewayDiscordClient gatewayDiscordClient(List> eventListeners) {
+ GatewayDiscordClient client = null;
+
+ try {
+ client = DiscordClientBuilder.create(token)
+ .build()
+ .login()
+ .block();
+
+ for(EventListener listener : eventListeners) {
+ client.on(listener.getEventType())
+ .flatMap(listener::execute)
+ .onErrorResume(listener::handleError)
+ .subscribe();
+ }
+ }
+ catch ( Exception exception ) {
+ log.error( "Be sure to use a valid bot token!", exception );
+ }
+
+ return client;
+ }
+}
diff --git a/discord4j/src/main/java/com/baeldung/discordbot/DiscordBotApplication.java b/discord4j/src/main/java/com/baeldung/discordbot/DiscordBotApplication.java
new file mode 100644
index 0000000000..069a36635c
--- /dev/null
+++ b/discord4j/src/main/java/com/baeldung/discordbot/DiscordBotApplication.java
@@ -0,0 +1,12 @@
+package com.baeldung.discordbot;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class DiscordBotApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(DiscordBotApplication.class, args);
+ }
+}
diff --git a/discord4j/src/main/java/com/baeldung/discordbot/events/EventListener.java b/discord4j/src/main/java/com/baeldung/discordbot/events/EventListener.java
new file mode 100644
index 0000000000..ca4c79de0d
--- /dev/null
+++ b/discord4j/src/main/java/com/baeldung/discordbot/events/EventListener.java
@@ -0,0 +1,19 @@
+package com.baeldung.discordbot.events;
+
+import discord4j.core.event.domain.Event;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import reactor.core.publisher.Mono;
+
+public interface EventListener {
+
+ Logger LOG = LoggerFactory.getLogger(EventListener.class);
+
+ Class getEventType();
+ Mono execute(T event);
+
+ default Mono handleError(Throwable error) {
+ LOG.error("Unable to process " + getEventType().getSimpleName(), error);
+ return Mono.empty();
+ }
+}
diff --git a/discord4j/src/main/java/com/baeldung/discordbot/events/MessageCreateListener.java b/discord4j/src/main/java/com/baeldung/discordbot/events/MessageCreateListener.java
new file mode 100644
index 0000000000..f545489804
--- /dev/null
+++ b/discord4j/src/main/java/com/baeldung/discordbot/events/MessageCreateListener.java
@@ -0,0 +1,19 @@
+package com.baeldung.discordbot.events;
+
+import discord4j.core.event.domain.message.MessageCreateEvent;
+import org.springframework.stereotype.Service;
+import reactor.core.publisher.Mono;
+
+@Service
+public class MessageCreateListener extends MessageListener implements EventListener {
+
+ @Override
+ public Class getEventType() {
+ return MessageCreateEvent.class;
+ }
+
+ @Override
+ public Mono execute(MessageCreateEvent event) {
+ return processCommand(event.getMessage());
+ }
+}
diff --git a/discord4j/src/main/java/com/baeldung/discordbot/events/MessageListener.java b/discord4j/src/main/java/com/baeldung/discordbot/events/MessageListener.java
new file mode 100644
index 0000000000..e1f48468be
--- /dev/null
+++ b/discord4j/src/main/java/com/baeldung/discordbot/events/MessageListener.java
@@ -0,0 +1,19 @@
+package com.baeldung.discordbot.events;
+
+import discord4j.core.object.entity.Message;
+import reactor.core.publisher.Mono;
+
+public abstract class MessageListener {
+
+ public Mono processCommand(Message eventMessage) {
+ return Mono.just(eventMessage)
+ .filter(message -> message.getAuthor().map(user -> !user.isBot()).orElse(false))
+ .filter(message -> message.getContent().equalsIgnoreCase("!todo"))
+ .flatMap(Message::getChannel)
+ .flatMap(channel -> channel.createMessage("Things to do today:\n" +
+ " - write a bot\n" +
+ " - eat lunch\n" +
+ " - play a game"))
+ .then();
+ }
+}
diff --git a/discord4j/src/main/java/com/baeldung/discordbot/events/MessageUpdateListener.java b/discord4j/src/main/java/com/baeldung/discordbot/events/MessageUpdateListener.java
new file mode 100644
index 0000000000..62802d4903
--- /dev/null
+++ b/discord4j/src/main/java/com/baeldung/discordbot/events/MessageUpdateListener.java
@@ -0,0 +1,22 @@
+package com.baeldung.discordbot.events;
+
+import discord4j.core.event.domain.message.MessageUpdateEvent;
+import org.springframework.stereotype.Service;
+import reactor.core.publisher.Mono;
+
+@Service
+public class MessageUpdateListener extends MessageListener implements EventListener {
+
+ @Override
+ public Class getEventType() {
+ return MessageUpdateEvent.class;
+ }
+
+ @Override
+ public Mono execute(MessageUpdateEvent event) {
+ return Mono.just(event)
+ .filter(MessageUpdateEvent::isContentChanged)
+ .flatMap(MessageUpdateEvent::getMessage)
+ .flatMap(super::processCommand);
+ }
+}
diff --git a/discord4j/src/main/resources/application.yml b/discord4j/src/main/resources/application.yml
new file mode 100644
index 0000000000..e2079e33b4
--- /dev/null
+++ b/discord4j/src/main/resources/application.yml
@@ -0,0 +1 @@
+token: 'our-token-here'
diff --git a/discord4j/src/test/java/com/baeldung/discordbot/DiscordBotLiveTest.java b/discord4j/src/test/java/com/baeldung/discordbot/DiscordBotLiveTest.java
new file mode 100644
index 0000000000..8d9a285748
--- /dev/null
+++ b/discord4j/src/test/java/com/baeldung/discordbot/DiscordBotLiveTest.java
@@ -0,0 +1,12 @@
+package com.baeldung.discordbot;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+public class DiscordBotLiveTest {
+
+ @Test
+ public void contextTest() {
+ }
+}
diff --git a/docker/README.md b/docker/README.md
index 7948b3d663..ce7fe261c2 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -1,3 +1,5 @@
## Relevant Articles:
- [Introduction to Docker Compose](https://www.baeldung.com/docker-compose)
+- [Reusing Docker Layers with Spring Boot](https://www.baeldung.com/docker-layers-spring-boot)
+- [Running Spring Boot with PostgreSQL in Docker Compose](https://www.baeldung.com/spring-boot-postgresql-docker)
diff --git a/docker/docker-internal-dto/pom.xml b/docker/docker-internal-dto/pom.xml
new file mode 100644
index 0000000000..55cef257fe
--- /dev/null
+++ b/docker/docker-internal-dto/pom.xml
@@ -0,0 +1,15 @@
+
+
+ 4.0.0
+
+ com.baeldung.docker
+ docker
+ 0.0.1
+
+
+ docker-internal-dto
+ docker-internal-dto
+
+
diff --git a/docker/docker-internal-dto/src/main/java/com/baeldung/docker/dto/VariableDto.java b/docker/docker-internal-dto/src/main/java/com/baeldung/docker/dto/VariableDto.java
new file mode 100644
index 0000000000..2de3b734ea
--- /dev/null
+++ b/docker/docker-internal-dto/src/main/java/com/baeldung/docker/dto/VariableDto.java
@@ -0,0 +1,14 @@
+package com.baeldung.docker.dto;
+
+public class VariableDto {
+
+ private final String value;
+
+ public VariableDto(String value) {
+ this.value = value;
+ }
+
+ public String getValue() {
+ return value;
+ }
+}
diff --git a/docker/docker-spring-boot-postgres/.gitignore b/docker/docker-spring-boot-postgres/.gitignore
new file mode 100644
index 0000000000..802324853e
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/.gitignore
@@ -0,0 +1,38 @@
+HELP.md
+target/
+!.mvn/wrapper/maven-wrapper.jar
+!**/src/main/**/target/
+!**/src/test/**/target/
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
+*.iml
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+build/
+!**/src/main/**/build/
+!**/src/test/**/build/
+
+### VS Code ###
+.vscode/
+
+
+### Custom exclusions ###
+
+*.jar
diff --git a/docker/docker-spring-boot-postgres/.mvn/wrapper/MavenWrapperDownloader.java b/docker/docker-spring-boot-postgres/.mvn/wrapper/MavenWrapperDownloader.java
new file mode 100644
index 0000000000..e76d1f3241
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/.mvn/wrapper/MavenWrapperDownloader.java
@@ -0,0 +1,117 @@
+/*
+ * Copyright 2007-present the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import java.net.*;
+import java.io.*;
+import java.nio.channels.*;
+import java.util.Properties;
+
+public class MavenWrapperDownloader {
+
+ private static final String WRAPPER_VERSION = "0.5.6";
+ /**
+ * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
+ */
+ private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
+ + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
+
+ /**
+ * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
+ * use instead of the default one.
+ */
+ private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
+ ".mvn/wrapper/maven-wrapper.properties";
+
+ /**
+ * Path where the maven-wrapper.jar will be saved to.
+ */
+ private static final String MAVEN_WRAPPER_JAR_PATH =
+ ".mvn/wrapper/maven-wrapper.jar";
+
+ /**
+ * Name of the property which should be used to override the default download url for the wrapper.
+ */
+ private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
+
+ public static void main(String args[]) {
+ System.out.println("- Downloader started");
+ File baseDirectory = new File(args[0]);
+ System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
+
+ // If the maven-wrapper.properties exists, read it and check if it contains a custom
+ // wrapperUrl parameter.
+ File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
+ String url = DEFAULT_DOWNLOAD_URL;
+ if(mavenWrapperPropertyFile.exists()) {
+ FileInputStream mavenWrapperPropertyFileInputStream = null;
+ try {
+ mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
+ Properties mavenWrapperProperties = new Properties();
+ mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
+ url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
+ } catch (IOException e) {
+ System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
+ } finally {
+ try {
+ if(mavenWrapperPropertyFileInputStream != null) {
+ mavenWrapperPropertyFileInputStream.close();
+ }
+ } catch (IOException e) {
+ // Ignore ...
+ }
+ }
+ }
+ System.out.println("- Downloading from: " + url);
+
+ File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
+ if(!outputFile.getParentFile().exists()) {
+ if(!outputFile.getParentFile().mkdirs()) {
+ System.out.println(
+ "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
+ }
+ }
+ System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
+ try {
+ downloadFileFromURL(url, outputFile);
+ System.out.println("Done");
+ System.exit(0);
+ } catch (Throwable e) {
+ System.out.println("- Error downloading");
+ e.printStackTrace();
+ System.exit(1);
+ }
+ }
+
+ private static void downloadFileFromURL(String urlString, File destination) throws Exception {
+ if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
+ String username = System.getenv("MVNW_USERNAME");
+ char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
+ Authenticator.setDefault(new Authenticator() {
+ @Override
+ protected PasswordAuthentication getPasswordAuthentication() {
+ return new PasswordAuthentication(username, password);
+ }
+ });
+ }
+ URL website = new URL(urlString);
+ ReadableByteChannel rbc;
+ rbc = Channels.newChannel(website.openStream());
+ FileOutputStream fos = new FileOutputStream(destination);
+ fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
+ fos.close();
+ rbc.close();
+ }
+
+}
diff --git a/docker/docker-spring-boot-postgres/.mvn/wrapper/maven-wrapper.jar b/docker/docker-spring-boot-postgres/.mvn/wrapper/maven-wrapper.jar
new file mode 100644
index 0000000000..2cc7d4a55c
Binary files /dev/null and b/docker/docker-spring-boot-postgres/.mvn/wrapper/maven-wrapper.jar differ
diff --git a/docker/docker-spring-boot-postgres/.mvn/wrapper/maven-wrapper.properties b/docker/docker-spring-boot-postgres/.mvn/wrapper/maven-wrapper.properties
new file mode 100644
index 0000000000..642d572ce9
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/.mvn/wrapper/maven-wrapper.properties
@@ -0,0 +1,2 @@
+distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip
+wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar
diff --git a/docker/docker-spring-boot-postgres/mvnw b/docker/docker-spring-boot-postgres/mvnw
new file mode 100755
index 0000000000..a16b5431b4
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/mvnw
@@ -0,0 +1,310 @@
+#!/bin/sh
+# ----------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# ----------------------------------------------------------------------------
+
+# ----------------------------------------------------------------------------
+# Maven Start Up Batch script
+#
+# Required ENV vars:
+# ------------------
+# JAVA_HOME - location of a JDK home dir
+#
+# Optional ENV vars
+# -----------------
+# M2_HOME - location of maven2's installed home dir
+# MAVEN_OPTS - parameters passed to the Java VM when running Maven
+# e.g. to debug Maven itself, use
+# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+# ----------------------------------------------------------------------------
+
+if [ -z "$MAVEN_SKIP_RC" ] ; then
+
+ if [ -f /etc/mavenrc ] ; then
+ . /etc/mavenrc
+ fi
+
+ if [ -f "$HOME/.mavenrc" ] ; then
+ . "$HOME/.mavenrc"
+ fi
+
+fi
+
+# OS specific support. $var _must_ be set to either true or false.
+cygwin=false;
+darwin=false;
+mingw=false
+case "`uname`" in
+ CYGWIN*) cygwin=true ;;
+ MINGW*) mingw=true;;
+ Darwin*) darwin=true
+ # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
+ # See https://developer.apple.com/library/mac/qa/qa1170/_index.html
+ if [ -z "$JAVA_HOME" ]; then
+ if [ -x "/usr/libexec/java_home" ]; then
+ export JAVA_HOME="`/usr/libexec/java_home`"
+ else
+ export JAVA_HOME="/Library/Java/Home"
+ fi
+ fi
+ ;;
+esac
+
+if [ -z "$JAVA_HOME" ] ; then
+ if [ -r /etc/gentoo-release ] ; then
+ JAVA_HOME=`java-config --jre-home`
+ fi
+fi
+
+if [ -z "$M2_HOME" ] ; then
+ ## resolve links - $0 may be a link to maven's home
+ PRG="$0"
+
+ # need this for relative symlinks
+ while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG="`dirname "$PRG"`/$link"
+ fi
+ done
+
+ saveddir=`pwd`
+
+ M2_HOME=`dirname "$PRG"`/..
+
+ # make it fully qualified
+ M2_HOME=`cd "$M2_HOME" && pwd`
+
+ cd "$saveddir"
+ # echo Using m2 at $M2_HOME
+fi
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched
+if $cygwin ; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME=`cygpath --unix "$M2_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
+fi
+
+# For Mingw, ensure paths are in UNIX format before anything is touched
+if $mingw ; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME="`(cd "$M2_HOME"; pwd)`"
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
+fi
+
+if [ -z "$JAVA_HOME" ]; then
+ javaExecutable="`which javac`"
+ if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
+ # readlink(1) is not available as standard on Solaris 10.
+ readLink=`which readlink`
+ if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
+ if $darwin ; then
+ javaHome="`dirname \"$javaExecutable\"`"
+ javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
+ else
+ javaExecutable="`readlink -f \"$javaExecutable\"`"
+ fi
+ javaHome="`dirname \"$javaExecutable\"`"
+ javaHome=`expr "$javaHome" : '\(.*\)/bin'`
+ JAVA_HOME="$javaHome"
+ export JAVA_HOME
+ fi
+ fi
+fi
+
+if [ -z "$JAVACMD" ] ; then
+ if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ else
+ JAVACMD="`which java`"
+ fi
+fi
+
+if [ ! -x "$JAVACMD" ] ; then
+ echo "Error: JAVA_HOME is not defined correctly." >&2
+ echo " We cannot execute $JAVACMD" >&2
+ exit 1
+fi
+
+if [ -z "$JAVA_HOME" ] ; then
+ echo "Warning: JAVA_HOME environment variable is not set."
+fi
+
+CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
+
+# traverses directory structure from process work directory to filesystem root
+# first directory with .mvn subdirectory is considered project base directory
+find_maven_basedir() {
+
+ if [ -z "$1" ]
+ then
+ echo "Path not specified to find_maven_basedir"
+ return 1
+ fi
+
+ basedir="$1"
+ wdir="$1"
+ while [ "$wdir" != '/' ] ; do
+ if [ -d "$wdir"/.mvn ] ; then
+ basedir=$wdir
+ break
+ fi
+ # workaround for JBEAP-8937 (on Solaris 10/Sparc)
+ if [ -d "${wdir}" ]; then
+ wdir=`cd "$wdir/.."; pwd`
+ fi
+ # end of workaround
+ done
+ echo "${basedir}"
+}
+
+# concatenates all lines of a file
+concat_lines() {
+ if [ -f "$1" ]; then
+ echo "$(tr -s '\n' ' ' < "$1")"
+ fi
+}
+
+BASE_DIR=`find_maven_basedir "$(pwd)"`
+if [ -z "$BASE_DIR" ]; then
+ exit 1;
+fi
+
+##########################################################################################
+# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+# This allows using the maven wrapper in projects that prohibit checking in binary data.
+##########################################################################################
+if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found .mvn/wrapper/maven-wrapper.jar"
+ fi
+else
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
+ fi
+ if [ -n "$MVNW_REPOURL" ]; then
+ jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+ else
+ jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+ fi
+ while IFS="=" read key value; do
+ case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
+ esac
+ done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Downloading from: $jarUrl"
+ fi
+ wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
+ if $cygwin; then
+ wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"`
+ fi
+
+ if command -v wget > /dev/null; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found wget ... using wget"
+ fi
+ if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
+ wget "$jarUrl" -O "$wrapperJarPath"
+ else
+ wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath"
+ fi
+ elif command -v curl > /dev/null; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found curl ... using curl"
+ fi
+ if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
+ curl -o "$wrapperJarPath" "$jarUrl" -f
+ else
+ curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f
+ fi
+
+ else
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Falling back to using Java to download"
+ fi
+ javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
+ # For Cygwin, switch paths to Windows format before running javac
+ if $cygwin; then
+ javaClass=`cygpath --path --windows "$javaClass"`
+ fi
+ if [ -e "$javaClass" ]; then
+ if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo " - Compiling MavenWrapperDownloader.java ..."
+ fi
+ # Compiling the Java class
+ ("$JAVA_HOME/bin/javac" "$javaClass")
+ fi
+ if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+ # Running the downloader
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo " - Running MavenWrapperDownloader.java ..."
+ fi
+ ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
+ fi
+ fi
+ fi
+fi
+##########################################################################################
+# End of extension
+##########################################################################################
+
+export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
+if [ "$MVNW_VERBOSE" = true ]; then
+ echo $MAVEN_PROJECTBASEDIR
+fi
+MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME=`cygpath --path --windows "$M2_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
+ [ -n "$MAVEN_PROJECTBASEDIR" ] &&
+ MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
+fi
+
+# Provide a "standardized" way to retrieve the CLI args that will
+# work with both Windows and non-Windows executions.
+MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
+export MAVEN_CMD_LINE_ARGS
+
+WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+exec "$JAVACMD" \
+ $MAVEN_OPTS \
+ -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
+ "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
+ ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
diff --git a/docker/docker-spring-boot-postgres/mvnw.cmd b/docker/docker-spring-boot-postgres/mvnw.cmd
new file mode 100644
index 0000000000..c8d43372c9
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/mvnw.cmd
@@ -0,0 +1,182 @@
+@REM ----------------------------------------------------------------------------
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements. See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership. The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License. You may obtain a copy of the License at
+@REM
+@REM https://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied. See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+@REM ----------------------------------------------------------------------------
+
+@REM ----------------------------------------------------------------------------
+@REM Maven Start Up Batch script
+@REM
+@REM Required ENV vars:
+@REM JAVA_HOME - location of a JDK home dir
+@REM
+@REM Optional ENV vars
+@REM M2_HOME - location of maven2's installed home dir
+@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
+@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending
+@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
+@REM e.g. to debug Maven itself, use
+@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+@REM ----------------------------------------------------------------------------
+
+@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
+@echo off
+@REM set title of command window
+title %0
+@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
+@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
+
+@REM set %HOME% to equivalent of $HOME
+if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
+
+@REM Execute a user defined script before this one
+if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
+@REM check for pre script, once with legacy .bat ending and once with .cmd ending
+if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
+if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
+:skipRcPre
+
+@setlocal
+
+set ERROR_CODE=0
+
+@REM To isolate internal variables from possible post scripts, we use another setlocal
+@setlocal
+
+@REM ==== START VALIDATION ====
+if not "%JAVA_HOME%" == "" goto OkJHome
+
+echo.
+echo Error: JAVA_HOME not found in your environment. >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+:OkJHome
+if exist "%JAVA_HOME%\bin\java.exe" goto init
+
+echo.
+echo Error: JAVA_HOME is set to an invalid directory. >&2
+echo JAVA_HOME = "%JAVA_HOME%" >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+@REM ==== END VALIDATION ====
+
+:init
+
+@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
+@REM Fallback to current working directory if not found.
+
+set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
+IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
+
+set EXEC_DIR=%CD%
+set WDIR=%EXEC_DIR%
+:findBaseDir
+IF EXIST "%WDIR%"\.mvn goto baseDirFound
+cd ..
+IF "%WDIR%"=="%CD%" goto baseDirNotFound
+set WDIR=%CD%
+goto findBaseDir
+
+:baseDirFound
+set MAVEN_PROJECTBASEDIR=%WDIR%
+cd "%EXEC_DIR%"
+goto endDetectBaseDir
+
+:baseDirNotFound
+set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
+cd "%EXEC_DIR%"
+
+:endDetectBaseDir
+
+IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
+
+@setlocal EnableExtensions EnableDelayedExpansion
+for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
+@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
+
+:endReadAdditionalConfig
+
+SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
+set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
+set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+
+FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
+ IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
+)
+
+@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
+if exist %WRAPPER_JAR% (
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Found %WRAPPER_JAR%
+ )
+) else (
+ if not "%MVNW_REPOURL%" == "" (
+ SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar"
+ )
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Couldn't find %WRAPPER_JAR%, downloading it ...
+ echo Downloading from: %DOWNLOAD_URL%
+ )
+
+ powershell -Command "&{"^
+ "$webclient = new-object System.Net.WebClient;"^
+ "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
+ "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
+ "}"^
+ "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
+ "}"
+ if "%MVNW_VERBOSE%" == "true" (
+ echo Finished downloading %WRAPPER_JAR%
+ )
+)
+@REM End of extension
+
+@REM Provide a "standardized" way to retrieve the CLI args that will
+@REM work with both Windows and non-Windows executions.
+set MAVEN_CMD_LINE_ARGS=%*
+
+%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
+if ERRORLEVEL 1 goto error
+goto end
+
+:error
+set ERROR_CODE=1
+
+:end
+@endlocal & set ERROR_CODE=%ERROR_CODE%
+
+if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
+@REM check for post script, once with legacy .bat ending and once with .cmd ending
+if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
+if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
+:skipRcPost
+
+@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
+if "%MAVEN_BATCH_PAUSE%" == "on" pause
+
+if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
+
+exit /B %ERROR_CODE%
diff --git a/docker/docker-spring-boot-postgres/pom.xml b/docker/docker-spring-boot-postgres/pom.xml
new file mode 100644
index 0000000000..0b359138f6
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/pom.xml
@@ -0,0 +1,48 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.4.0
+
+
+ com.baeldung.docker
+ docker-spring-boot-postgres
+ 0.0.1-SNAPSHOT
+ docker-spring-boot-postgres
+ Demo project showing Spring Boot, PostgreSQL, and Docker
+
+
+ 11
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-data-jpa
+
+
+
+ org.postgresql
+ postgresql
+ runtime
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
\ No newline at end of file
diff --git a/docker/docker-spring-boot-postgres/src/main/docker/Dockerfile b/docker/docker-spring-boot-postgres/src/main/docker/Dockerfile
new file mode 100644
index 0000000000..a642876cbe
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/src/main/docker/Dockerfile
@@ -0,0 +1,7 @@
+FROM adoptopenjdk:11-jre-hotspot
+MAINTAINER baeldung.com
+
+ARG JAR_FILE=*.jar
+COPY ${JAR_FILE} application.jar
+
+ENTRYPOINT ["java", "-jar", "application.jar"]
\ No newline at end of file
diff --git a/docker/docker-spring-boot-postgres/src/main/docker/docker-compose.yml b/docker/docker-spring-boot-postgres/src/main/docker/docker-compose.yml
new file mode 100644
index 0000000000..93aa634205
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/src/main/docker/docker-compose.yml
@@ -0,0 +1,22 @@
+version: '2'
+
+services:
+ app:
+ image: 'docker-spring-boot-postgres:latest'
+ build:
+ context: .
+ container_name: app
+ depends_on:
+ - db
+ environment:
+ - SPRING_DATASOURCE_URL=jdbc:postgresql://db:5432/compose-postgres
+ - SPRING_DATASOURCE_USERNAME=compose-postgres
+ - SPRING_DATASOURCE_PASSWORD=compose-postgres
+ - SPRING_JPA_HIBERNATE_DDL_AUTO=update
+
+ db:
+ image: 'postgres:13.1-alpine'
+ container_name: db
+ environment:
+ - POSTGRES_USER=compose-postgres
+ - POSTGRES_PASSWORD=compose-postgres
\ No newline at end of file
diff --git a/docker/docker-spring-boot-postgres/src/main/java/com/baeldung/docker/Customer.java b/docker/docker-spring-boot-postgres/src/main/java/com/baeldung/docker/Customer.java
new file mode 100644
index 0000000000..9369a84287
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/src/main/java/com/baeldung/docker/Customer.java
@@ -0,0 +1,57 @@
+package com.baeldung.docker;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.Id;
+import javax.persistence.Table;
+
+@Entity
+@Table(name = "customer")
+public class Customer {
+
+ @Id
+ @GeneratedValue
+ private long id;
+
+
+ @Column(name = "first_name", nullable = false)
+ private String firstName;
+
+ @Column(name = "last_name", nullable = false)
+ private String lastName;
+
+ public Customer() {
+ super();
+ }
+
+ public long getId() {
+ return id;
+ }
+
+ public void setId(long id) {
+ this.id = id;
+ }
+
+ public String getFirstName() {
+ return firstName;
+ }
+
+ public void setFirstName(String firstName) {
+ this.firstName = firstName;
+ }
+
+ public String getLastName() {
+ return lastName;
+ }
+
+ public void setLastName(String lastName) {
+ this.lastName = lastName;
+ }
+
+ @Override
+ public String toString() {
+ return "Customer [id=" + id + ", firstName=" + firstName + ", lastName=" + lastName + "]";
+ }
+
+}
diff --git a/docker/docker-spring-boot-postgres/src/main/java/com/baeldung/docker/CustomerRepository.java b/docker/docker-spring-boot-postgres/src/main/java/com/baeldung/docker/CustomerRepository.java
new file mode 100644
index 0000000000..c959e00c89
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/src/main/java/com/baeldung/docker/CustomerRepository.java
@@ -0,0 +1,7 @@
+package com.baeldung.docker;
+
+import org.springframework.data.jpa.repository.JpaRepository;
+
+public interface CustomerRepository extends JpaRepository {
+
+}
diff --git a/docker/docker-spring-boot-postgres/src/main/java/com/baeldung/docker/DemoApplication.java b/docker/docker-spring-boot-postgres/src/main/java/com/baeldung/docker/DemoApplication.java
new file mode 100644
index 0000000000..05377c6893
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/src/main/java/com/baeldung/docker/DemoApplication.java
@@ -0,0 +1,43 @@
+package com.baeldung.docker;
+
+import java.util.List;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.context.event.ApplicationReadyEvent;
+import org.springframework.context.event.EventListener;
+
+@SpringBootApplication
+public class DemoApplication {
+ private final Logger logger = LoggerFactory.getLogger(DemoApplication.class);
+
+ @Autowired private CustomerRepository repository;
+
+ public static void main(String[] args) {
+ SpringApplication.run(DemoApplication.class, args);
+ }
+
+ @EventListener(ApplicationReadyEvent.class)
+ public void runAfterStartup() {
+ queryAllCustomers();
+ createCustomer();
+ queryAllCustomers();
+ }
+
+ private void createCustomer() {
+ Customer newCustomer = new Customer();
+ newCustomer.setFirstName("John");
+ newCustomer.setLastName("Doe");
+ logger.info("Saving new customer...");
+ this.repository.save(newCustomer);
+ }
+
+ private void queryAllCustomers() {
+ List allCustomers = this.repository.findAll();
+ logger.info("Number of customers: " + allCustomers.size());
+ }
+
+}
diff --git a/spring-security-modules/spring-security-kotlin-dsl/src/main/resources/application.properties b/docker/docker-spring-boot-postgres/src/main/resources/application.properties
similarity index 100%
rename from spring-security-modules/spring-security-kotlin-dsl/src/main/resources/application.properties
rename to docker/docker-spring-boot-postgres/src/main/resources/application.properties
diff --git a/docker/docker-spring-boot-postgres/src/test/java/com/baeldung/docker/DemoApplicationTests.java b/docker/docker-spring-boot-postgres/src/test/java/com/baeldung/docker/DemoApplicationTests.java
new file mode 100644
index 0000000000..87bd1dd6ba
--- /dev/null
+++ b/docker/docker-spring-boot-postgres/src/test/java/com/baeldung/docker/DemoApplicationTests.java
@@ -0,0 +1,13 @@
+package com.baeldung.docker;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class DemoApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/docker/docker-spring-boot/pom.xml b/docker/docker-spring-boot/pom.xml
index b9c80bc43a..74bd1561cf 100644
--- a/docker/docker-spring-boot/pom.xml
+++ b/docker/docker-spring-boot/pom.xml
@@ -1,21 +1,21 @@
-
+
4.0.0
- org.springframework.boot
- spring-boot-starter-parent
- 2.3.1.RELEASE
-
+ com.baeldung.docker
+ docker
+ 0.0.1
- com.baeldung.docker
- spring-boot-docker
- 0.0.1-SNAPSHOT
- spring-boot-docker
+
+ docker-spring-boot
+
+ docker-spring-boot
Demo project showing Spring Boot and Docker
- 8
+ 11
@@ -24,6 +24,12 @@
spring-boot-starter-web
+
+ com.baeldung.docker
+ docker-internal-dto
+ 0.0.1
+
+
org.springframework.boot
spring-boot-starter-test
@@ -45,6 +51,7 @@
true
+ ${project.basedir}/src/layers.xml
diff --git a/docker/docker-spring-boot/src/layers.xml b/docker/docker-spring-boot/src/layers.xml
new file mode 100644
index 0000000000..61c9bd9c39
--- /dev/null
+++ b/docker/docker-spring-boot/src/layers.xml
@@ -0,0 +1,27 @@
+
+
+
+ org/springframework/boot/loader/**
+
+
+
+
+
+ *:*:*SNAPSHOT
+
+
+ com.baeldung.docker:*:*
+
+
+
+
+ dependencies
+ spring-boot-loader
+ internal-dependencies
+ snapshot-dependencies
+ application
+
+
\ No newline at end of file
diff --git a/docker/docker-spring-boot/src/main/docker/Dockerfile b/docker/docker-spring-boot/src/main/docker/Dockerfile
index fa147dd69b..c0fd9c9cdb 100644
--- a/docker/docker-spring-boot/src/main/docker/Dockerfile
+++ b/docker/docker-spring-boot/src/main/docker/Dockerfile
@@ -9,7 +9,8 @@ RUN java -Djarmode=layertools -jar application.jar extract
FROM adoptopenjdk:11-jre-hotspot
COPY --from=builder dependencies/ ./
-COPY --from=builder snapshot-dependencies/ ./
COPY --from=builder spring-boot-loader/ ./
+COPY --from=builder internal-dependencies/ ./
+COPY --from=builder snapshot-dependencies/ ./
COPY --from=builder application/ ./
ENTRYPOINT ["java", "org.springframework.boot.loader.JarLauncher"]
\ No newline at end of file
diff --git a/docker/docker-spring-boot/src/main/java/com/baeldung/docker/spring/DemoApplication.java b/docker/docker-spring-boot/src/main/java/com/baeldung/docker/spring/DemoApplication.java
new file mode 100644
index 0000000000..9210cabbb3
--- /dev/null
+++ b/docker/docker-spring-boot/src/main/java/com/baeldung/docker/spring/DemoApplication.java
@@ -0,0 +1,13 @@
+package com.baeldung.docker.spring;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class DemoApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(DemoApplication.class, args);
+ }
+
+}
diff --git a/docker/docker-spring-boot/src/main/java/com/baeldung/docker/HelloController.java b/docker/docker-spring-boot/src/main/java/com/baeldung/docker/spring/HelloController.java
similarity index 90%
rename from docker/docker-spring-boot/src/main/java/com/baeldung/docker/HelloController.java
rename to docker/docker-spring-boot/src/main/java/com/baeldung/docker/spring/HelloController.java
index b463bb557f..430a158011 100644
--- a/docker/docker-spring-boot/src/main/java/com/baeldung/docker/HelloController.java
+++ b/docker/docker-spring-boot/src/main/java/com/baeldung/docker/spring/HelloController.java
@@ -1,4 +1,4 @@
-package com.baeldung.docker;
+package com.baeldung.docker.spring;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
diff --git a/docker/pom.xml b/docker/pom.xml
new file mode 100644
index 0000000000..f05c303938
--- /dev/null
+++ b/docker/pom.xml
@@ -0,0 +1,30 @@
+
+
+ 4.0.0
+
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.3.1.RELEASE
+
+
+
+ com.baeldung.docker
+ docker
+ 0.0.1
+ docker
+ Demo project showing Spring Boot and Docker
+ pom
+
+
+ 11
+
+
+
+ docker-internal-dto
+ docker-spring-boot
+
+
+
diff --git a/gradle/README.md b/gradle/README.md
index 84a8508e2c..cf002a7114 100644
--- a/gradle/README.md
+++ b/gradle/README.md
@@ -8,3 +8,4 @@ This module contains articles about Gradle
- [Creating a Fat Jar in Gradle](https://www.baeldung.com/gradle-fat-jar)
- [A Custom Task in Gradle](https://www.baeldung.com/gradle-custom-task)
- [Using JUnit 5 with Gradle](https://www.baeldung.com/junit-5-gradle)
+- [Dependency Management in Gradle](https://www.baeldung.com/gradle-dependency-management)
diff --git a/gradle/gradle-dependency-management/build.gradle b/gradle/gradle-dependency-management/build.gradle
new file mode 100644
index 0000000000..88ed84f4b1
--- /dev/null
+++ b/gradle/gradle-dependency-management/build.gradle
@@ -0,0 +1,32 @@
+plugins {
+ id 'java'
+ id 'org.springframework.boot' version '2.3.4.RELEASE'
+}
+
+group = 'com.gradle'
+version = '1.0.0'
+sourceCompatibility = '14'
+
+repositories {
+ mavenCentral()
+}
+
+dependencies {
+ implementation 'org.springframework.boot:spring-boot-starter:2.3.4.RELEASE'
+
+ testImplementation 'org.springframework.boot:spring-boot-starter-test:2.3.4.RELEASE'
+
+ compileOnly 'org.projectlombok:lombok:1.18.14'
+
+ testCompileOnly 'org.projectlombok:lombok:1.18.14'
+
+ runtimeOnly files('libs/sampleOne.jar', 'libs/sampleTwo.jar')
+
+ runtimeOnly fileTree('libs') { include '*.jar' }
+
+// implementation gradleApi()
+}
+
+test {
+ useJUnitPlatform()
+}
diff --git a/kotlin-js/gradle/wrapper/gradle-wrapper.properties b/gradle/gradle-dependency-management/gradle/wrapper/gradle-wrapper.properties
similarity index 92%
rename from kotlin-js/gradle/wrapper/gradle-wrapper.properties
rename to gradle/gradle-dependency-management/gradle/wrapper/gradle-wrapper.properties
index 933b6473ce..12d38de6a4 100644
--- a/kotlin-js/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/gradle-dependency-management/gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-bin.zip
diff --git a/gradle/gradle-dependency-management/settings.gradle b/gradle/gradle-dependency-management/settings.gradle
new file mode 100644
index 0000000000..09bfe08af7
--- /dev/null
+++ b/gradle/gradle-dependency-management/settings.gradle
@@ -0,0 +1 @@
+rootProject.name = 'dependencymanagement'
diff --git a/gradle/gradle-dependency-management/src/main/java/com/gradle/dependencymanagement/DependencyManagementApplication.java b/gradle/gradle-dependency-management/src/main/java/com/gradle/dependencymanagement/DependencyManagementApplication.java
new file mode 100644
index 0000000000..7e589c0477
--- /dev/null
+++ b/gradle/gradle-dependency-management/src/main/java/com/gradle/dependencymanagement/DependencyManagementApplication.java
@@ -0,0 +1,13 @@
+package com.gradle.dependencymanagement;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class DependencyManagementApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(DependencyManagementApplication.class, args);
+ }
+
+}
diff --git a/spring-rest-testing/src/testFile b/gradle/gradle-dependency-management/src/main/resources/application.properties
similarity index 100%
rename from spring-rest-testing/src/testFile
rename to gradle/gradle-dependency-management/src/main/resources/application.properties
diff --git a/gradle/gradle-dependency-management/src/test/java/com/gradle/dependencymanagement/DependencyManagementApplicationUnitTests.java b/gradle/gradle-dependency-management/src/test/java/com/gradle/dependencymanagement/DependencyManagementApplicationUnitTests.java
new file mode 100644
index 0000000000..85634a052e
--- /dev/null
+++ b/gradle/gradle-dependency-management/src/test/java/com/gradle/dependencymanagement/DependencyManagementApplicationUnitTests.java
@@ -0,0 +1,13 @@
+package com.gradle.dependencymanagement;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+class DependencyManagementApplicationTests {
+
+ @Test
+ void contextLoads() {
+ }
+
+}
diff --git a/guest/core-kotlin/README.md b/guest/core-kotlin/README.md
new file mode 100644
index 0000000000..c211773f27
--- /dev/null
+++ b/guest/core-kotlin/README.md
@@ -0,0 +1,3 @@
+### Relevant Articles:
+
+- [Kotlin vs Java](https://www.baeldung.com/kotlin/kotlin-vs-java)
diff --git a/httpclient-2/src/test/java/com/baeldung/httpclient/cookies/HttpClientGettingCookieValueUnitTest.java b/httpclient-2/src/test/java/com/baeldung/httpclient/cookies/HttpClientGettingCookieValueUnitTest.java
index c3b0ef3c25..404acb3098 100644
--- a/httpclient-2/src/test/java/com/baeldung/httpclient/cookies/HttpClientGettingCookieValueUnitTest.java
+++ b/httpclient-2/src/test/java/com/baeldung/httpclient/cookies/HttpClientGettingCookieValueUnitTest.java
@@ -4,12 +4,13 @@ import org.apache.http.client.CookieStore;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.protocol.HttpClientContext;
+import org.apache.http.cookie.ClientCookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.impl.client.BasicCookieStore;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.impl.cookie.BasicClientCookie;
-import org.junit.Test;
+import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -47,6 +48,7 @@ public class HttpClientGettingCookieValueUnitTest {
BasicCookieStore cookieStore = new BasicCookieStore();
BasicClientCookie cookie = new BasicClientCookie("custom_cookie", "test_value");
cookie.setDomain("baeldung.com");
+ cookie.setAttribute(ClientCookie.DOMAIN_ATTR, "true");
cookie.setPath("/");
cookieStore.addCookie(cookie);
return cookieStore;
diff --git a/httpclient-simple/README.md b/httpclient-simple/README.md
index 098d5f278e..93fb22ac1e 100644
--- a/httpclient-simple/README.md
+++ b/httpclient-simple/README.md
@@ -11,6 +11,7 @@ This module contains articles about HTTPClient that are part of the HTTPClient E
- [Custom HTTP Header with the HttpClient](https://www.baeldung.com/httpclient-custom-http-header)
- [HttpClient Basic Authentication](https://www.baeldung.com/httpclient-4-basic-authentication)
- [Posting with HttpClient](https://www.baeldung.com/httpclient-post-http-request)
+- [Adding Parameters to HttpClient Requests](https://www.baeldung.com/java-httpclient-parameters)
### Running the Tests
diff --git a/httpclient-simple/pom.xml b/httpclient-simple/pom.xml
index 4b97070307..019f1af856 100644
--- a/httpclient-simple/pom.xml
+++ b/httpclient-simple/pom.xml
@@ -302,7 +302,7 @@
2.5.1
4.4.11
- 4.5.8
+ 4.5.8
1.6.1
diff --git a/httpclient-simple/src/test/java/com/baeldung/httpclient/HttpClientParamsLiveTest.java b/httpclient-simple/src/test/java/com/baeldung/httpclient/HttpClientParamsLiveTest.java
new file mode 100644
index 0000000000..f3ea9be089
--- /dev/null
+++ b/httpclient-simple/src/test/java/com/baeldung/httpclient/HttpClientParamsLiveTest.java
@@ -0,0 +1,111 @@
+package com.baeldung.httpclient;
+
+import static org.hamcrest.Matchers.equalTo;
+import static org.junit.Assert.assertThat;
+
+import java.io.IOException;
+import java.net.URI;
+import java.net.URISyntaxException;
+import java.nio.charset.StandardCharsets;
+import java.util.ArrayList;
+import java.util.List;
+
+import org.apache.http.NameValuePair;
+import org.apache.http.client.ClientProtocolException;
+import org.apache.http.client.entity.UrlEncodedFormEntity;
+import org.apache.http.client.methods.CloseableHttpResponse;
+import org.apache.http.client.methods.HttpGet;
+import org.apache.http.client.methods.HttpPost;
+import org.apache.http.client.methods.HttpRequestBase;
+import org.apache.http.client.utils.URIBuilder;
+import org.apache.http.impl.client.CloseableHttpClient;
+import org.apache.http.impl.client.HttpClientBuilder;
+import org.apache.http.message.BasicNameValuePair;
+import org.junit.Before;
+import org.junit.Test;
+
+public class HttpClientParamsLiveTest {
+
+ private CloseableHttpClient client;
+
+ private CloseableHttpResponse response;
+
+ private List nameValuePairs;
+
+ @Before
+ public void setUp() {
+ client = HttpClientBuilder.create()
+ .build();
+ nameValuePairs = new ArrayList();
+ NameValuePair param1NameValuePair = new BasicNameValuePair("param1", "value1");
+ NameValuePair param2NameValuePair = new BasicNameValuePair("param2", "value2");
+ nameValuePairs.add(param1NameValuePair);
+ nameValuePairs.add(param2NameValuePair);
+ }
+
+ @Test
+ public void givenStringNameValuePairParams_whenGetRequest_thenResponseOk() throws URISyntaxException, ClientProtocolException, IOException {
+ HttpGet httpGet = new HttpGet("https://postman-echo.com/get");
+ URI uri = new URIBuilder(httpGet.getURI()).addParameter("param1", "value1")
+ .addParameter("param2", "value2")
+ .build();
+ ((HttpRequestBase) httpGet).setURI(uri);
+ response = client.execute(httpGet);
+
+ assertThat(response.getStatusLine()
+ .getStatusCode(), equalTo(200));
+ client.close();
+ }
+
+ @Test
+ public void givenStringNameValuePairParams_whenPostRequest_thenResponseOk() throws URISyntaxException, ClientProtocolException, IOException {
+ HttpPost httpPost = new HttpPost("https://postman-echo.com/post");
+ URI uri = new URIBuilder(httpPost.getURI()).addParameter("param1", "value1")
+ .addParameter("param2", "value2")
+ .build();
+ ((HttpRequestBase) httpPost).setURI(uri);
+ response = client.execute(httpPost);
+
+ assertThat(response.getStatusLine()
+ .getStatusCode(), equalTo(200));
+ client.close();
+ }
+
+ @Test
+ public void givenNameValuePairParams_whenGetRequest_thenResponseOk() throws URISyntaxException, ClientProtocolException, IOException {
+ HttpGet httpGet = new HttpGet("https://postman-echo.com/get");
+ URI uri = new URIBuilder(httpGet.getURI()).addParameters(nameValuePairs)
+ .build();
+ ((HttpRequestBase) httpGet).setURI(uri);
+ response = client.execute(httpGet);
+
+ assertThat(response.getStatusLine()
+ .getStatusCode(), equalTo(200));
+ client.close();
+ }
+
+ @Test
+ public void givenNameValuePairsParams_whenPostRequest_thenResponseOk() throws URISyntaxException, ClientProtocolException, IOException {
+ HttpPost httpPost = new HttpPost("https://postman-echo.com/post");
+ URI uri = new URIBuilder(httpPost.getURI()).addParameters(nameValuePairs)
+ .build();
+ ((HttpRequestBase) httpPost).setURI(uri);
+ response = client.execute(httpPost);
+
+ assertThat(response.getStatusLine()
+ .getStatusCode(), equalTo(200));
+ client.close();
+ }
+
+ @Test
+ public void givenUrlEncodedEntityParams_whenPostRequest_thenResponseOk() throws URISyntaxException, ClientProtocolException, IOException {
+ HttpPost httpPost = new HttpPost("https://postman-echo.com/post");
+ httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs, StandardCharsets.UTF_8));
+ response = client.execute(httpPost);
+
+ assertThat(response.getStatusLine()
+ .getStatusCode(), equalTo(200));
+ client.close();
+ }
+
+}
diff --git a/httpclient-simple/src/test/java/com/baeldung/httpclient/sec/HttpClientCookieLiveTest.java b/httpclient-simple/src/test/java/com/baeldung/httpclient/sec/HttpClientCookieLiveTest.java
index 287b6e996c..75286e5b2e 100644
--- a/httpclient-simple/src/test/java/com/baeldung/httpclient/sec/HttpClientCookieLiveTest.java
+++ b/httpclient-simple/src/test/java/com/baeldung/httpclient/sec/HttpClientCookieLiveTest.java
@@ -1,19 +1,23 @@
package com.baeldung.httpclient.sec;
-import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.protocol.HttpClientContext;
+import org.apache.http.cookie.ClientCookie;
import org.apache.http.impl.client.BasicCookieStore;
import org.apache.http.impl.client.CloseableHttpClient;
+import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.impl.cookie.BasicClientCookie;
import org.apache.http.protocol.BasicHttpContext;
import org.apache.http.protocol.HttpContext;
import com.baeldung.httpclient.ResponseUtil;
+
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
import java.io.IOException;
@@ -25,6 +29,8 @@ public class HttpClientCookieLiveTest {
private CloseableHttpClient instance;
private CloseableHttpResponse response;
+
+ private static Logger log = LoggerFactory.getLogger(HttpClientCookieLiveTest.class);
@Before
public final void before() {
@@ -54,11 +60,15 @@ public class HttpClientCookieLiveTest {
final BasicCookieStore cookieStore = new BasicCookieStore();
final BasicClientCookie cookie = new BasicClientCookie("JSESSIONID", "1234");
cookie.setDomain(".github.com");
+ cookie.setAttribute(ClientCookie.DOMAIN_ATTR, "true");
+
cookie.setPath("/");
cookieStore.addCookie(cookie);
- final HttpClient client = HttpClientBuilder.create().setDefaultCookieStore(cookieStore).build();
-
- final HttpGet request = new HttpGet("http://www.github.com");
+
+ DefaultHttpClient client = new DefaultHttpClient();
+ client.setCookieStore(cookieStore);
+
+ final HttpGet request = new HttpGet("https://www.github.com");
response = (CloseableHttpResponse) client.execute(request);
@@ -70,6 +80,7 @@ public class HttpClientCookieLiveTest {
final BasicCookieStore cookieStore = new BasicCookieStore();
final BasicClientCookie cookie = new BasicClientCookie("JSESSIONID", "1234");
cookie.setDomain(".github.com");
+ cookie.setAttribute(ClientCookie.DOMAIN_ATTR, "true");
cookie.setPath("/");
cookieStore.addCookie(cookie);
instance = HttpClientBuilder.create().setDefaultCookieStore(cookieStore).build();
diff --git a/jackson-modules/jackson-conversions-2/README.md b/jackson-modules/jackson-conversions-2/README.md
index 71c5578525..9986fe75b5 100644
--- a/jackson-modules/jackson-conversions-2/README.md
+++ b/jackson-modules/jackson-conversions-2/README.md
@@ -9,4 +9,5 @@ This module contains articles about Jackson conversions.
- [Converting JSON to CSV in Java](https://www.baeldung.com/java-converting-json-to-csv)
- [How to Process YAML with Jackson](https://www.baeldung.com/jackson-yaml)
- [Jackson Streaming API](https://www.baeldung.com/jackson-streaming-api)
+- [Jackson: java.util.LinkedHashMap cannot be cast to X](https://www.baeldung.com/jackson-linkedhashmap-cannot-be-cast)
- More articles: [[<-- prev]](../jackson-conversions)
diff --git a/jackson-modules/jackson-conversions-2/src/main/java/com/baeldung/jackson/tocollection/Book.java b/jackson-modules/jackson-conversions-2/src/main/java/com/baeldung/jackson/tocollection/Book.java
new file mode 100644
index 0000000000..e9cb1343e9
--- /dev/null
+++ b/jackson-modules/jackson-conversions-2/src/main/java/com/baeldung/jackson/tocollection/Book.java
@@ -0,0 +1,70 @@
+package com.baeldung.jackson.tocollection;
+
+
+import java.util.Objects;
+
+public class Book {
+ private Integer bookId;
+ private String title;
+ private String author;
+
+ public Book() {}
+
+ public Book(Integer bookId, String title, String author) {
+ this.bookId = bookId;
+ this.title = title;
+ this.author = author;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (!(o instanceof Book)) {
+ return false;
+ }
+
+ Book book = (Book) o;
+
+ if (!Objects.equals(bookId, book.bookId)) {
+ return false;
+ }
+ if (!Objects.equals(title, book.title)) {
+ return false;
+ }
+ return Objects.equals(author, book.author);
+ }
+
+ @Override
+ public int hashCode() {
+ int result = bookId != null ? bookId.hashCode() : 0;
+ result = 31 * result + (title != null ? title.hashCode() : 0);
+ result = 31 * result + (author != null ? author.hashCode() : 0);
+ return result;
+ }
+
+ public Integer getBookId() {
+ return bookId;
+ }
+
+ public void setBookId(Integer bookId) {
+ this.bookId = bookId;
+ }
+
+ public String getTitle() {
+ return title;
+ }
+
+ public void setTitle(String title) {
+ this.title = title;
+ }
+
+ public String getAuthor() {
+ return author;
+ }
+
+ public void setAuthor(String author) {
+ this.author = author;
+ }
+}
diff --git a/jackson-modules/jackson-conversions-2/src/main/java/com/baeldung/jackson/tocollection/JsonToCollectionUtil.java b/jackson-modules/jackson-conversions-2/src/main/java/com/baeldung/jackson/tocollection/JsonToCollectionUtil.java
new file mode 100644
index 0000000000..83e2de2c3b
--- /dev/null
+++ b/jackson-modules/jackson-conversions-2/src/main/java/com/baeldung/jackson/tocollection/JsonToCollectionUtil.java
@@ -0,0 +1,24 @@
+package com.baeldung.jackson.tocollection;
+
+import com.fasterxml.jackson.core.type.TypeReference;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.databind.type.CollectionType;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
+
+public class JsonToCollectionUtil {
+
+ private JsonToCollectionUtil(){}
+
+ public static List jsonArrayToList(String json, Class elementClass) throws IOException {
+ ObjectMapper objectMapper = new ObjectMapper();
+ CollectionType listType = objectMapper.getTypeFactory().constructCollectionType(ArrayList.class, elementClass);
+ return objectMapper.readValue(json, listType);
+ }
+
+ public static List jsonArrayToList2(String json, Class elementClass) throws IOException {
+ return new ObjectMapper().readValue(json, new TypeReference>() {});
+ }
+}
diff --git a/jackson-modules/jackson-conversions-2/src/main/resources/to-java-collection/books.json b/jackson-modules/jackson-conversions-2/src/main/resources/to-java-collection/books.json
new file mode 100644
index 0000000000..6daf426736
--- /dev/null
+++ b/jackson-modules/jackson-conversions-2/src/main/resources/to-java-collection/books.json
@@ -0,0 +1,13 @@
+[ {
+ "bookId" : 1,
+ "title" : "A Song of Ice and Fire",
+ "author" : "George R. R. Martin"
+}, {
+ "bookId" : 2,
+ "title" : "The Hitchhiker's Guide to the Galaxy",
+ "author" : "Douglas Adams"
+}, {
+ "bookId" : 3,
+ "title" : "Hackers And Painters",
+ "author" : "Paul Graham"
+} ]
diff --git a/jackson-modules/jackson-conversions-2/src/main/resources/to-java-collection/books.xml b/jackson-modules/jackson-conversions-2/src/main/resources/to-java-collection/books.xml
new file mode 100644
index 0000000000..b2f951315b
--- /dev/null
+++ b/jackson-modules/jackson-conversions-2/src/main/resources/to-java-collection/books.xml
@@ -0,0 +1,17 @@
+
+ -
+ 1
+ A Song of Ice and Fire
+ George R. R. Martin
+
+ -
+ 2
+ The Hitchhiker's Guide to the Galaxy
+ Douglas Adams
+
+ -
+ 3
+ Hackers And Painters
+ Paul Graham
+
+
diff --git a/jackson-modules/jackson-conversions-2/src/test/java/com/baeldung/jackson/tocollection/DeserializeToJavaCollectionUnitTest.java b/jackson-modules/jackson-conversions-2/src/test/java/com/baeldung/jackson/tocollection/DeserializeToJavaCollectionUnitTest.java
new file mode 100644
index 0000000000..8ddcc2d69a
--- /dev/null
+++ b/jackson-modules/jackson-conversions-2/src/test/java/com/baeldung/jackson/tocollection/DeserializeToJavaCollectionUnitTest.java
@@ -0,0 +1,130 @@
+package com.baeldung.jackson.tocollection;
+
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.core.type.TypeReference;
+import com.fasterxml.jackson.databind.JsonNode;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.databind.type.CollectionType;
+import com.fasterxml.jackson.dataformat.xml.XmlMapper;
+import org.assertj.core.util.Lists;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Scanner;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
+
+public class DeserializeToJavaCollectionUnitTest {
+ private ObjectMapper objectMapper;
+ private XmlMapper xmlMapper;
+ private List expectedBookList;
+
+
+ @BeforeEach
+ void setup() {
+ objectMapper = new ObjectMapper();
+ xmlMapper = new XmlMapper();
+ expectedBookList = Lists.newArrayList(
+ new Book(1, "A Song of Ice and Fire", "George R. R. Martin"),
+ new Book(2, "The Hitchhiker's Guide to the Galaxy", "Douglas Adams"),
+ new Book(3, "Hackers And Painters", "Paul Graham"));
+ }
+
+ private String readFile(String path) {
+ try (Scanner scanner = new Scanner(getClass().getResourceAsStream(path), "UTF-8")) {
+ return scanner.useDelimiter("\\A").next();
+ }
+ }
+
+ /*====================
+ * JSON tests
+ *====================
+ */
+ @Test
+ void givenJsonString_whenDeserializingToList_thenThrowingClassCastException() throws JsonProcessingException {
+ String jsonString = readFile("/to-java-collection/books.json");
+ List bookList = objectMapper.readValue(jsonString, ArrayList.class);
+ assertThat(bookList).size().isEqualTo(3);
+ assertThatExceptionOfType(ClassCastException.class)
+ .isThrownBy(() -> bookList.get(0).getBookId())
+ .withMessageMatching(".*java.util.LinkedHashMap cannot be cast to .*com.baeldung.jackson.tocollection.Book.*");
+ }
+
+ @Test
+ void givenJsonString_whenDeserializingWithTypeReference_thenGetExpectedList() throws JsonProcessingException {
+ String jsonString = readFile("/to-java-collection/books.json");
+ List bookList = objectMapper.readValue(jsonString, new TypeReference>() {});
+ assertThat(bookList.get(0)).isInstanceOf(Book.class);
+ assertThat(bookList).isEqualTo(expectedBookList);
+ }
+
+ @Test
+ void givenJsonString_whenDeserializingWithJavaType_thenGetExpectedList() throws JsonProcessingException {
+ String jsonString = readFile("/to-java-collection/books.json");
+ CollectionType listType = objectMapper.getTypeFactory().constructCollectionType(ArrayList.class, Book.class);
+ List bookList = objectMapper.readValue(jsonString, listType);
+ assertThat(bookList.get(0)).isInstanceOf(Book.class);
+ assertThat(bookList).isEqualTo(expectedBookList);
+ }
+
+ @Test
+ void givenJsonString_whenDeserializingWithConvertValueAndTypeReference_thenGetExpectedList() throws JsonProcessingException {
+ String jsonString = readFile("/to-java-collection/books.json");
+ JsonNode jsonNode = objectMapper.readTree(jsonString);
+ List bookList = objectMapper.convertValue(jsonNode, new TypeReference>() {});
+ assertThat(bookList.get(0)).isInstanceOf(Book.class);
+ assertThat(bookList).isEqualTo(expectedBookList);
+ }
+
+ @Test
+ void givenJsonString_whenDeserializingWithConvertValueAndJavaType_thenGetExpectedList() throws JsonProcessingException {
+ String jsonString = readFile("/to-java-collection/books.json");
+ JsonNode jsonNode = objectMapper.readTree(jsonString);
+ List bookList = objectMapper.convertValue(jsonNode, objectMapper.getTypeFactory().constructCollectionType(ArrayList.class, Book.class));
+ assertThat(bookList.get(0)).isInstanceOf(Book.class);
+ assertThat(bookList).isEqualTo(expectedBookList);
+ }
+
+ /*====================
+ * XML tests
+ *====================
+ */
+ @Test
+ void givenXml_whenDeserializingToList_thenThrowingClassCastException() throws JsonProcessingException {
+ String xml = readFile("/to-java-collection/books.xml");
+ List bookList = xmlMapper.readValue(xml, ArrayList.class);
+ assertThat(bookList).size().isEqualTo(3);
+ assertThatExceptionOfType(ClassCastException.class)
+ .isThrownBy(() -> bookList.get(0).getBookId())
+ .withMessageMatching(".*java.util.LinkedHashMap cannot be cast to .*com.baeldung.jackson.tocollection.Book.*");
+ }
+
+ @Test
+ void givenXml_whenDeserializingWithTypeReference_thenGetExpectedList() throws JsonProcessingException {
+ String xml = readFile("/to-java-collection/books.xml");
+ List bookList = xmlMapper.readValue(xml, new TypeReference>() {});
+ assertThat(bookList.get(0)).isInstanceOf(Book.class);
+ assertThat(bookList).isEqualTo(expectedBookList);
+ }
+
+ @Test
+ void givenXml_whenDeserializingWithConvertValueAndTypeReference_thenGetExpectedList() throws JsonProcessingException {
+ String xml = readFile("/to-java-collection/books.xml");
+ List node = xmlMapper.readValue(xml, List.class);
+ List bookList = xmlMapper.convertValue(node, new TypeReference>() {});
+ assertThat(bookList.get(0)).isInstanceOf(Book.class);
+ assertThat(bookList).isEqualTo(expectedBookList);
+ }
+
+ @Test
+ void givenXml_whenDeserializingWithConvertValueAndJavaType_thenGetExpectedList() throws JsonProcessingException {
+ String xml = readFile("/to-java-collection/books.xml");
+ List node = xmlMapper.readValue(xml, List.class);
+ List bookList = xmlMapper.convertValue(node, objectMapper.getTypeFactory().constructCollectionType(ArrayList.class, Book.class));
+ assertThat(bookList.get(0)).isInstanceOf(Book.class);
+ assertThat(bookList).isEqualTo(expectedBookList);
+ }
+}
diff --git a/jackson-modules/jackson-conversions-2/src/test/java/com/baeldung/jackson/tocollection/JsonToCollectionUtilUnitTest.java b/jackson-modules/jackson-conversions-2/src/test/java/com/baeldung/jackson/tocollection/JsonToCollectionUtilUnitTest.java
new file mode 100644
index 0000000000..a08e48e069
--- /dev/null
+++ b/jackson-modules/jackson-conversions-2/src/test/java/com/baeldung/jackson/tocollection/JsonToCollectionUtilUnitTest.java
@@ -0,0 +1,51 @@
+package com.baeldung.jackson.tocollection;
+
+import org.assertj.core.util.Lists;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+
+import java.io.IOException;
+import java.util.List;
+import java.util.Scanner;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatExceptionOfType;
+
+class JsonToCollectionUtilUnitTest {
+
+ private List expectedBookList;
+
+
+ @BeforeEach
+ void setup() {
+ expectedBookList = Lists.newArrayList(
+ new Book(1, "A Song of Ice and Fire", "George R. R. Martin"),
+ new Book(2, "The Hitchhiker's Guide to the Galaxy", "Douglas Adams"),
+ new Book(3, "Hackers And Painters", "Paul Graham"));
+ }
+
+ private String readFile(String path) {
+ try (Scanner scanner = new Scanner(getClass().getResourceAsStream(path), "UTF-8")) {
+ return scanner.useDelimiter("\\A").next();
+ }
+ }
+
+ @Test
+ void givenJsonString_whenCalljsonArrayToList_thenGetExpectedList() throws IOException {
+ String jsonString = readFile("/to-java-collection/books.json");
+ List bookList = JsonToCollectionUtil.jsonArrayToList(jsonString, Book.class);
+ assertThat(bookList.get(0)).isInstanceOf(Book.class);
+ assertThat(bookList).isEqualTo(expectedBookList);
+ }
+
+ @Test
+ void givenJsonString_whenCalljsonArrayToList2_thenGetException() throws IOException {
+ String jsonString = readFile("/to-java-collection/books.json");
+ List bookList = JsonToCollectionUtil.jsonArrayToList2(jsonString, Book.class);
+ assertThat(bookList).size().isEqualTo(3);
+ assertThatExceptionOfType(ClassCastException.class)
+ .isThrownBy(() -> bookList.get(0).getBookId())
+ .withMessageMatching(".*java.util.LinkedHashMap cannot be cast to .*com.baeldung.jackson.tocollection.Book.*");
+ }
+
+}
diff --git a/jackson-modules/jackson/README.md b/jackson-modules/jackson/README.md
index bcf8c3036f..50e13a5b75 100644
--- a/jackson-modules/jackson/README.md
+++ b/jackson-modules/jackson/README.md
@@ -10,6 +10,5 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
- [Using Optional with Jackson](https://www.baeldung.com/jackson-optional)
- [Compare Two JSON Objects with Jackson](https://www.baeldung.com/jackson-compare-two-json-objects)
- [Jackson vs Gson](https://www.baeldung.com/jackson-vs-gson)
-- [Jackson JSON Tutorial](https://www.baeldung.com/jackson)
- [Inheritance with Jackson](https://www.baeldung.com/jackson-inheritance)
- [Working with Tree Model Nodes in Jackson](https://www.baeldung.com/jackson-json-node-tree-model)
diff --git a/java-collections-maps-3/README.md b/java-collections-maps-3/README.md
index 4da8547824..39ac8575fa 100644
--- a/java-collections-maps-3/README.md
+++ b/java-collections-maps-3/README.md
@@ -1,3 +1,4 @@
### Relevant Articles:
- [Java Map With Case-Insensitive Keys](https://www.baeldung.com/java-map-with-case-insensitive-keys)
+- [Using a Byte Array as Map Key in Java](https://www.baeldung.com/java-map-key-byte-array)
diff --git a/java-collections-maps-3/src/main/java/com/baeldung/map/bytearrays/BytesKey.java b/java-collections-maps-3/src/main/java/com/baeldung/map/bytearrays/BytesKey.java
new file mode 100644
index 0000000000..4bdcfe4b06
--- /dev/null
+++ b/java-collections-maps-3/src/main/java/com/baeldung/map/bytearrays/BytesKey.java
@@ -0,0 +1,28 @@
+package com.baeldung.map.bytearrays;
+
+import java.util.Arrays;
+
+public final class BytesKey {
+ private final byte[] array;
+
+ public BytesKey(byte[] array) {
+ this.array = array;
+ }
+
+ public byte[] getArray() {
+ return array.clone();
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) return true;
+ if (o == null || getClass() != o.getClass()) return false;
+ BytesKey bytesKey = (BytesKey) o;
+ return Arrays.equals(array, bytesKey.array);
+ }
+
+ @Override
+ public int hashCode() {
+ return Arrays.hashCode(array);
+ }
+}
diff --git a/java-collections-maps-3/src/test/java/com/baeldung/map/bytearrays/ByteArrayKeyUnitTest.java b/java-collections-maps-3/src/test/java/com/baeldung/map/bytearrays/ByteArrayKeyUnitTest.java
new file mode 100644
index 0000000000..8f5b89e11e
--- /dev/null
+++ b/java-collections-maps-3/src/test/java/com/baeldung/map/bytearrays/ByteArrayKeyUnitTest.java
@@ -0,0 +1,104 @@
+package com.baeldung.map.bytearrays;
+
+import com.google.common.collect.ImmutableList;
+import org.junit.jupiter.api.Test;
+
+import java.util.Base64;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+class ByteArrayKeyUnitTest {
+ @Test
+ void givenPrimitiveByteArrayKey_whenRetrievingFromMap_shouldRetrieveDifferentObjects() {
+ // given
+ byte[] key1 = {1, 2, 3};
+ byte[] key2 = {1, 2, 3};
+ String value1 = "value1";
+ String value2 = "value2";
+ Map map = new HashMap<>();
+ map.put(key1, value1);
+ map.put(key2, value2);
+
+ // when
+ String retrievedValue1 = map.get(key1);
+ String retrievedValue2 = map.get(key2);
+ String retrievedValue3 = map.get(new byte[]{1, 2, 3});
+
+ // then
+ assertThat(retrievedValue1).isEqualTo(value1);
+ assertThat(retrievedValue2).isEqualTo(value2);
+ assertThat(retrievedValue3).isNull();
+ }
+
+ @Test
+ void givenEncodedStringKey_whenRetrievingFromMap_shouldRetrieveLastPutObject() {
+ // given
+ String key1 = Base64.getEncoder().encodeToString(new byte[]{1, 2, 3});
+ String key2 = Base64.getEncoder().encodeToString(new byte[]{1, 2, 3});
+ String value1 = "value1";
+ String value2 = "value2";
+ Map map = new HashMap<>();
+ map.put(key1, value1);
+ map.put(key2, value2);
+
+ // when
+ String retrievedValue1 = map.get(key1);
+ String retrievedValue2 = map.get(key2);
+
+ // then
+ assertThat(key1).isEqualTo(key2);
+ assertThat(retrievedValue1).isEqualTo(value2);
+ assertThat(retrievedValue2).isEqualTo(value2);
+ assertThat(retrievedValue1).isEqualTo(retrievedValue2);
+ }
+
+ @Test
+ void givenByteListKey_whenRetrievingFromMap_shouldRetrieveLastPutObject() {
+ // given
+ List key1 = ImmutableList.of((byte)1, (byte)2, (byte)3);
+ List key2 = ImmutableList.of((byte)1, (byte)2, (byte)3);
+ String value1 = "value1";
+ String value2 = "value2";
+ Map, String> map = new HashMap<>();
+ map.put(key1, value1);
+ map.put(key2, value2);
+
+ // when
+ String retrievedValue1 = map.get(key1);
+ String retrievedValue2 = map.get(key2);
+
+ // then
+ assertThat(key1).isEqualTo(key2);
+ assertThat(retrievedValue1).isEqualTo(value2);
+ assertThat(retrievedValue2).isEqualTo(value2);
+ assertThat(retrievedValue1).isEqualTo(retrievedValue2);
+ }
+
+ @Test
+ void givenCustomWrapperKey_whenRetrievingFromMap_shouldRetrieveLastPutObject() {
+ // given
+ BytesKey key1 = new BytesKey(new byte[]{1, 2, 3});
+ BytesKey key2 = new BytesKey(new byte[]{1, 2, 3});
+ String value1 = "value1";
+ String value2 = "value2";
+ Map map = new HashMap<>();
+ map.put(key1, value1);
+ map.put(key2, value2);
+
+ // when
+ String retrievedValue1 = map.get(key1);
+ String retrievedValue2 = map.get(key2);
+ String retrievedValue3 = map.get(new BytesKey(new byte[]{1, 2, 3}));
+
+ // then
+ assertThat(key1).isEqualTo(key2);
+ assertThat(retrievedValue1).isEqualTo(value2);
+ assertThat(retrievedValue2).isEqualTo(value2);
+ assertThat(retrievedValue1).isEqualTo(retrievedValue2);
+ assertThat(retrievedValue3).isEqualTo(value2);
+
+ }
+}
diff --git a/java-native/README.md b/java-native/README.md
index 2e2047924b..4f85342a38 100644
--- a/java-native/README.md
+++ b/java-native/README.md
@@ -6,3 +6,4 @@ This module contains articles about the Java Native Interface (JNI).
- [Guide to JNI (Java Native Interface)](https://www.baeldung.com/jni)
- [Using JNA to Access Native Dynamic Libraries](https://www.baeldung.com/java-jna-dynamic-libraries)
+- [Check if a Java Program Is Running in 64-Bit or 32-Bit JVM](https://www.baeldung.com/java-detect-jvm-64-or-32-bit)
diff --git a/java-native/src/main/java/com/baeldung/jvmbitversion/JVMBitVersion.java b/java-native/src/main/java/com/baeldung/jvmbitversion/JVMBitVersion.java
new file mode 100644
index 0000000000..63684fec49
--- /dev/null
+++ b/java-native/src/main/java/com/baeldung/jvmbitversion/JVMBitVersion.java
@@ -0,0 +1,24 @@
+package com.baeldung.jvmbitversion;
+
+import com.sun.jna.Platform;
+
+public class JVMBitVersion {
+
+ public String getUsingSystemClass() {
+ return System.getProperty("sun.arch.data.model") + "-bit";
+ }
+
+ public String getUsingNativeClass() {
+ if (com.sun.jna.Native.POINTER_SIZE == 8) {
+ return "64-bit";
+ } else if (com.sun.jna.Native.POINTER_SIZE == 4) {
+ return "32-bit";
+ } else
+ return "unknown";
+ }
+
+ public boolean getUsingPlatformClass() {
+ return (Platform.is64Bit());
+ }
+
+}
diff --git a/java-native/src/test/java/com/baeldung/jvmbitversion/JVMBitVersionUnitTest.java b/java-native/src/test/java/com/baeldung/jvmbitversion/JVMBitVersionUnitTest.java
new file mode 100644
index 0000000000..35357dec77
--- /dev/null
+++ b/java-native/src/test/java/com/baeldung/jvmbitversion/JVMBitVersionUnitTest.java
@@ -0,0 +1,45 @@
+package com.baeldung.jvmbitversion;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+import org.junit.Before;
+import org.junit.Test;
+
+import com.sun.jna.Platform;
+
+public class JVMBitVersionUnitTest {
+
+ private JVMBitVersion jvmVersion;
+
+ @Before
+ public void setup() {
+ jvmVersion = new JVMBitVersion();
+ }
+
+ @Test
+ public void whenUsingSystemClass_thenOutputIsAsExpected() {
+ if ("64".equals(System.getProperty("sun.arch.data.model"))) {
+ assertEquals("64-bit", jvmVersion.getUsingSystemClass());
+ } else if ("32".equals(System.getProperty("sun.arch.data.model"))) {
+ assertEquals("32-bit", jvmVersion.getUsingSystemClass());
+ }
+ }
+
+ @Test
+ public void whenUsingNativeClass_thenResultIsAsExpected() {
+ if (com.sun.jna.Native.POINTER_SIZE == 8) {
+ assertEquals("64-bit", jvmVersion.getUsingNativeClass());
+ } else if (com.sun.jna.Native.POINTER_SIZE == 4) {
+ assertEquals("32-bit", jvmVersion.getUsingNativeClass());
+ }
+ }
+
+ @Test
+ public void whenUsingPlatformClass_thenResultIsAsExpected() {
+ if (Platform.is64Bit() == Boolean.TRUE) {
+ assertEquals(Boolean.TRUE, jvmVersion.getUsingPlatformClass());
+ } else if (com.sun.jna.Native.POINTER_SIZE == 4) {
+ assertEquals(Boolean.FALSE, jvmVersion.getUsingPlatformClass());
+ }
+ }
+}
diff --git a/java-numbers-3/pom.xml b/java-numbers-3/pom.xml
index 495618885a..62225a898f 100644
--- a/java-numbers-3/pom.xml
+++ b/java-numbers-3/pom.xml
@@ -27,7 +27,7 @@
org.apache.commons
commons-lang3
- ${commons.version}
+ ${commons-lang3.version}
test
@@ -51,7 +51,6 @@
2.6.0
0.10.2
- 3.9
3.6.1
diff --git a/java-numbers-4/README.md b/java-numbers-4/README.md
index 344d348733..cdd53692e0 100644
--- a/java-numbers-4/README.md
+++ b/java-numbers-4/README.md
@@ -1,3 +1,5 @@
### Relevant Articles:
- [Probability in Java](https://www.baeldung.com/java-probability)
+- [Understanding the & 0xff Value in Java](https://www.baeldung.com/java-and-0xff)
+- [Determine if an Integer’s Square Root Is an Integer in Java](https://www.baeldung.com/java-find-if-square-root-is-integer)
diff --git a/java-numbers-4/pom.xml b/java-numbers-4/pom.xml
index e1722fb039..f4b0e23bd7 100644
--- a/java-numbers-4/pom.xml
+++ b/java-numbers-4/pom.xml
@@ -22,7 +22,7 @@
org.apache.commons
commons-lang3
- ${commons.version}
+ ${commons-lang3.version}
test
@@ -45,7 +45,6 @@
0.10.2
- 3.9
3.6.1
diff --git a/java-numbers-4/src/main/java/com/baeldung/number_0xff/Number0xff.java b/java-numbers-4/src/main/java/com/baeldung/number_0xff/Number0xff.java
new file mode 100644
index 0000000000..1708afb5a2
--- /dev/null
+++ b/java-numbers-4/src/main/java/com/baeldung/number_0xff/Number0xff.java
@@ -0,0 +1,20 @@
+package com.baeldung.number_0xff;
+
+public class Number0xff {
+
+ public static int getRedColor(int rgba) {
+ return rgba >> 24 & 0xff;
+ }
+
+ public static int getGreenColor(int rgba) {
+ return rgba >> 16 & 0xff;
+ }
+
+ public static int getBlueColor(int rgba) {
+ return rgba >> 8 & 0xff;
+ }
+
+ public static int getAlfa(int rgba) {
+ return rgba & 0xff;
+ }
+}
diff --git a/java-numbers-4/src/main/java/com/baeldung/perfectsquare/PerfectSquareUtil.java b/java-numbers-4/src/main/java/com/baeldung/perfectsquare/PerfectSquareUtil.java
new file mode 100644
index 0000000000..61093ba816
--- /dev/null
+++ b/java-numbers-4/src/main/java/com/baeldung/perfectsquare/PerfectSquareUtil.java
@@ -0,0 +1,49 @@
+package com.baeldung.perfectsquare;
+
+public class PerfectSquareUtil {
+
+ public static boolean isPerfectSquareByUsingSqrt(long n) {
+ if (n <= 0)
+ return false;
+ double perfectSquare = Math.sqrt(n);
+ long tst = (long)(perfectSquare + 0.5);
+ return tst*tst == n;
+ }
+
+ public static boolean isPerfectSquareByUsingBinarySearch(long low, long high, long number) {
+ long check = (low + high) / 2L;
+ if (high < low)
+ return false;
+ if (number == check * check) {
+ return true;
+ } else if (number < check * check) {
+ high = check - 1L;
+ return isPerfectSquareByUsingBinarySearch(low, high, number);
+ } else {
+ low = check + 1L;
+ return isPerfectSquareByUsingBinarySearch(low, high, number);
+ }
+ }
+
+ public static boolean isPerfectSquareByUsingNewtonMethod(long n) {
+ long x1 = n;
+ long x2 = 1L;
+ while (x1 > x2) {
+ x1 = (x1 + x2) / 2L;
+ x2 = n / x1;
+ }
+ return x1 == x2 && n % x1 == 0L;
+ }
+
+ public static boolean isPerfectSquareWithOptimization(long n) {
+ if (n < 0)
+ return false;
+ switch ((int) (n & 0xF)) {
+ case 0: case 1: case 4: case 9:
+ long tst = (long) Math.sqrt(n);
+ return tst * tst == n;
+ default:
+ return false;
+ }
+ }
+}
diff --git a/java-numbers-4/src/test/java/com/baeldung/number_0xff/Number0xffUnitTest.java b/java-numbers-4/src/test/java/com/baeldung/number_0xff/Number0xffUnitTest.java
new file mode 100644
index 0000000000..b0feaf8628
--- /dev/null
+++ b/java-numbers-4/src/test/java/com/baeldung/number_0xff/Number0xffUnitTest.java
@@ -0,0 +1,49 @@
+package com.baeldung.number_0xff;
+
+import org.junit.Test;
+import static org.junit.Assert.assertEquals;
+
+public class Number0xffUnitTest {
+
+ @Test
+ public void test0xFFAssignedToInteger() {
+ int x = 0xff;
+ int expectedValue = 255;
+ assertEquals(expectedValue, x);
+ }
+
+ @Test
+ public void test0xFFAssignedToByte() {
+ byte y = (byte) 0xff;
+ int expectedValue = -1;
+ assertEquals(expectedValue, y);
+ }
+
+ @Test
+ public void givenColor_whenGetRedColor_thenExtractRedColor() {
+ int rgba = 272214023;
+ int expectedValue = 16;
+ assertEquals(expectedValue, Number0xff.getRedColor(rgba));
+ }
+
+ @Test
+ public void givenColor_whenGetGreenColor_thenExtractGreenColor() {
+ int rgba = 272214023;
+ int expectedValue = 57;
+ assertEquals(expectedValue, Number0xff.getGreenColor(rgba));
+ }
+
+ @Test
+ public void givenColor_whenGetBlueColor_thenExtractBlueColor() {
+ int rgba = 272214023;
+ int expectedValue = 168;
+ assertEquals(expectedValue, Number0xff.getBlueColor(rgba));
+ }
+
+ @Test
+ public void givenColor_whenGetAlfa_thenExtractAlfa() {
+ int rgba = 272214023;
+ int expectedValue = 7;
+ assertEquals(expectedValue, Number0xff.getAlfa(rgba));
+ }
+}
diff --git a/java-numbers-4/src/test/java/com/baeldung/perfectsquare/PerfectSquareUnitTest.java b/java-numbers-4/src/test/java/com/baeldung/perfectsquare/PerfectSquareUnitTest.java
new file mode 100644
index 0000000000..83fce31047
--- /dev/null
+++ b/java-numbers-4/src/test/java/com/baeldung/perfectsquare/PerfectSquareUnitTest.java
@@ -0,0 +1,26 @@
+package com.baeldung.perfectsquare;
+
+import org.junit.Test;
+import static org.junit.Assert.assertEquals;
+
+public class PerfectSquareUnitTest {
+
+ @Test
+ public void testIsNumberPerfectSquare() {
+ long n = 18676209273604L; // 18676209273604 = 43621598 * 43621598
+ boolean expectedValue = true;
+ assertEquals(expectedValue, PerfectSquareUtil.isPerfectSquareByUsingSqrt(n));
+ assertEquals(expectedValue, PerfectSquareUtil.isPerfectSquareByUsingBinarySearch(1, Integer.MAX_VALUE, n));
+ assertEquals(expectedValue, PerfectSquareUtil.isPerfectSquareByUsingNewtonMethod(n));
+ assertEquals(expectedValue, PerfectSquareUtil.isPerfectSquareWithOptimization(n));
+
+ n = 549790047707L; // prime number
+ expectedValue = false;
+ assertEquals(expectedValue, PerfectSquareUtil.isPerfectSquareByUsingSqrt(n));
+ assertEquals(expectedValue, PerfectSquareUtil.isPerfectSquareByUsingBinarySearch(1, Integer.MAX_VALUE, n));
+ assertEquals(expectedValue, PerfectSquareUtil.isPerfectSquareByUsingNewtonMethod(n));
+ assertEquals(expectedValue, PerfectSquareUtil.isPerfectSquareWithOptimization(n));
+ }
+
+
+}
diff --git a/java-numbers/README.md b/java-numbers/README.md
index f4b76c3c98..3007e1746c 100644
--- a/java-numbers/README.md
+++ b/java-numbers/README.md
@@ -3,12 +3,12 @@
This module contains articles about numbers in Java.
### Relevant Articles:
-- [Number of Digits in an Integer in Java](http://www.baeldung.com/java-number-of-digits-in-int)
-- [How to Round a Number to N Decimal Places in Java](http://www.baeldung.com/java-round-decimal-number)
-- [BigDecimal and BigInteger in Java](http://www.baeldung.com/java-bigdecimal-biginteger)
-- [Find All Pairs of Numbers in an Array That Add Up to a Given Sum](http://www.baeldung.com/java-algorithm-number-pairs-sum)
-- [Java – Random Long, Float, Integer and Double](http://www.baeldung.com/java-generate-random-long-float-integer-double)
-- [A Practical Guide to DecimalFormat](http://www.baeldung.com/java-decimalformat)
+- [Number of Digits in an Integer in Java](https://www.baeldung.com/java-number-of-digits-in-int)
+- [How to Round a Number to N Decimal Places in Java](https://www.baeldung.com/java-round-decimal-number)
+- [BigDecimal and BigInteger in Java](https://www.baeldung.com/java-bigdecimal-biginteger)
+- [Find All Pairs of Numbers in an Array That Add Up to a Given Sum in Java](https://www.baeldung.com/java-algorithm-number-pairs-sum)
+- [Java – Random Long, Float, Integer and Double](https://www.baeldung.com/java-generate-random-long-float-integer-double)
+- [A Practical Guide to DecimalFormat](https://www.baeldung.com/java-decimalformat)
- [Calculating the nth Root in Java](https://www.baeldung.com/java-nth-root)
- [Convert Double to String, Removing Decimal Places](https://www.baeldung.com/java-double-to-string)
- [Changing the Order in a Sum Operation Can Produce Different Results?](https://www.baeldung.com/java-floating-point-sum-order)
diff --git a/javafx/src/main/java/com/baeldung/view/SearchController.java b/javafx/src/main/java/com/baeldung/view/SearchController.java
index 430580f8b5..3bde84958c 100644
--- a/javafx/src/main/java/com/baeldung/view/SearchController.java
+++ b/javafx/src/main/java/com/baeldung/view/SearchController.java
@@ -10,6 +10,7 @@ import javafx.scene.Node;
import javafx.scene.control.*;
import javafx.scene.input.KeyCode;
import javafx.scene.layout.VBox;
+import javafx.scene.control.cell.PropertyValueFactory;
import java.util.stream.Collectors;
@@ -22,11 +23,14 @@ public class SearchController {
@FXML
private Button searchButton;
@FXML
- private Pagination pagination;
- @FXML
private Label searchLabel;
-
+ @FXML
+ private TableView tableView;
+ @FXML
+ private VBox dataContainer;
+
private ObservableList masterData = FXCollections.observableArrayList();
+ private ObservableList results = FXCollections.observableList(masterData);
public SearchController() {
masterData.add(new Person(5, "John", true));
@@ -40,7 +44,7 @@ public class SearchController {
// search panel
searchButton.setText("Search");
searchButton.setOnAction(event -> loadData());
- searchButton.setStyle("-fx-background-color: #457ecd; -fx-text-fill: #ffffff;");
+ searchButton.setStyle("-fx-background-color: slateblue; -fx-text-fill: white;");
searchField.setOnKeyPressed(event -> {
if (event.getCode().equals(KeyCode.ENTER)) {
@@ -52,22 +56,23 @@ public class SearchController {
searchLabel.setText(newValue);
});
- pagination.setPageFactory(SearchController.this::createPage);
+ initTable();
+
}
- private Node createPage(Integer pageIndex) {
+ private void initTable() {
+ tableView = new TableView<>(FXCollections.observableList(masterData));
+ tableView.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
- VBox dataContainer = new VBox();
-
- TableView tableView = new TableView<>(masterData);
TableColumn id = new TableColumn("ID");
+ id.setCellValueFactory(new PropertyValueFactory("id"));
TableColumn name = new TableColumn("NAME");
+ name.setCellValueFactory(new PropertyValueFactory("name"));
TableColumn employed = new TableColumn("EMPLOYED");
-
+ employed.setCellValueFactory(new PropertyValueFactory("isEmployed"));
tableView.getColumns().addAll(id, name, employed);
+
dataContainer.getChildren().add(tableView);
-
- return dataContainer;
}
private void loadData() {
@@ -86,11 +91,10 @@ public class SearchController {
};
task.setOnSucceeded(event -> {
- masterData = task.getValue();
- pagination.setVisible(true);
- pagination.setPageCount(masterData.size() / PAGE_ITEMS_COUNT);
+ results = task.getValue();
+ tableView.setItems(FXCollections.observableList(results));
});
-
+
Thread th = new Thread(task);
th.setDaemon(true);
th.start();
diff --git a/javafx/src/main/resources/SearchController.fxml b/javafx/src/main/resources/SearchController.fxml
index 5e83024d03..b1e11a8864 100644
--- a/javafx/src/main/resources/SearchController.fxml
+++ b/javafx/src/main/resources/SearchController.fxml
@@ -20,14 +20,13 @@
-
-
-
-
+
+
+
+
\ No newline at end of file
diff --git a/javax-servlets/pom.xml b/javax-servlets/pom.xml
index 5fc9fef24a..700b823a6e 100644
--- a/javax-servlets/pom.xml
+++ b/javax-servlets/pom.xml
@@ -59,7 +59,6 @@
4.5.3
2.8.2
3.9.1
- 1.3.3
4.0.1
diff --git a/javax-servlets/src/main/java/com/baeldung/servlets/UpdateServlet.java b/javax-servlets/src/main/java/com/baeldung/servlets/UpdateServlet.java
index d0404d0cd4..35c9819a6f 100644
--- a/javax-servlets/src/main/java/com/baeldung/servlets/UpdateServlet.java
+++ b/javax-servlets/src/main/java/com/baeldung/servlets/UpdateServlet.java
@@ -1,6 +1,5 @@
package com.baeldung.servlets;
-
import java.io.IOException;
import javax.servlet.RequestDispatcher;
@@ -18,10 +17,14 @@ public class UpdateServlet extends HttpServlet {
HttpSession session = request.getSession(false);
- session.setAttribute("userName", request.getParameter("userName"));
- session.setAttribute("age", request.getParameter("age"));
+ if (session != null) {
+
+ session.setAttribute("userName", request.getParameter("userName"));
+ session.setAttribute("age", request.getParameter("age"));
+
+ request.setAttribute("sessionData", session);
+ }
- request.setAttribute("sessionData", session);
RequestDispatcher requestDispather = request.getRequestDispatcher("update.jsp");
requestDispather.forward(request, response);
diff --git a/jee-kotlin/README.md b/jee-kotlin/README.md
deleted file mode 100644
index e8975a7f62..0000000000
--- a/jee-kotlin/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-## JEE in Kotlin
-
-This module contains articles about Java EE with Kotlin.
-
-### Relevant Articles:
-- [Jakarta EE Application with Kotlin](https://www.baeldung.com/java-ee-kotlin-app)
diff --git a/jee-kotlin/pom.xml b/jee-kotlin/pom.xml
deleted file mode 100644
index 45d5d8ece1..0000000000
--- a/jee-kotlin/pom.xml
+++ /dev/null
@@ -1,288 +0,0 @@
-
-
- 4.0.0
- jee-kotlin
- jee-kotlin
- war
-
-
- com.baeldung
- parent-modules
- 1.0.0-SNAPSHOT
-
-
-
-
-
- org.jboss.arquillian
- arquillian-bom
- ${arquillian_core.version}
- import
- pom
-
-
- org.jboss.arquillian.extension
- arquillian-drone-bom
- ${arquillian-drone-bom.version}
- pom
- import
-
-
-
-
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
- ${kotlin.version}
-
-
- org.jetbrains.kotlin
- kotlin-test-junit
- ${kotlin.version}
- test
-
-
- junit
- junit
- ${junit.version}
- test
-
-
- javax
- javaee-api
- ${javaee-api.version}
- jar
- provided
-
-
- com.fasterxml.jackson.core
- jackson-annotations
- ${jackson.version}
-
-
- com.fasterxml.jackson.core
- jackson-databind
- ${jackson.version}
- test
-
-
- org.jboss.arquillian.junit
- arquillian-junit-container
- ${arquillian_core.version}
- test
-
-
- org.jboss.shrinkwrap.resolver
- shrinkwrap-resolver-depchain
- ${shrinkwrap.version}
- pom
- test
-
-
- org.jboss.arquillian.extension
- arquillian-rest-client-impl-jersey
- ${arquillian-rest-client.version}
-
-
- org.jetbrains.kotlin
- kotlin-test
- ${kotlin.version}
- test
-
-
-
-
- src/main/kotlin
- src/test/kotlin
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-plugin
- ${kotlin.version}
-
-
- compile
- compile
-
- compile
-
-
-
- test-compile
- test-compile
-
- test-compile
-
-
-
-
- 1.8
-
-
-
-
- org.apache.maven.plugins
- maven-war-plugin
- ${maven-war-plugin.version}
-
- webapp
- kotlin
-
-
-
- org.apache.maven.plugins
- maven-compiler-plugin
-
-
- default-compile
- none
-
-
- default-testCompile
- none
-
-
- compile
- compile
-
- compile
-
-
-
- testCompile
- test-compile
-
- testCompile
-
-
-
-
-
-
-
-
-
- wildfly-managed-arquillian
-
- true
-
-
-
- org.wildfly
- wildfly-arquillian-container-embedded
- ${wildfly.version}
-
-
- org.wildfly
- wildfly-embedded
- ${wildfly.version}
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-dependency-plugin
- ${maven-dependency-plugin.version}
-
-
- unpack
- process-test-classes
-
- unpack
-
-
-
-
- org.wildfly
- wildfly-dist
- ${wildfly.version}
- zip
- false
- target
-
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
- ${maven-surefire-plugin.version}
-
-
- always
-
- org.jboss.logmanager.LogManager
- ${project.basedir}/target/wildfly-${wildfly.version}
- 8756
- ${project.basedir}/target/wildfly-${wildfly.version}/modules
-
- false
-
-
-
-
-
-
- wildfly-remote-arquillian-disabled
-
-
- org.jboss.resteasy
- resteasy-client
- ${resteasy.version}
- test
-
-
- org.jboss.resteasy
- resteasy-jaxb-provider
- ${resteasy.version}
- test
-
-
- org.jboss.resteasy
- resteasy-json-p-provider
- ${resteasy.version}
- test
-
-
- org.wildfly.arquillian
- wildfly-arquillian-container-remote
- ${wildfly.arquillian.version}
- test
-
-
-
-
-
-
- 2.2.0.Final
- UTF-8
- false
- 8.0
-
- 1.3.41
- official
- true
-
- 8.2.1.Final
- 2.21.0
- 3.1.1
-
- 1.4.1.Final
- 2.0.1.Final
- 1.0.0.Alpha4
-
- 1.1.7
-
- 3.8.0.Final
- 3.1.3
-
-
-
diff --git a/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/entity/Student.kt b/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/entity/Student.kt
deleted file mode 100644
index 07f54a39d1..0000000000
--- a/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/entity/Student.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.baeldung.jeekotlin.entity
-
-import com.fasterxml.jackson.annotation.JsonProperty
-import javax.persistence.*
-
-@Entity
-data class Student constructor (
-
- @SequenceGenerator(name = "student_id_seq", sequenceName = "student_id_seq", allocationSize = 1)
- @GeneratedValue(generator = "student_id_seq", strategy = GenerationType.SEQUENCE)
- @Id
- var id: Long?,
-
- var firstName: String,
-
- var lastName: String
-
-) {
- constructor() : this(null, "", "")
-
- constructor(firstName: String, lastName: String) : this(null, firstName, lastName)
-}
diff --git a/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/rest/ApplicationConfig.kt b/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/rest/ApplicationConfig.kt
deleted file mode 100644
index 12511ed320..0000000000
--- a/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/rest/ApplicationConfig.kt
+++ /dev/null
@@ -1,9 +0,0 @@
-package com.baeldung.jeekotlin.rest
-
-import javax.ws.rs.ApplicationPath
-import javax.ws.rs.core.Application
-
-@ApplicationPath("/")
-class ApplicationConfig : Application() {
- override fun getClasses() = setOf(StudentResource::class.java)
-}
diff --git a/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/rest/StudentResource.kt b/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/rest/StudentResource.kt
deleted file mode 100644
index 91fa3ff62b..0000000000
--- a/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/rest/StudentResource.kt
+++ /dev/null
@@ -1,42 +0,0 @@
-package com.baeldung.jeekotlin.rest
-
-import com.baeldung.jeekotlin.entity.Student
-import com.baeldung.jeekotlin.service.StudentService
-import javax.inject.Inject
-import javax.ws.rs.*
-import javax.ws.rs.core.MediaType
-import javax.ws.rs.core.Response
-
-@Path("/student")
-open class StudentResource {
-
- @Inject
- private lateinit var service: StudentService
-
- @POST
- open fun create(student: Student): Response {
- service.create(student)
- return Response.ok().build()
- }
-
- @GET
- @Path("/{id}")
- open fun read(@PathParam("id") id: Long): Response {
- val student = service.read(id)
- return Response.ok(student, MediaType.APPLICATION_JSON_TYPE).build()
- }
-
- @PUT
- open fun update(student: Student): Response {
- service.update(student)
- return Response.ok(student, MediaType.APPLICATION_JSON_TYPE).build()
- }
-
- @DELETE
- @Path("/{id}")
- open fun delete(@PathParam("id") id: Long): Response {
- service.delete(id)
- return Response.noContent().build()
- }
-
-}
\ No newline at end of file
diff --git a/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/service/StudentService.kt b/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/service/StudentService.kt
deleted file mode 100644
index 3977a45e96..0000000000
--- a/jee-kotlin/src/main/kotlin/com/baeldung/jeekotlin/service/StudentService.kt
+++ /dev/null
@@ -1,21 +0,0 @@
-package com.baeldung.jeekotlin.service
-
-import com.baeldung.jeekotlin.entity.Student
-import javax.ejb.Stateless
-import javax.persistence.EntityManager
-import javax.persistence.PersistenceContext
-
-@Stateless
-open class StudentService {
-
- @PersistenceContext
- private lateinit var entityManager: EntityManager
-
- open fun create(student: Student) = entityManager.persist(student)
-
- open fun read(id: Long): Student? = entityManager.find(Student::class.java, id)
-
- open fun update(student: Student) = entityManager.merge(student)
-
- open fun delete(id: Long) = entityManager.remove(read(id))
-}
\ No newline at end of file
diff --git a/jee-kotlin/src/main/resources/META-INF/persistence.xml b/jee-kotlin/src/main/resources/META-INF/persistence.xml
deleted file mode 100644
index 0093792810..0000000000
--- a/jee-kotlin/src/main/resources/META-INF/persistence.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
- org.hibernate.jpa.HibernatePersistenceProvider
-
- java:jboss/datasources/ExampleDS
-
- com.baeldung.jeekotlin.entity.Student
-
-
-
-
-
-
-
-
diff --git a/jee-kotlin/src/main/webapp/WEB-INF/beans.xml b/jee-kotlin/src/main/webapp/WEB-INF/beans.xml
deleted file mode 100644
index ae0f4bf2ee..0000000000
--- a/jee-kotlin/src/main/webapp/WEB-INF/beans.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/jee-kotlin/src/test/kotlin/com/baeldung/jeekotlin/StudentResourceIntegrationTest.java b/jee-kotlin/src/test/kotlin/com/baeldung/jeekotlin/StudentResourceIntegrationTest.java
deleted file mode 100644
index d48a3a96da..0000000000
--- a/jee-kotlin/src/test/kotlin/com/baeldung/jeekotlin/StudentResourceIntegrationTest.java
+++ /dev/null
@@ -1,108 +0,0 @@
-package com.baeldung.jeekotlin;
-
-import com.baeldung.jeekotlin.entity.Student;
-import org.jboss.arquillian.container.test.api.Deployment;
-import org.jboss.arquillian.container.test.api.RunAsClient;
-import org.jboss.arquillian.test.api.ArquillianResource;
-import org.jboss.arquillian.junit.Arquillian;
-import org.jboss.shrinkwrap.api.Filters;
-import org.jboss.shrinkwrap.api.ShrinkWrap;
-import org.jboss.shrinkwrap.api.asset.EmptyAsset;
-import org.jboss.shrinkwrap.api.spec.JavaArchive;
-import org.jboss.shrinkwrap.api.spec.WebArchive;
-import org.jboss.shrinkwrap.resolver.api.maven.Maven;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import com.fasterxml.jackson.core.JsonProcessingException;
-import com.fasterxml.jackson.databind.ObjectMapper;
-
-import javax.ws.rs.client.Entity;
-import javax.ws.rs.client.ClientBuilder;
-import javax.ws.rs.client.WebTarget;
-import javax.ws.rs.core.MediaType;
-import javax.ws.rs.core.Response;
-import java.net.URISyntaxException;
-import java.net.URL;
-
-import static org.junit.Assert.assertEquals;
-
-@RunWith(Arquillian.class)
-public class StudentResourceIntegrationTest {
-
- @Deployment
- public static WebArchive createDeployment() {
- JavaArchive[] kotlinRuntime = Maven.configureResolver()
- .workOffline()
- .withMavenCentralRepo(true)
- .withClassPathResolution(true)
- .loadPomFromFile("pom.xml")
- .resolve("org.jetbrains.kotlin:kotlin-stdlib:1.3.41")
- .withTransitivity()
- .as(JavaArchive.class);
-
- return ShrinkWrap.create(WebArchive.class, "kotlin.war")
- .addPackages(true, Filters.exclude(".*Test*"),
- "com.baeldung.jeekotlin"
- )
- .addAsLibraries(kotlinRuntime)
- .addAsResource("META-INF/persistence.xml")
- .addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
- }
-
- @Test
- @RunAsClient
- public void when_post__then_return_ok(@ArquillianResource URL url) throws URISyntaxException, JsonProcessingException {
- String student = new ObjectMapper().writeValueAsString(new Student("firstName", "lastName"));
- WebTarget webTarget = ClientBuilder.newClient().target(url.toURI());
-
- Response response = webTarget
- .path("/student")
- .request(MediaType.APPLICATION_JSON)
- .post(Entity.json(student));
-
- assertEquals(200, response.getStatus());
- }
-
- @Test
- @RunAsClient
- public void when_get__then_return_ok(@ArquillianResource URL url) throws URISyntaxException, JsonProcessingException {
- WebTarget webTarget = ClientBuilder.newClient().target(url.toURI());
-
- Response response = webTarget
- .path("/student/1")
- .request(MediaType.APPLICATION_JSON)
- .get();
-
- assertEquals(200, response.getStatus());
- }
-
- @Test
- @RunAsClient
- public void when_put__then_return_ok(@ArquillianResource URL url) throws URISyntaxException, JsonProcessingException {
- Student student = new Student("firstName", "lastName");
- student.setId(1L);
- String studentJson = new ObjectMapper().writeValueAsString(student);
- WebTarget webTarget = ClientBuilder.newClient().target(url.toURI());
-
- Response response = webTarget
- .path("/student")
- .request(MediaType.APPLICATION_JSON)
- .put(Entity.json(studentJson));
-
- assertEquals(200, response.getStatus());
- }
-
- @Test
- @RunAsClient
- public void when_delete__then_return_ok(@ArquillianResource URL url) throws URISyntaxException, JsonProcessingException {
- WebTarget webTarget = ClientBuilder.newClient().target(url.toURI());
-
- Response response = webTarget
- .path("/student/1")
- .request()
- .delete();
-
- assertEquals(204, response.getStatus());
- }
-
-}
\ No newline at end of file
diff --git a/jee-kotlin/src/test/resources/arquillian.xml b/jee-kotlin/src/test/resources/arquillian.xml
deleted file mode 100644
index 5e6d7c54e8..0000000000
--- a/jee-kotlin/src/test/resources/arquillian.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
- target/wildfly-8.2.1.Final
- standalone.xml
- true
- 9990
-
-
-
-
-
- 127.0.0.1
- 9990
- admin
- pass
- true
-
-
-
-
\ No newline at end of file
diff --git a/jhipster/jhipster-microservice/car-app/pom.xml b/jhipster/jhipster-microservice/car-app/pom.xml
index c53ea8358e..477192438f 100644
--- a/jhipster/jhipster-microservice/car-app/pom.xml
+++ b/jhipster/jhipster-microservice/car-app/pom.xml
@@ -21,8 +21,6 @@
-Djava.security.egd=file:/dev/./urandom -Xmx256m
3.6.2
2.0.0
- 2.5
- 3.5
0.4.13
1.2
5.2.8.Final
@@ -267,7 +265,7 @@
org.apache.commons
commons-lang3
- ${commons-lang.version}
+ ${commons-lang3.version}
org.assertj
diff --git a/jhipster/jhipster-microservice/dealer-app/pom.xml b/jhipster/jhipster-microservice/dealer-app/pom.xml
index a0bcc73e31..59df7d3b69 100644
--- a/jhipster/jhipster-microservice/dealer-app/pom.xml
+++ b/jhipster/jhipster-microservice/dealer-app/pom.xml
@@ -20,8 +20,6 @@
-Djava.security.egd=file:/dev/./urandom -Xmx256m
3.6.2
2.0.0
- 2.5
- 3.5
0.4.13
1.2
5.2.8.Final
@@ -266,7 +264,7 @@
org.apache.commons
commons-lang3
- ${commons-lang.version}
+ ${commons-lang3.version}
org.assertj
diff --git a/jhipster/jhipster-microservice/gateway-app/pom.xml b/jhipster/jhipster-microservice/gateway-app/pom.xml
index c6dcbb3f3e..a50c2bbdd1 100644
--- a/jhipster/jhipster-microservice/gateway-app/pom.xml
+++ b/jhipster/jhipster-microservice/gateway-app/pom.xml
@@ -22,8 +22,6 @@
2.0.0
3.6.0
1.10
- 2.5
- 3.5
0.4.13
1.3
1.2
@@ -299,7 +297,7 @@
org.apache.commons
commons-lang3
- ${commons-lang.version}
+ ${commons-lang3.version}
org.assertj
diff --git a/jhipster/jhipster-monolithic/pom.xml b/jhipster/jhipster-monolithic/pom.xml
index 04f790faf5..97f2b85b2f 100644
--- a/jhipster/jhipster-monolithic/pom.xml
+++ b/jhipster/jhipster-monolithic/pom.xml
@@ -171,7 +171,7 @@
org.apache.commons
commons-lang3
- ${commons-lang.version}
+ ${commons-lang3.version}
org.assertj
@@ -887,8 +887,6 @@
-Djava.security.egd=file:/dev/./urandom -Xmx256m
3.6.2
2.0.0
- 2.5
- 3.5
0.4.13
1.3
2.2.1
diff --git a/json-2/pom.xml b/json-2/pom.xml
index 0bdede3b1a..e27d1c83f6 100644
--- a/json-2/pom.xml
+++ b/json-2/pom.xml
@@ -114,7 +114,6 @@
0.9.23
3.11.1
1.9.2
- 3.9
diff --git a/kotlin-js/.gitignore b/kotlin-js/.gitignore
deleted file mode 100644
index 1db5e66882..0000000000
--- a/kotlin-js/.gitignore
+++ /dev/null
@@ -1,13 +0,0 @@
-/bin/
-
-#ignore gradle
-.gradle/
-
-
-#ignore build and generated files
-build/
-node/
-
-#ignore installed node modules and package lock file
-node_modules/
-package-lock.json
diff --git a/kotlin-js/README.md b/kotlin-js/README.md
deleted file mode 100644
index 2ec50bad78..0000000000
--- a/kotlin-js/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-## JavaScript in Kotlin
-
-This module contains articles about JavaScript in Kotlin.
-
-### Relevant Articles:
-
-- [Kotlin and Javascript](https://www.baeldung.com/kotlin-javascript)
diff --git a/kotlin-js/build.gradle b/kotlin-js/build.gradle
deleted file mode 100755
index 9efef0f475..0000000000
--- a/kotlin-js/build.gradle
+++ /dev/null
@@ -1,27 +0,0 @@
-buildscript {
- ext.kotlin_version = '1.2.41'
- repositories {
- mavenCentral()
- }
- dependencies {
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
- }
-}
-
-group 'com.baeldung'
-version '1.0-SNAPSHOT'
-apply plugin: 'kotlin2js'
-
-repositories {
- mavenCentral()
-}
-
-dependencies {
- compile "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version"
- testCompile "org.jetbrains.kotlin:kotlin-test-js:$kotlin_version"
-}
-
-compileKotlin2Js.kotlinOptions {
- moduleKind = "commonjs"
- outputFile = "node/crypto.js"
-}
diff --git a/kotlin-js/gradle/wrapper/gradle-wrapper.jar b/kotlin-js/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 01b8bf6b1f..0000000000
Binary files a/kotlin-js/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/kotlin-js/gradlew b/kotlin-js/gradlew
deleted file mode 100755
index cccdd3d517..0000000000
--- a/kotlin-js/gradlew
+++ /dev/null
@@ -1,172 +0,0 @@
-#!/usr/bin/env sh
-
-##############################################################################
-##
-## Gradle start up script for UN*X
-##
-##############################################################################
-
-# Attempt to set APP_HOME
-# Resolve links: $0 may be a link
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
-done
-SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
-APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
-
-APP_NAME="Gradle"
-APP_BASE_NAME=`basename "$0"`
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS=""
-
-# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
-
-warn () {
- echo "$*"
-}
-
-die () {
- echo
- echo "$*"
- echo
- exit 1
-}
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false
-msys=false
-darwin=false
-nonstop=false
-case "`uname`" in
- CYGWIN* )
- cygwin=true
- ;;
- Darwin* )
- darwin=true
- ;;
- MINGW* )
- msys=true
- ;;
- NONSTOP* )
- nonstop=true
- ;;
-esac
-
-CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
-
-# Determine the Java command to use to start the JVM.
-if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
- else
- JAVACMD="$JAVA_HOME/bin/java"
- fi
- if [ ! -x "$JAVACMD" ] ; then
- die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-else
- JAVACMD="java"
- which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
-fi
-
-# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
- MAX_FD_LIMIT=`ulimit -H -n`
- if [ $? -eq 0 ] ; then
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
- MAX_FD="$MAX_FD_LIMIT"
- fi
- ulimit -n $MAX_FD
- if [ $? -ne 0 ] ; then
- warn "Could not set maximum file descriptor limit: $MAX_FD"
- fi
- else
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
- fi
-fi
-
-# For Darwin, add options to specify how the application appears in the dock
-if $darwin; then
- GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
-fi
-
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin ; then
- APP_HOME=`cygpath --path --mixed "$APP_HOME"`
- CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
- JAVACMD=`cygpath --unix "$JAVACMD"`
-
- # We build the pattern for arguments to be converted via cygpath
- ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
- SEP=""
- for dir in $ROOTDIRSRAW ; do
- ROOTDIRS="$ROOTDIRS$SEP$dir"
- SEP="|"
- done
- OURCYGPATTERN="(^($ROOTDIRS))"
- # Add a user-defined pattern to the cygpath arguments
- if [ "$GRADLE_CYGPATTERN" != "" ] ; then
- OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
- fi
- # Now convert the arguments - kludge to limit ourselves to /bin/sh
- i=0
- for arg in "$@" ; do
- CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
- CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
-
- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
- eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
- else
- eval `echo args$i`="\"$arg\""
- fi
- i=$((i+1))
- done
- case $i in
- (0) set -- ;;
- (1) set -- "$args0" ;;
- (2) set -- "$args0" "$args1" ;;
- (3) set -- "$args0" "$args1" "$args2" ;;
- (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
- (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
- (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
- (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
- (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
- (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
- esac
-fi
-
-# Escape application args
-save () {
- for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
- echo " "
-}
-APP_ARGS=$(save "$@")
-
-# Collect all arguments for the java command, following the shell quoting and substitution rules
-eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
-
-# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
-if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
- cd "$(dirname "$0")"
-fi
-
-exec "$JAVACMD" "$@"
diff --git a/kotlin-js/gradlew.bat b/kotlin-js/gradlew.bat
deleted file mode 100755
index e95643d6a2..0000000000
--- a/kotlin-js/gradlew.bat
+++ /dev/null
@@ -1,84 +0,0 @@
-@if "%DEBUG%" == "" @echo off
-@rem ##########################################################################
-@rem
-@rem Gradle startup script for Windows
-@rem
-@rem ##########################################################################
-
-@rem Set local scope for the variables with windows NT shell
-if "%OS%"=="Windows_NT" setlocal
-
-set DIRNAME=%~dp0
-if "%DIRNAME%" == "" set DIRNAME=.
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%
-
-@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS=
-
-@rem Find java.exe
-if defined JAVA_HOME goto findJavaFromJavaHome
-
-set JAVA_EXE=java.exe
-%JAVA_EXE% -version >NUL 2>&1
-if "%ERRORLEVEL%" == "0" goto init
-
-echo.
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:findJavaFromJavaHome
-set JAVA_HOME=%JAVA_HOME:"=%
-set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-
-if exist "%JAVA_EXE%" goto init
-
-echo.
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:init
-@rem Get command-line arguments, handling Windows variants
-
-if not "%OS%" == "Windows_NT" goto win9xME_args
-
-:win9xME_args
-@rem Slurp the command line arguments.
-set CMD_LINE_ARGS=
-set _SKIP=2
-
-:win9xME_args_slurp
-if "x%~1" == "x" goto execute
-
-set CMD_LINE_ARGS=%*
-
-:execute
-@rem Setup the command line
-
-set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
-
-@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
-
-:end
-@rem End local scope for the variables with windows NT shell
-if "%ERRORLEVEL%"=="0" goto mainEnd
-
-:fail
-rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
-rem the _cmd.exe /c_ return code!
-if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
-exit /b 1
-
-:mainEnd
-if "%OS%"=="Windows_NT" endlocal
-
-:omega
diff --git a/kotlin-js/package.json b/kotlin-js/package.json
deleted file mode 100755
index c75313e3ff..0000000000
--- a/kotlin-js/package.json
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- "name": "kotlin-node.js",
- "version": "1.0.0",
- "description": "Example of using NodeJS in Kotlin",
- "main": "crypto.js",
- "dependencies": {
- "express": "^4.15.2",
- "fs": "0.0.1-security",
- "kotlin": "^1.1.0",
- "node.js": "0.0.0",
- "request": "^2.85.0"
- },
- "devDependencies": {},
- "scripts": {
- "start": "node node/crypto.js"
- }
-}
diff --git a/kotlin-js/settings.gradle b/kotlin-js/settings.gradle
deleted file mode 100755
index 64767a30c5..0000000000
--- a/kotlin-js/settings.gradle
+++ /dev/null
@@ -1 +0,0 @@
-rootProject.name = 'KotlinNode'
diff --git a/kotlin-js/src/main/kotlin/com/baeldung/kotlinjs/CryptoRate.kt b/kotlin-js/src/main/kotlin/com/baeldung/kotlinjs/CryptoRate.kt
deleted file mode 100755
index 92ef4a7356..0000000000
--- a/kotlin-js/src/main/kotlin/com/baeldung/kotlinjs/CryptoRate.kt
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.baeldung.kotlinjs
-
-external fun require(module: String): dynamic
-
-data class CryptoCurrency(var name: String, var price: Float)
-
-fun main(args: Array) {
- println("Crypto Currency price API!")
- val express = require("express")
- val app = express()
-
- app.get("/crypto", { _, res ->
- res.send(generateCryptoRates())
- })
-
- app.listen(3000, {
- println("Listening on port 3000")
- })
-}
-fun generateCryptoRates(): Array{
- val cryptoCurrency = arrayOf(
- CryptoCurrency("Bitcoin", 90000F),
- CryptoCurrency("ETH",1000F),
- CryptoCurrency("TRX",10F)
- );
- return cryptoCurrency
-}
\ No newline at end of file
diff --git a/kotlin-libraries-2/.gitignore b/kotlin-libraries-2/.gitignore
deleted file mode 100644
index 0c017e8f8c..0000000000
--- a/kotlin-libraries-2/.gitignore
+++ /dev/null
@@ -1,14 +0,0 @@
-/bin/
-
-#ignore gradle
-.gradle/
-
-
-#ignore build and generated files
-build/
-node/
-out/
-
-#ignore installed node modules and package lock file
-node_modules/
-package-lock.json
diff --git a/kotlin-libraries-2/README.md b/kotlin-libraries-2/README.md
deleted file mode 100644
index f725048acd..0000000000
--- a/kotlin-libraries-2/README.md
+++ /dev/null
@@ -1,14 +0,0 @@
-## Kotlin Libraries
-
-This module contains articles about Kotlin Libraries.
-
-### Relevant articles:
-
-- [Jackson Support for Kotlin](https://www.baeldung.com/jackson-kotlin)
-- [Introduction to RxKotlin](https://www.baeldung.com/rxkotlin)
-- [MockK: A Mocking Library for Kotlin](https://www.baeldung.com/kotlin-mockk)
-- [Kotlin Immutable Collections](https://www.baeldung.com/kotlin-immutable-collections)
-- [Dependency Injection for Kotlin with Injekt](https://www.baeldung.com/kotlin-dependency-injection-with-injekt)
-- [Fuel HTTP Library with Kotlin](https://www.baeldung.com/kotlin-fuel)
-- [Introduction to Kovenant Library for Kotlin](https://www.baeldung.com/kotlin-kovenant)
-- More articles: [[<-- prev]](/kotlin-libraries)
diff --git a/kotlin-libraries-2/pom.xml b/kotlin-libraries-2/pom.xml
deleted file mode 100644
index 254f2c6907..0000000000
--- a/kotlin-libraries-2/pom.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
- 4.0.0
- kotlin-libraries-2
- kotlin-libraries-2
- jar
-
-
- com.baeldung
- parent-kotlin
- 1.0.0-SNAPSHOT
- ../parent-kotlin
-
-
-
-
- com.fasterxml.jackson.module
- jackson-module-kotlin
-
-
- io.reactivex.rxjava2
- rxkotlin
- ${rxkotlin.version}
-
-
- junit
- junit
- test
-
-
- com.google.guava
- guava
- ${guava.version}
-
-
-
- org.jetbrains.kotlinx
- kotlinx-collections-immutable
- ${kotlinx-collections-immutable.version}
-
-
- uy.kohesive.injekt
- injekt-core
- ${injekt-core.version}
-
-
- com.github.kittinunf.fuel
- fuel
- ${fuel.version}
-
-
- com.github.kittinunf.fuel
- fuel-gson
- ${fuel.version}
-
-
- com.github.kittinunf.fuel
- fuel-rxjava
- ${fuel.version}
-
-
- com.github.kittinunf.fuel
- fuel-coroutines
- ${fuel.version}
-
-
- nl.komponents.kovenant
- kovenant
- ${kovenant.version}
- pom
-
-
-
- io.mockk
- mockk
- ${mockk.version}
- test
-
-
-
-
- 1.16.1
- 1.15.0
- 3.3.0
- 27.1-jre
- 1.9.3
- 0.1
- 2.3.0
-
-
-
diff --git a/kotlin-libraries-2/resources/logback.xml b/kotlin-libraries-2/resources/logback.xml
deleted file mode 100644
index 9452207268..0000000000
--- a/kotlin-libraries-2/resources/logback.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
- %d{YYYY-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/kotlin-libraries-2/src/main/kotlin/com/baeldung/fuel/Interceptors.kt b/kotlin-libraries-2/src/main/kotlin/com/baeldung/fuel/Interceptors.kt
deleted file mode 100644
index 377ef979dc..0000000000
--- a/kotlin-libraries-2/src/main/kotlin/com/baeldung/fuel/Interceptors.kt
+++ /dev/null
@@ -1,11 +0,0 @@
-package com.baeldung.fuel
-
-import com.github.kittinunf.fuel.core.Request
-
-fun tokenInterceptor() = {
- next: (Request) -> Request ->
- { req: Request ->
- req.header(mapOf("Authorization" to "Bearer AbCdEf123456"))
- next(req)
- }
-}
\ No newline at end of file
diff --git a/kotlin-libraries-2/src/main/kotlin/com/baeldung/fuel/Post.kt b/kotlin-libraries-2/src/main/kotlin/com/baeldung/fuel/Post.kt
deleted file mode 100644
index 035dfe7aa0..0000000000
--- a/kotlin-libraries-2/src/main/kotlin/com/baeldung/fuel/Post.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.baeldung.fuel
-
-import com.github.kittinunf.fuel.core.ResponseDeserializable
-import com.google.gson.Gson
-
-data class Post(var userId:Int,
- var id:Int,
- var title:String,
- var body:String){
-
-
- class Deserializer : ResponseDeserializable> {
- override fun deserialize(content: String): Array = Gson().fromJson(content, Array::class.java)
- }
-}
\ No newline at end of file
diff --git a/kotlin-libraries-2/src/main/kotlin/com/baeldung/fuel/PostRoutingAPI.kt b/kotlin-libraries-2/src/main/kotlin/com/baeldung/fuel/PostRoutingAPI.kt
deleted file mode 100644
index 8238c41e56..0000000000
--- a/kotlin-libraries-2/src/main/kotlin/com/baeldung/fuel/PostRoutingAPI.kt
+++ /dev/null
@@ -1,42 +0,0 @@
-package com.baeldung.fuel
-
-import com.github.kittinunf.fuel.core.Method
-import com.github.kittinunf.fuel.util.FuelRouting
-
-sealed class PostRoutingAPI : FuelRouting {
-
- override val basePath = "https://jsonplaceholder.typicode.com"
-
- class posts(val id: String, override val body: String?): PostRoutingAPI()
-
- class comments(val postId: String, override val body: String?): PostRoutingAPI()
-
- override val method: Method
- get() {
- return when(this) {
- is PostRoutingAPI.posts -> Method.GET
- is PostRoutingAPI.comments -> Method.GET
- }
- }
-
- override val path: String
- get() {
- return when(this) {
- is PostRoutingAPI.posts -> "/posts"
- is PostRoutingAPI.comments -> "/comments"
- }
- }
-
- override val params: List>?
- get() {
- return when(this) {
- is PostRoutingAPI.posts -> listOf("id" to this.id)
- is PostRoutingAPI.comments -> listOf("postId" to this.postId)
- }
- }
-
- override val headers: Map?
- get() {
- return null
- }
-}
diff --git a/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/DelegateInjectionApplication.kt b/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/DelegateInjectionApplication.kt
deleted file mode 100644
index fb9beda621..0000000000
--- a/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/DelegateInjectionApplication.kt
+++ /dev/null
@@ -1,60 +0,0 @@
-package com.baeldung.injekt
-
-import org.slf4j.LoggerFactory
-import uy.kohesive.injekt.*
-import uy.kohesive.injekt.api.*
-import java.util.*
-
-class DelegateInjectionApplication {
- companion object : InjektMain() {
- private val LOG = LoggerFactory.getLogger(DelegateInjectionApplication::class.java)
- @JvmStatic fun main(args: Array) {
- DelegateInjectionApplication().run()
- }
-
- override fun InjektRegistrar.registerInjectables() {
- addFactory {
- val value = FactoryInstance("Factory" + UUID.randomUUID().toString())
- LOG.info("Constructing instance: {}", value)
- value
- }
-
- addSingletonFactory {
- val value = SingletonInstance("Singleton" + UUID.randomUUID().toString())
- LOG.info("Constructing singleton instance: {}", value)
- value
- }
-
- addSingletonFactory { App() }
- }
- }
-
- data class FactoryInstance(val value: String)
- data class SingletonInstance(val value: String)
-
- class App {
- private val instance: FactoryInstance by injectValue()
- private val lazyInstance: FactoryInstance by injectLazy()
- private val singleton: SingletonInstance by injectValue()
- private val lazySingleton: SingletonInstance by injectLazy()
-
- fun run() {
- for (i in 1..5) {
- LOG.info("Instance {}: {}", i, instance)
- }
- for (i in 1..5) {
- LOG.info("Lazy Instance {}: {}", i, lazyInstance)
- }
- for (i in 1..5) {
- LOG.info("Singleton {}: {}", i, singleton)
- }
- for (i in 1..5) {
- LOG.info("Lazy Singleton {}: {}", i, lazySingleton)
- }
- }
- }
-
- fun run() {
- Injekt.get().run()
- }
-}
diff --git a/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/KeyedApplication.kt b/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/KeyedApplication.kt
deleted file mode 100644
index 4205678981..0000000000
--- a/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/KeyedApplication.kt
+++ /dev/null
@@ -1,41 +0,0 @@
-package com.baeldung.injekt
-
-import org.slf4j.LoggerFactory
-import uy.kohesive.injekt.Injekt
-import uy.kohesive.injekt.InjektMain
-import uy.kohesive.injekt.api.InjektRegistrar
-import uy.kohesive.injekt.api.addPerKeyFactory
-import uy.kohesive.injekt.api.addSingletonFactory
-import uy.kohesive.injekt.api.get
-
-class KeyedApplication {
- companion object : InjektMain() {
- private val LOG = LoggerFactory.getLogger(KeyedApplication::class.java)
- @JvmStatic fun main(args: Array) {
- KeyedApplication().run()
- }
-
- override fun InjektRegistrar.registerInjectables() {
- val configs = mapOf(
- "google" to Config("googleClientId", "googleClientSecret"),
- "twitter" to Config("twitterClientId", "twitterClientSecret")
- )
- addPerKeyFactory {key -> configs[key]!! }
-
- addSingletonFactory { App() }
- }
- }
-
- data class Config(val clientId: String, val clientSecret: String)
-
- class App {
- fun run() {
- LOG.info("Google config: {}", Injekt.get("google"))
- LOG.info("Twitter config: {}", Injekt.get("twitter"))
- }
- }
-
- fun run() {
- Injekt.get().run()
- }
-}
diff --git a/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/ModularApplication.kt b/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/ModularApplication.kt
deleted file mode 100644
index 96a0c9556a..0000000000
--- a/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/ModularApplication.kt
+++ /dev/null
@@ -1,47 +0,0 @@
-package com.baeldung.injekt
-
-import org.slf4j.LoggerFactory
-import uy.kohesive.injekt.Injekt
-import uy.kohesive.injekt.InjektMain
-import uy.kohesive.injekt.api.*
-
-class ModularApplication {
- class ConfigModule(private val port: Int) : InjektModule {
- override fun InjektRegistrar.registerInjectables() {
- addSingleton(Config(port))
- }
- }
-
- object ServerModule : InjektModule {
- override fun InjektRegistrar.registerInjectables() {
- addSingletonFactory { Server(Injekt.get()) }
- }
- }
-
- companion object : InjektMain() {
- private val LOG = LoggerFactory.getLogger(Server::class.java)
- @JvmStatic fun main(args: Array) {
- ModularApplication().run()
- }
-
- override fun InjektRegistrar.registerInjectables() {
- importModule(ConfigModule(12345))
- importModule(ServerModule)
- }
- }
-
- data class Config(
- val port: Int
- )
-
- class Server(private val config: Config) {
-
- fun start() {
- LOG.info("Starting server on ${config.port}")
- }
- }
-
- fun run() {
- Injekt.get().start()
- }
-}
diff --git a/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/PerThreadApplication.kt b/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/PerThreadApplication.kt
deleted file mode 100644
index f3167bc223..0000000000
--- a/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/PerThreadApplication.kt
+++ /dev/null
@@ -1,52 +0,0 @@
-package com.baeldung.injekt
-
-import org.slf4j.LoggerFactory
-import uy.kohesive.injekt.Injekt
-import uy.kohesive.injekt.InjektMain
-import uy.kohesive.injekt.api.InjektRegistrar
-import uy.kohesive.injekt.api.addPerThreadFactory
-import uy.kohesive.injekt.api.addSingletonFactory
-import uy.kohesive.injekt.api.get
-import java.util.*
-import java.util.concurrent.Executors
-import java.util.concurrent.TimeUnit
-
-class PerThreadApplication {
- companion object : InjektMain() {
- private val LOG = LoggerFactory.getLogger(PerThreadApplication::class.java)
- @JvmStatic fun main(args: Array) {
- PerThreadApplication().run()
- }
-
- override fun InjektRegistrar.registerInjectables() {
- addPerThreadFactory {
- val value = FactoryInstance(UUID.randomUUID().toString())
- LOG.info("Constructing instance: {}", value)
- value
- }
-
- addSingletonFactory { App() }
- }
- }
-
- data class FactoryInstance(val value: String)
-
- class App {
- fun run() {
- val threadPool = Executors.newFixedThreadPool(5)
-
- for (i in 1..20) {
- threadPool.submit {
- val instance = Injekt.get()
- LOG.info("Value for thread {}: {}", Thread.currentThread().id, instance)
- TimeUnit.MILLISECONDS.sleep(100)
- }
- }
- threadPool.awaitTermination(10, TimeUnit.SECONDS)
- }
- }
-
- fun run() {
- Injekt.get().run()
- }
-}
diff --git a/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/SimpleApplication.kt b/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/SimpleApplication.kt
deleted file mode 100644
index 5c2dc28ba5..0000000000
--- a/kotlin-libraries-2/src/main/kotlin/com/baeldung/injekt/SimpleApplication.kt
+++ /dev/null
@@ -1,38 +0,0 @@
-package com.baeldung.injekt
-
-import org.slf4j.LoggerFactory
-import uy.kohesive.injekt.Injekt
-import uy.kohesive.injekt.InjektMain
-import uy.kohesive.injekt.api.InjektRegistrar
-import uy.kohesive.injekt.api.addSingleton
-import uy.kohesive.injekt.api.addSingletonFactory
-import uy.kohesive.injekt.api.get
-
-class SimpleApplication {
- companion object : InjektMain() {
- private val LOG = LoggerFactory.getLogger(Server::class.java)
- @JvmStatic fun main(args: Array) {
- SimpleApplication().run()
- }
-
- override fun InjektRegistrar.registerInjectables() {
- addSingleton(Config(12345))
- addSingletonFactory { Server(Injekt.get()) }
- }
- }
-
- data class Config(
- val port: Int
- )
-
- class Server(private val config: Config) {
-
- fun start() {
- LOG.info("Starting server on ${config.port}")
- }
- }
-
- fun run() {
- Injekt.get().start()
- }
-}
diff --git a/kotlin-libraries-2/src/main/kotlin/com/baeldung/kotlin/jackson/Book.kt b/kotlin-libraries-2/src/main/kotlin/com/baeldung/kotlin/jackson/Book.kt
deleted file mode 100644
index 4ff47ea987..0000000000
--- a/kotlin-libraries-2/src/main/kotlin/com/baeldung/kotlin/jackson/Book.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.kotlin.jackson
-
-import com.fasterxml.jackson.annotation.*
-
-@JsonInclude(JsonInclude.Include.NON_EMPTY)
-data class Book(var title: String, @JsonProperty("author") var authorName: String) {
- var genres: List? = emptyList()
-}
\ No newline at end of file
diff --git a/kotlin-libraries-2/src/main/kotlin/com/baeldung/kotlin/jackson/Movie.kt b/kotlin-libraries-2/src/main/kotlin/com/baeldung/kotlin/jackson/Movie.kt
deleted file mode 100644
index 445b6013d5..0000000000
--- a/kotlin-libraries-2/src/main/kotlin/com/baeldung/kotlin/jackson/Movie.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.kotlin.jackson
-
-data class Movie(var name: String, var studio: String, var rating: Float? = 1f)
\ No newline at end of file
diff --git a/kotlin-libraries-2/src/test/kotlin/com/baeldung/fuel/FuelHttpLiveTest.kt b/kotlin-libraries-2/src/test/kotlin/com/baeldung/fuel/FuelHttpLiveTest.kt
deleted file mode 100644
index 69b6ae88c6..0000000000
--- a/kotlin-libraries-2/src/test/kotlin/com/baeldung/fuel/FuelHttpLiveTest.kt
+++ /dev/null
@@ -1,280 +0,0 @@
-package com.baeldung.fuel
-
-import com.github.kittinunf.fuel.Fuel
-import com.github.kittinunf.fuel.core.FuelManager
-import com.github.kittinunf.fuel.core.interceptors.cUrlLoggingRequestInterceptor
-import com.github.kittinunf.fuel.gson.responseObject
-import com.github.kittinunf.fuel.httpGet
-import com.github.kittinunf.fuel.rx.rx_object
-import com.google.gson.Gson
-import org.junit.jupiter.api.Assertions
-import org.junit.jupiter.api.Test
-import java.io.File
-import java.util.concurrent.CountDownLatch
-
-/**
- * These live tests make connections to the external systems: http://httpbin.org, https://jsonplaceholder.typicode.com
- * Make sure these hosts are up and your internet connection is on before running the tests.
- */
-internal class FuelHttpLiveTest {
-
- @Test
- fun whenMakingAsyncHttpGetRequest_thenResponseNotNullAndErrorNullAndStatusCode200() {
-
- val latch = CountDownLatch(1)
-
- "http://httpbin.org/get".httpGet().response{
- request, response, result ->
-
- val (data, error) = result
-
- Assertions.assertNull(error)
- Assertions.assertNotNull(data)
- Assertions.assertEquals(200,response.statusCode)
-
- latch.countDown()
- }
-
- latch.await()
-
- }
-
- @Test
- fun whenMakingSyncHttpGetRequest_thenResponseNotNullAndErrorNullAndStatusCode200() {
-
- val (request, response, result) = "http://httpbin.org/get".httpGet().response()
- val (data, error) = result
-
- Assertions.assertNull(error)
- Assertions.assertNotNull(data)
- Assertions.assertEquals(200,response.statusCode)
-
- }
-
- @Test
- fun whenMakingSyncHttpGetURLEncodedRequest_thenResponseNotNullAndErrorNullAndStatusCode200() {
-
- val (request, response, result) =
- "https://jsonplaceholder.typicode.com/posts"
- .httpGet(listOf("id" to "1")).response()
- val (data, error) = result
-
- Assertions.assertNull(error)
- Assertions.assertNotNull(data)
- Assertions.assertEquals(200,response.statusCode)
-
- }
-
- @Test
- fun whenMakingAsyncHttpPostRequest_thenResponseNotNullAndErrorNullAndStatusCode200() {
-
- val latch = CountDownLatch(1)
-
- Fuel.post("http://httpbin.org/post").response{
- request, response, result ->
-
- val (data, error) = result
-
- Assertions.assertNull(error)
- Assertions.assertNotNull(data)
- Assertions.assertEquals(200,response.statusCode)
-
- latch.countDown()
- }
-
- latch.await()
-
- }
-
- @Test
- fun whenMakingSyncHttpPostRequest_thenResponseNotNullAndErrorNullAndStatusCode200() {
-
- val (request, response, result) = Fuel.post("http://httpbin.org/post").response()
- val (data, error) = result
-
- Assertions.assertNull(error)
- Assertions.assertNotNull(data)
- Assertions.assertEquals(200,response.statusCode)
- }
-
- @Test
- fun whenMakingSyncHttpPostRequestwithBody_thenResponseNotNullAndErrorNullAndStatusCode200() {
-
- val (request, response, result) = Fuel.post("https://jsonplaceholder.typicode.com/posts")
- .body("{ \"title\" : \"foo\",\"body\" : \"bar\",\"id\" : \"1\"}")
- .response()
-
- val (data, error) = result
-
- Assertions.assertNull(error)
- Assertions.assertNotNull(data)
- Assertions.assertEquals(201,response.statusCode)
- }
-
- @Test
- fun givenFuelInstance_whenMakingSyncHttpGetRequest_thenResponseNotNullAndErrorNullAndStatusCode200() {
-
- FuelManager.instance.basePath = "http://httpbin.org"
- FuelManager.instance.baseHeaders = mapOf("OS" to "macOS High Sierra")
-
- FuelManager.instance.addRequestInterceptor(cUrlLoggingRequestInterceptor())
- FuelManager.instance.addRequestInterceptor(tokenInterceptor())
-
-
- val (request, response, result) = "/get"
- .httpGet().response()
- val (data, error) = result
-
- Assertions.assertNull(error)
- Assertions.assertNotNull(data)
- Assertions.assertEquals(200,response.statusCode)
- }
-
- @Test
- fun givenInterceptors_whenMakingSyncHttpGetRequest_thenResponseNotNullAndErrorNullAndStatusCode200() {
-
- FuelManager.instance.basePath = "http://httpbin.org"
- FuelManager.instance.addRequestInterceptor(cUrlLoggingRequestInterceptor())
- FuelManager.instance.addRequestInterceptor(tokenInterceptor())
-
- val (request, response, result) = "/get"
- .httpGet().response()
- val (data, error) = result
-
- Assertions.assertNull(error)
- Assertions.assertNotNull(data)
- Assertions.assertEquals(200,response.statusCode)
- }
-
- @Test
- fun whenDownloadFile_thenCreateFileResponseNotNullAndErrorNullAndStatusCode200() {
-
- Fuel.download("http://httpbin.org/bytes/32768").destination { response, url ->
- File.createTempFile("temp", ".tmp")
- }.response{
- request, response, result ->
-
- val (data, error) = result
- Assertions.assertNull(error)
- Assertions.assertNotNull(data)
- Assertions.assertEquals(200,response.statusCode)
- }
- }
-
- @Test
- fun whenDownloadFilewithProgressHandler_thenCreateFileResponseNotNullAndErrorNullAndStatusCode200() {
-
- val (request, response, result) = Fuel.download("http://httpbin.org/bytes/327680")
- .destination { response, url -> File.createTempFile("temp", ".tmp")
- }.progress { readBytes, totalBytes ->
- val progress = readBytes.toFloat() / totalBytes.toFloat()
- }.response ()
-
- val (data, error) = result
- Assertions.assertNull(error)
- Assertions.assertNotNull(data)
- Assertions.assertEquals(200,response.statusCode)
-
-
- }
-
- @Test
- fun whenMakeGetRequest_thenDeserializePostwithGson() {
-
- val latch = CountDownLatch(1)
-
- "https://jsonplaceholder.typicode.com/posts/1".httpGet().responseObject { _,_, result ->
- val post = result.component1()
- Assertions.assertEquals(1, post?.userId)
- latch.countDown()
- }
-
- latch.await()
-
- }
-
- @Test
- fun whenMakePOSTRequest_thenSerializePostwithGson() {
-
- val post = Post(1,1, "Lorem", "Lorem Ipse dolor sit amet")
-
- val (request, response, result) = Fuel.post("https://jsonplaceholder.typicode.com/posts")
- .header("Content-Type" to "application/json")
- .body(Gson().toJson(post).toString())
- .response()
-
- Assertions.assertEquals(201,response.statusCode)
-
- }
-
- @Test
- fun whenMakeGETRequestWithRxJava_thenDeserializePostwithGson() {
-
- val latch = CountDownLatch(1)
-
-
- "https://jsonplaceholder.typicode.com/posts?id=1"
- .httpGet().rx_object(Post.Deserializer()).subscribe{
- res, throwable ->
-
- val post = res.component1()
- Assertions.assertEquals(1, post?.get(0)?.userId)
- latch.countDown()
- }
-
- latch.await()
-
- }
-
-
-// The new 1.3 coroutine APIs, aren't implemented yet in Fuel Library
-// @Test
-// fun whenMakeGETRequestUsingCoroutines_thenResponseStatusCode200() = runBlocking {
-// val (request, response, result) = Fuel.get("http://httpbin.org/get").awaitStringResponse()
-//
-// result.fold({ data ->
-// Assertions.assertEquals(200, response.statusCode)
-//
-// }, { error -> })
-// }
-
-// The new 1.3 coroutine APIs, aren't implemented yet in Fuel Library
-// @Test
-// fun whenMakeGETRequestUsingCoroutines_thenDeserializeResponse() = runBlocking {
-// Fuel.get("https://jsonplaceholder.typicode.com/posts?id=1").awaitObjectResult(Post.Deserializer())
-// .fold({ data ->
-// Assertions.assertEquals(1, data.get(0).userId)
-// }, { error -> })
-// }
-
- @Test
- fun whenMakeGETPostRequestUsingRoutingAPI_thenDeserializeResponse() {
-
- val latch = CountDownLatch(1)
-
- Fuel.request(PostRoutingAPI.posts("1",null))
- .responseObject(Post.Deserializer()) {
- request, response, result ->
- Assertions.assertEquals(1, result.component1()?.get(0)?.userId)
- latch.countDown()
- }
-
- latch.await()
- }
-
- @Test
- fun whenMakeGETCommentRequestUsingRoutingAPI_thenResponseStausCode200() {
-
- val latch = CountDownLatch(1)
-
- Fuel.request(PostRoutingAPI.comments("1",null))
- .responseString { request, response, result ->
- Assertions.assertEquals(200, response.statusCode)
- latch.countDown()
- }
-
- latch.await()
- }
-
-
-}
\ No newline at end of file
diff --git a/kotlin-libraries-2/src/test/kotlin/com/baeldung/gson/GsonUnitTest.kt b/kotlin-libraries-2/src/test/kotlin/com/baeldung/gson/GsonUnitTest.kt
deleted file mode 100644
index 9159be96be..0000000000
--- a/kotlin-libraries-2/src/test/kotlin/com/baeldung/gson/GsonUnitTest.kt
+++ /dev/null
@@ -1,30 +0,0 @@
-package com.baeldung.gson
-
-import com.google.gson.Gson
-
-import org.junit.Assert
-import org.junit.Test
-
-class GsonUnitTest {
-
- var gson = Gson()
-
- @Test
- fun givenObject_thenGetJSONString() {
- var jsonString = gson.toJson(TestModel(1, "Test"))
- Assert.assertEquals(jsonString, "{\"id\":1,\"description\":\"Test\"}")
- }
-
- @Test
- fun givenJSONString_thenGetObject() {
- var jsonString = "{\"id\":1,\"description\":\"Test\"}";
- var testModel = gson.fromJson(jsonString, TestModel::class.java)
- Assert.assertEquals(testModel.id, 1)
- Assert.assertEquals(testModel.description, "Test")
- }
-
- data class TestModel(
- val id: Int,
- val description: String
- )
-}
\ No newline at end of file
diff --git a/kotlin-libraries-2/src/test/kotlin/com/baeldung/kotlin/immutable/KotlinxImmutablesUnitTest.kt b/kotlin-libraries-2/src/test/kotlin/com/baeldung/kotlin/immutable/KotlinxImmutablesUnitTest.kt
deleted file mode 100644
index 971f2de4c2..0000000000
--- a/kotlin-libraries-2/src/test/kotlin/com/baeldung/kotlin/immutable/KotlinxImmutablesUnitTest.kt
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.baeldung.kotlin.immutable
-
-import junit.framework.Assert.assertEquals
-import kotlinx.collections.immutable.ImmutableList
-import kotlinx.collections.immutable.immutableListOf
-import org.junit.Rule
-import org.junit.Test
-import org.junit.rules.ExpectedException
-
-class KotlinxImmutablesUnitTest{
-
-
- @Rule
- @JvmField
- var ee : ExpectedException = ExpectedException.none()
-
- @Test
- fun givenKICLList_whenAddTried_checkExceptionThrown(){
-
- val list: ImmutableList = immutableListOf("I", "am", "immutable")
-
- list.add("My new item")
-
- assertEquals(listOf("I", "am", "immutable"), list)
-
- }
-}
\ No newline at end of file
diff --git a/kotlin-libraries-2/src/test/kotlin/com/baeldung/kotlin/immutable/ReadOnlyUnitTest.kt b/kotlin-libraries-2/src/test/kotlin/com/baeldung/kotlin/immutable/ReadOnlyUnitTest.kt
deleted file mode 100644
index 62c4a4eb88..0000000000
--- a/kotlin-libraries-2/src/test/kotlin/com/baeldung/kotlin/immutable/ReadOnlyUnitTest.kt
+++ /dev/null
@@ -1,73 +0,0 @@
-package com.baeldung.kotlin.immutable
-
-import com.google.common.collect.ImmutableList
-import com.google.common.collect.ImmutableSet
-import junit.framework.Assert.assertEquals
-import org.junit.Rule
-import org.junit.Test
-import org.junit.rules.ExpectedException
-
-class ReadOnlyUnitTest{
-
- @Test
- fun givenReadOnlyList_whenCastToMutableList_checkNewElementsAdded(){
-
- val list: List = listOf("This", "Is", "Totally", "Immutable")
-
- (list as MutableList)[2] = "Not"
-
- assertEquals(listOf("This", "Is", "Not", "Immutable"), list)
-
- }
-
- @Rule
- @JvmField
- var ee : ExpectedException = ExpectedException.none()
-
- @Test
- fun givenImmutableList_whenAddTried_checkExceptionThrown(){
-
- val list: List = ImmutableList.of("I", "am", "actually", "immutable")
-
- ee.expect(UnsupportedOperationException::class.java)
-
- (list as MutableList).add("Oops")
-
- }
-
- @Test
- fun givenMutableList_whenCopiedAndAddTried_checkExceptionThrown(){
-
- val mutableList : List = listOf("I", "Am", "Definitely", "Immutable")
-
- (mutableList as MutableList)[2] = "100% Not"
-
- assertEquals(listOf("I", "Am", "100% Not", "Immutable"), mutableList)
-
- val list: List = ImmutableList.copyOf(mutableList)
-
- ee.expect(UnsupportedOperationException::class.java)
-
- (list as MutableList)[2] = "Really?"
-
- }
-
- @Test
- fun givenImmutableSetBuilder_whenAddTried_checkExceptionThrown(){
-
- val mutableList : List = listOf("Hello", "Baeldung")
- val set: ImmutableSet = ImmutableSet.builder()
- .add("I","am","immutable")
- .addAll(mutableList)
- .build()
-
- assertEquals(setOf("Hello", "Baeldung", "I", "am", "immutable"), set)
-
- ee.expect(UnsupportedOperationException::class.java)
-
- (set as MutableSet).add("Oops")
-
- }
-
-
-}
\ No newline at end of file
diff --git a/kotlin-libraries-2/src/test/kotlin/com/baeldung/kotlin/jackson/JacksonUnitTest.kt b/kotlin-libraries-2/src/test/kotlin/com/baeldung/kotlin/jackson/JacksonUnitTest.kt
deleted file mode 100644
index 0c72edc2fd..0000000000
--- a/kotlin-libraries-2/src/test/kotlin/com/baeldung/kotlin/jackson/JacksonUnitTest.kt
+++ /dev/null
@@ -1,122 +0,0 @@
-package com.baeldung.kotlin.jackson
-
-import org.junit.Test
-import kotlin.test.assertTrue
-import kotlin.test.assertFalse
-import kotlin.test.assertEquals
-import com.fasterxml.jackson.module.kotlin.jacksonObjectMapper
-import com.fasterxml.jackson.module.kotlin.readValue
-import com.fasterxml.jackson.databind.ObjectMapper
-import com.fasterxml.jackson.module.kotlin.KotlinModule
-
-class JacksonUnitTest {
- //val mapper = jacksonObjectMapper()
- val mapper = ObjectMapper().registerModule(KotlinModule())
-
-
- @Test
- fun whenSerializeMovie_thenSuccess() {
- val movie = Movie("Endgame", "Marvel", 9.2f)
- val serialized = mapper.writeValueAsString(movie)
-
- val json = """{"name":"Endgame","studio":"Marvel","rating":9.2}"""
- assertEquals(serialized, json)
- }
-
- @Test
- fun whenDeserializeMovie_thenSuccess() {
- val json = """{"name":"Endgame","studio":"Marvel","rating":9.2}"""
- // val movie: Movie = mapper.readValue(json)
- val movie = mapper.readValue(json)
-
- assertEquals(movie.name, "Endgame")
- assertEquals(movie.studio, "Marvel")
- assertEquals(movie.rating, 9.2f)
- }
-
- @Test
- fun whenDeserializeMovieWithMissingValue_thenUseDefaultValue() {
- val json = """{"name":"Endgame","studio":"Marvel"}"""
- val movie: Movie = mapper.readValue(json)
-
- assertEquals(movie.name, "Endgame")
- assertEquals(movie.studio, "Marvel")
- assertEquals(movie.rating, 1f)
- }
-
- @Test
- fun whenSerializeMap_thenSuccess() {
- val map = mapOf(1 to "one", 2 to "two")
- val serialized = mapper.writeValueAsString(map)
-
- val json = """{"1":"one","2":"two"}"""
- assertEquals(serialized, json)
- }
-
- @Test
- fun whenDeserializeMap_thenSuccess() {
- val json = """{"1":"one","2":"two"}"""
- val aMap: Map = mapper.readValue(json)
-
- assertEquals(aMap[1], "one")
- assertEquals(aMap[2], "two")
-
- val sameMap = mapper.readValue
+
+ org.apache.commons
+ commons-collections4
+ ${commons-collections4.version}
+
commons-net
commons-net
@@ -89,7 +94,7 @@
commons-io
commons-io
- ${commonsio.version}
+ ${commons-io.version}
test
@@ -152,10 +157,10 @@
1.15
3.6
3.6.2
- 2.6
RELEASE
3.0
1.8.1
+ 4.4
8.12.9
diff --git a/libraries-6/src/test/java/com/baeldung/apache/commons/CollectionsUnitTest.java b/libraries-6/src/test/java/com/baeldung/apache/commons/CollectionsUnitTest.java
new file mode 100644
index 0000000000..3de0c64fb9
--- /dev/null
+++ b/libraries-6/src/test/java/com/baeldung/apache/commons/CollectionsUnitTest.java
@@ -0,0 +1,182 @@
+package com.baeldung.apache.commons;
+
+import static org.junit.Assert.assertArrayEquals;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.concurrent.TimeUnit;
+
+import org.apache.commons.collections4.BidiMap;
+import org.apache.commons.collections4.MultiValuedMap;
+import org.apache.commons.collections4.bidimap.DualHashBidiMap;
+import org.apache.commons.collections4.bidimap.DualTreeBidiMap;
+import org.apache.commons.collections4.bidimap.TreeBidiMap;
+import org.apache.commons.collections4.map.MultiKeyMap;
+import org.apache.commons.collections4.multimap.ArrayListValuedHashMap;
+import org.junit.Test;
+
+public class CollectionsUnitTest {
+ private final static BidiMap daysOfWeek = new TreeBidiMap();
+ private final static MultiValuedMap groceryCart = new ArrayListValuedHashMap<>();
+ private final static MultiKeyMap days = new MultiKeyMap();
+ private final static MultiKeyMap cityCoordinates = new MultiKeyMap();
+ private long start;
+
+ static {
+ daysOfWeek.put(1, "Monday");
+ daysOfWeek.put(2, "Tuesday");
+ daysOfWeek.put(3, "Wednesday");
+ daysOfWeek.put(4, "Thursday");
+ daysOfWeek.put(5, "Friday");
+ daysOfWeek.put(6, "Saturday");
+ daysOfWeek.put(7, "Sunday");
+
+ groceryCart.put("Fruits", "Apple");
+ groceryCart.put("Fruits", "Grapes");
+ groceryCart.put("Fruits", "Strawberries");
+ groceryCart.put("Vegetables", "Spinach");
+ groceryCart.put("Vegetables", "Cabbage");
+
+ days.put("Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Weekday");
+ days.put("Saturday", "Sunday", "Weekend");
+
+ cityCoordinates.put("40.7128° N", "74.0060° W", "New York");
+ cityCoordinates.put("48.8566° N", "2.3522° E", "Paris");
+ cityCoordinates.put("19.0760° N", "72.8777° E", "Mumbai");
+
+ }
+
+ @Test
+ public void givenBidiMap_whenValue_thenKeyReturned() {
+ assertEquals(Integer.valueOf(7), daysOfWeek.inverseBidiMap()
+ .get("Sunday"));
+ }
+
+ @Test
+ public void givenBidiMap_whenKey_thenValueReturned() {
+ assertEquals("Tuesday", daysOfWeek.get(2));
+ }
+
+ @Test
+ public void givenMultiValuedMap_whenFruitsFetched_thenFruitsReturned() {
+
+ List fruits = Arrays.asList("Apple", "Grapes", "Strawberries");
+ assertEquals(fruits, groceryCart.get("Fruits"));
+ }
+
+ @Test
+ public void givenMultiValuedMap_whenVeggiesFetched_thenVeggiesReturned() {
+ List veggies = Arrays.asList("Spinach", "Cabbage");
+ assertEquals(veggies, groceryCart.get("Vegetables"));
+ }
+
+ @Test
+ public void givenMultiValuedMap_whenFuitsRemoved_thenVeggiesPreserved() {
+
+ assertEquals(5, groceryCart.size());
+
+ groceryCart.remove("Fruits");
+ assertEquals(2, groceryCart.size());
+ }
+
+ @Test
+ public void givenDaysMultiKeyMap_whenFetched_thenOK() {
+ assertFalse(days.get("Saturday", "Sunday")
+ .equals("Weekday"));
+ }
+
+ @Test
+ public void givenCoordinatesMultiKeyMap_whenQueried_thenOK() {
+ List expectedLongitudes = Arrays.asList("72.8777° E", "2.3522° E", "74.0060° W");
+ List longitudes = new ArrayList<>();
+
+ cityCoordinates.forEach((key, value) -> {
+ longitudes.add(key.getKey(1));
+ });
+
+ assertArrayEquals(expectedLongitudes.toArray(), longitudes.toArray());
+
+ List expectedCities = Arrays.asList("Mumbai", "Paris", "New York");
+ List cities = new ArrayList<>();
+
+ cityCoordinates.forEach((key, value) -> {
+ cities.add(value);
+ });
+
+ assertArrayEquals(expectedCities.toArray(), cities.toArray());
+
+ }
+
+ @Test
+ public void givenTreeBidiMap_whenHundredThousandKeys_thenPerformanceNoted() {
+ System.out.println("**TreeBidiMap**");
+ BidiMap map = new TreeBidiMap<>();
+ start = System.nanoTime();
+ for (int i = 0; i < 100000; i++) {
+ Integer key = new Integer(i);
+ Integer value = new Integer(i + 1);
+ map.put(key, value);
+ }
+ System.out.println("Insertion time:" + TimeUnit.MILLISECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+
+ start = System.nanoTime();
+ Integer value = (Integer) map.get(new Integer(500));
+ System.out.println("Value:" + value);
+ System.out.println("Fetch time key:" + TimeUnit.MICROSECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+
+ start = System.nanoTime();
+ Integer key = (Integer) map.getKey(new Integer(501));
+ System.out.println("Key:" + key);
+ System.out.println("Fetch time value:" + TimeUnit.MICROSECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+ }
+
+ @Test
+ public void givenDualTreeBidiMap_whenHundredThousandKeys_thenPerformanceNoted() {
+ System.out.println("**DualTreeBidiMap**");
+ BidiMap map = new DualTreeBidiMap<>();
+ start = System.nanoTime();
+ for (int i = 0; i < 100000; i++) {
+ Integer key = new Integer(i);
+ Integer value = new Integer(i + 1);
+ map.put(key, value);
+ }
+ System.out.println("Insertion time:" + TimeUnit.MILLISECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+
+ start = System.nanoTime();
+ Integer value = (Integer) map.get(new Integer(500));
+ System.out.println("Value:" + value);
+ System.out.println("Fetch time key:" + TimeUnit.MICROSECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+
+ start = System.nanoTime();
+ Integer key = (Integer) map.getKey(new Integer(501));
+ System.out.println("Key:" + key);
+ System.out.println("Fetch time value:" + TimeUnit.MICROSECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+ }
+
+ @Test
+ public void givenDualHashBidiMap_whenHundredThousandKeys_thenPerformanceNoted() {
+ System.out.println("**DualHashBidiMap**");
+ BidiMap map = new DualHashBidiMap<>();
+ start = System.nanoTime();
+ for (int i = 0; i < 100000; i++) {
+ Integer key = new Integer(i);
+ Integer value = new Integer(i + 1);
+ map.put(key, value);
+ }
+ System.out.println("Insertion time:" + TimeUnit.MILLISECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+
+ start = System.nanoTime();
+ Integer value = (Integer) map.get(new Integer(500));
+ System.out.println("Value:" + value);
+ System.out.println("Fetch time key:" + TimeUnit.MICROSECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+
+ start = System.nanoTime();
+ Integer key = (Integer) map.getKey(new Integer(501));
+ System.out.println("Key:" + key);
+ System.out.println("Fetch time value:" + TimeUnit.MICROSECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+ }
+
+}
\ No newline at end of file
diff --git a/libraries-6/src/test/java/com/baeldung/guava/GuavaUnitTest.java b/libraries-6/src/test/java/com/baeldung/guava/GuavaUnitTest.java
new file mode 100644
index 0000000000..c0501f761e
--- /dev/null
+++ b/libraries-6/src/test/java/com/baeldung/guava/GuavaUnitTest.java
@@ -0,0 +1,143 @@
+package com.baeldung.guava;
+
+import static org.junit.Assert.assertArrayEquals;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import java.util.Arrays;
+import java.util.List;
+import java.util.concurrent.TimeUnit;
+
+import org.junit.Test;
+
+import com.google.common.collect.ArrayListMultimap;
+import com.google.common.collect.BiMap;
+import com.google.common.collect.HashBasedTable;
+import com.google.common.collect.HashBiMap;
+import com.google.common.collect.Multimap;
+import com.google.common.collect.Table;
+
+public class GuavaUnitTest {
+ private final static BiMap daysOfWeek = HashBiMap.create();
+ private final static Multimap groceryCart = ArrayListMultimap.create();
+ private final static Table cityCoordinates = HashBasedTable.create();
+ private final static Table movies = HashBasedTable.create();
+ private long start;
+
+ static {
+ daysOfWeek.put(1, "Monday");
+ daysOfWeek.put(2, "Tuesday");
+ daysOfWeek.put(3, "Wednesday");
+ daysOfWeek.put(4, "Thursday");
+ daysOfWeek.put(5, "Friday");
+ daysOfWeek.put(6, "Saturday");
+ daysOfWeek.put(7, "Sunday");
+
+ groceryCart.put("Fruits", "Apple");
+ groceryCart.put("Fruits", "Grapes");
+ groceryCart.put("Fruits", "Strawberries");
+ groceryCart.put("Vegetables", "Spinach");
+ groceryCart.put("Vegetables", "Cabbage");
+
+ cityCoordinates.put("40.7128° N", "74.0060° W", "New York");
+ cityCoordinates.put("48.8566° N", "2.3522° E", "Paris");
+ cityCoordinates.put("19.0760° N", "72.8777° E", "Mumbai");
+
+ movies.put("Tom Hanks", "Meg Ryan", "You've Got Mail");
+ movies.put("Tom Hanks", "Catherine Zeta-Jones", "The Terminal");
+ movies.put("Bradley Cooper", "Lady Gaga", "A Star is Born");
+ movies.put("Keenu Reaves", "Sandra Bullock", "Speed");
+ movies.put("Tom Hanks", "Sandra Bullock", "Extremely Loud & Incredibly Close");
+ }
+
+ @Test
+ public void givenBiMap_whenValue_thenKeyReturned() {
+ assertEquals(Integer.valueOf(7), daysOfWeek.inverse()
+ .get("Sunday"));
+ }
+
+ @Test
+ public void givenBiMap_whenKey_thenValueReturned() {
+ assertEquals("Tuesday", daysOfWeek.get(2));
+ }
+
+ @Test
+ public void givenMultiValuedMap_whenFruitsFetched_thenFruitsReturned() {
+
+ List fruits = Arrays.asList("Apple", "Grapes", "Strawberries");
+ assertEquals(fruits, groceryCart.get("Fruits"));
+ }
+
+ @Test
+ public void givenMultiValuedMap_whenVeggiesFetched_thenVeggiesReturned() {
+ List veggies = Arrays.asList("Spinach", "Cabbage");
+ assertEquals(veggies, groceryCart.get("Vegetables"));
+ }
+
+ @Test
+ public void givenMultiValuedMap_whenFuitsRemoved_thenVeggiesPreserved() {
+
+ assertEquals(5, groceryCart.size());
+
+ groceryCart.remove("Fruits", "Apple");
+ assertEquals(4, groceryCart.size());
+
+ groceryCart.removeAll("Fruits");
+ assertEquals(2, groceryCart.size());
+ }
+
+ @Test
+ public void givenCoordinatesTable_whenFetched_thenOK() {
+
+ List expectedLongitudes = Arrays.asList("74.0060° W", "2.3522° E", "72.8777° E");
+
+ assertArrayEquals(expectedLongitudes.toArray(), cityCoordinates.columnKeySet()
+ .toArray());
+
+ List expectedCities = Arrays.asList("New York", "Paris", "Mumbai");
+
+ assertArrayEquals(expectedCities.toArray(), cityCoordinates.values()
+ .toArray());
+
+ assertTrue(cityCoordinates.rowKeySet()
+ .contains("48.8566° N"));
+
+ }
+
+ @Test
+ public void givenMoviesTable_whenFetched_thenOK() {
+ assertEquals(3, movies.row("Tom Hanks")
+ .size());
+
+ assertEquals(2, movies.column("Sandra Bullock")
+ .size());
+
+ assertEquals("A Star is Born", movies.get("Bradley Cooper", "Lady Gaga"));
+
+ assertTrue(movies.containsValue("Speed"));
+
+ }
+
+ @Test
+ public void givenHashBiMap_whenHundredThousandKeys_thenPerformanceNoted() {
+ BiMap map = HashBiMap.create();
+ start = System.nanoTime();
+ for (int i = 0; i < 100000; i++) {
+ Integer key = new Integer(i);
+ Integer value = new Integer(i + 1);
+ map.put(key, value);
+ }
+ System.out.println("Insertion time:" + TimeUnit.MILLISECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+
+ start = System.nanoTime();
+ Integer value = map.get(new Integer(500));
+ System.out.println("Value:" + value);
+ System.out.println("Fetch time key:" + TimeUnit.MICROSECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+
+ start = System.nanoTime();
+ Integer key = map.inverse()
+ .get(new Integer(501));
+ System.out.println("Key:" + key);
+ System.out.println("Fetch time value:" + TimeUnit.MICROSECONDS.convert(System.nanoTime() - start, TimeUnit.NANOSECONDS));
+ }
+}
\ No newline at end of file
diff --git a/libraries-apache-commons/pom.xml b/libraries-apache-commons/pom.xml
index 74adddabcf..08dddac880 100644
--- a/libraries-apache-commons/pom.xml
+++ b/libraries-apache-commons/pom.xml
@@ -65,7 +65,6 @@
- 3.6
1.1
1.9.3
1.2
diff --git a/libraries-data-2/README.md b/libraries-data-2/README.md
index a8f2a0cb37..893d3e64e8 100644
--- a/libraries-data-2/README.md
+++ b/libraries-data-2/README.md
@@ -4,7 +4,7 @@ This module contains articles about libraries for data processing in Java.
### Relevant articles
- [Introduction to Apache Flink with Java](https://www.baeldung.com/apache-flink)
-- [Guide to the HyperLogLog Algorithm](https://www.baeldung.com/java-hyperloglog)
+- [Guide to the HyperLogLog Algorithm in Java](https://www.baeldung.com/java-hyperloglog)
- [Introduction to Conflict-Free Replicated Data Types](https://www.baeldung.com/java-conflict-free-replicated-data-types)
- [Introduction to javax.measure](https://www.baeldung.com/javax-measure)
- [A Guide to Infinispan in Java](https://www.baeldung.com/infinispan)
diff --git a/libraries-data/pom.xml b/libraries-data/pom.xml
index 95d771ce4e..5adb490e96 100644
--- a/libraries-data/pom.xml
+++ b/libraries-data/pom.xml
@@ -80,7 +80,7 @@
commons-io
commons-io
- ${commons.io.version}
+ ${commons-io.version}
provided
@@ -165,7 +165,6 @@
2.3
1.2
- 2.1
3.0.1
1.2.2
1.0.0
diff --git a/libraries-http-2/README.md b/libraries-http-2/README.md
index 5ba45eb4a9..c0d6e76f1b 100644
--- a/libraries-http-2/README.md
+++ b/libraries-http-2/README.md
@@ -6,5 +6,6 @@ This module contains articles about HTTP libraries.
- [Jetty ReactiveStreams HTTP Client](https://www.baeldung.com/jetty-reactivestreams-http-client)
- [Decode an OkHttp JSON Response](https://www.baeldung.com/okhttp-json-response)
+- [Retrofit 2 – Dynamic URL](https://www.baeldung.com/retrofit-dynamic-url)
- More articles [[<-- prev]](/libraries-http)
diff --git a/libraries-http-2/pom.xml b/libraries-http-2/pom.xml
index 3c0af51131..d0bdb26bd4 100644
--- a/libraries-http-2/pom.xml
+++ b/libraries-http-2/pom.xml
@@ -66,16 +66,28 @@
reactive-streams
${reactive.stream.version}
+
+
+
+ com.squareup.retrofit2
+ retrofit
+ ${retrofit.version}
+
+
+ com.squareup.retrofit2
+ converter-gson
+ ${retrofit.version}
+
3.14.2
2.8.5
3.14.2
-
1.0.3
9.4.19.v20190610
2.2.11
+ 2.3.0
5.1.9.RELEASE
1.0.3
3.2.12.RELEASE
diff --git a/libraries-http-2/src/main/java/com/baeldung/retrofit/dynamic/GitHubDynamicApi.java b/libraries-http-2/src/main/java/com/baeldung/retrofit/dynamic/GitHubDynamicApi.java
new file mode 100644
index 0000000000..5356c12b26
--- /dev/null
+++ b/libraries-http-2/src/main/java/com/baeldung/retrofit/dynamic/GitHubDynamicApi.java
@@ -0,0 +1,19 @@
+package com.baeldung.retrofit.dynamic;
+
+import com.baeldung.retrofit.models.Contributor;
+import com.baeldung.retrofit.models.Repository;
+import retrofit2.Call;
+import retrofit2.http.GET;
+import retrofit2.http.Path;
+import retrofit2.http.Url;
+
+import java.util.List;
+
+public interface GitHubDynamicApi {
+
+ @GET
+ Call> reposList(@Url String url);
+
+ @GET("{fullUrl}")
+ Call> contributorsList(@Path(value = "fullUrl", encoded = true) String fullUrl);
+}
diff --git a/libraries-http-2/src/main/java/com/baeldung/retrofit/dynamic/GitHubDynamicApiApp.java b/libraries-http-2/src/main/java/com/baeldung/retrofit/dynamic/GitHubDynamicApiApp.java
new file mode 100644
index 0000000000..06f6b3cef7
--- /dev/null
+++ b/libraries-http-2/src/main/java/com/baeldung/retrofit/dynamic/GitHubDynamicApiApp.java
@@ -0,0 +1,13 @@
+package com.baeldung.retrofit.dynamic;
+
+import java.io.IOException;
+import java.util.List;
+
+public class GitHubDynamicApiApp {
+
+ public static void main(String[] args) throws IOException {
+ String url = "https://api.github.com/users/eugenp/repos";
+ List topContributors = new GitHubDynamicApiService().getTopContributors(url);
+ topContributors.forEach(System.out::println);
+ }
+}
diff --git a/libraries-http-2/src/main/java/com/baeldung/retrofit/dynamic/GitHubDynamicApiService.java b/libraries-http-2/src/main/java/com/baeldung/retrofit/dynamic/GitHubDynamicApiService.java
new file mode 100644
index 0000000000..cb8e95f2d5
--- /dev/null
+++ b/libraries-http-2/src/main/java/com/baeldung/retrofit/dynamic/GitHubDynamicApiService.java
@@ -0,0 +1,44 @@
+package com.baeldung.retrofit.dynamic;
+
+import com.baeldung.retrofit.models.Contributor;
+import com.baeldung.retrofit.models.Repository;
+import retrofit2.Retrofit;
+import retrofit2.converter.gson.GsonConverterFactory;
+
+import java.io.IOException;
+import java.util.Collections;
+import java.util.List;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+class GitHubDynamicApiService {
+
+ private GitHubDynamicApi gitHubDynamicApi;
+
+ GitHubDynamicApiService() {
+ Retrofit retrofit = new Retrofit.Builder().baseUrl("https://api.github.com/").addConverterFactory(GsonConverterFactory.create()).build();
+
+ gitHubDynamicApi = retrofit.create(GitHubDynamicApi.class);
+ }
+
+ List getTopContributors(String url) throws IOException {
+ List repos = gitHubDynamicApi.reposList(url).execute().body();
+
+ repos = repos != null ? repos : Collections.emptyList();
+
+ return repos.stream().flatMap(repo -> getContributors("repos/eugenp/"+repo+"/contributors")).sorted((a, b) -> b.getContributions() - a.getContributions()).map(com.baeldung.retrofit.models.Contributor::getName).distinct().sorted().collect(Collectors.toList());
+ }
+
+ private Stream getContributors(String fullUrl) {
+ List contributors = null;
+ try {
+ contributors = gitHubDynamicApi.contributorsList(fullUrl).execute().body();
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
+
+ contributors = contributors != null ? contributors : Collections.emptyList();
+
+ return contributors.stream().filter(c -> c.getContributions() > 100);
+ }
+}
diff --git a/libraries-http-2/src/main/java/com/baeldung/retrofit/models/Contributor.java b/libraries-http-2/src/main/java/com/baeldung/retrofit/models/Contributor.java
new file mode 100644
index 0000000000..f98b19de96
--- /dev/null
+++ b/libraries-http-2/src/main/java/com/baeldung/retrofit/models/Contributor.java
@@ -0,0 +1,33 @@
+package com.baeldung.retrofit.models;
+
+import com.google.gson.annotations.SerializedName;
+
+public class Contributor {
+
+ @SerializedName("login")
+ private String name;
+
+ private Integer contributions;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public Integer getContributions() {
+ return contributions;
+ }
+
+ public void setContributions(Integer contributions) {
+ this.contributions = contributions;
+ }
+
+ @Override
+ public String toString() {
+ return "Contributer [name=" + name + ", contributions=" + contributions + "]";
+ }
+
+}
diff --git a/libraries-http-2/src/main/java/com/baeldung/retrofit/models/Repository.java b/libraries-http-2/src/main/java/com/baeldung/retrofit/models/Repository.java
new file mode 100644
index 0000000000..6bc91eb772
--- /dev/null
+++ b/libraries-http-2/src/main/java/com/baeldung/retrofit/models/Repository.java
@@ -0,0 +1,30 @@
+package com.baeldung.retrofit.models;
+
+public class Repository {
+
+ private String name;
+
+ private String description;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getDescription() {
+ return description;
+ }
+
+ public void setDescription(String description) {
+ this.description = description;
+ }
+
+ @Override
+ public String toString() {
+ return "Repository [name=" + name + ", description=" + description + "]";
+ }
+
+}
diff --git a/kotlin-js/src/main/resources/logback.xml b/libraries-http-2/src/main/resources/logback.xml
similarity index 100%
rename from kotlin-js/src/main/resources/logback.xml
rename to libraries-http-2/src/main/resources/logback.xml
diff --git a/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/AbstractUnitTest.java b/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/AbstractUnitTest.java
index 4a3e67a7c5..876586032a 100644
--- a/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/AbstractUnitTest.java
+++ b/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/AbstractUnitTest.java
@@ -3,23 +3,16 @@ package com.baeldung.jetty.httpclient;
import org.eclipse.jetty.client.HttpClient;
import org.eclipse.jetty.server.Handler;
import org.eclipse.jetty.server.Server;
-import org.junit.After;
-import org.junit.Before;
+import org.junit.jupiter.api.AfterAll;
+import org.junit.jupiter.api.BeforeAll;
public abstract class AbstractUnitTest {
- protected HttpClient httpClient;
- protected Server server;
+ protected static HttpClient httpClient;
+ protected static Server server;
protected static final String CONTENT = "Hello World!";
- protected final int port = 9080;
-
- @Before
- public void init() {
- startServer(new RequestHandler());
- startClient();
- }
- private void startClient() {
+ protected static void startClient() {
httpClient = new HttpClient();
try {
httpClient.start();
@@ -28,7 +21,7 @@ public abstract class AbstractUnitTest {
}
}
- private void startServer(Handler handler) {
+ protected static void startServer(Handler handler, int port) {
server = new Server(port);
server.setHandler(handler);
try {
@@ -37,18 +30,9 @@ public abstract class AbstractUnitTest {
e.printStackTrace();
}
}
-
- @After
- public void dispose() throws Exception {
- if (httpClient != null) {
- httpClient.stop();
- }
- if (server != null) {
- server.stop();
- }
- }
-
- protected String uri() {
+
+ protected String uri(int port) {
return "http://localhost:" + port;
}
+
}
\ No newline at end of file
diff --git a/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/ProjectReactorUnitTest.java b/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/ProjectReactorUnitTest.java
index 6d79773609..db27ea1c89 100644
--- a/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/ProjectReactorUnitTest.java
+++ b/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/ProjectReactorUnitTest.java
@@ -4,18 +4,29 @@ import org.eclipse.jetty.client.api.Request;
import org.eclipse.jetty.http.HttpStatus;
import org.eclipse.jetty.reactive.client.ReactiveRequest;
import org.eclipse.jetty.reactive.client.ReactiveResponse;
-import org.junit.Assert;
-import org.junit.Test;
+import static org.junit.jupiter.api.Assertions.*;
+
+import org.junit.jupiter.api.AfterAll;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Test;
import org.reactivestreams.Publisher;
import reactor.core.publisher.Mono;
public class ProjectReactorUnitTest extends AbstractUnitTest {
+ protected static int port = 9080;
+
+ @BeforeAll
+ public static void init() {
+ startServer(new RequestHandler(), port);
+ startClient();
+ }
+
@Test
public void givenReactiveClient_whenRequested_shouldReturn200() throws Exception {
- Request request = httpClient.newRequest(uri());
+ Request request = httpClient.newRequest(uri(port));
ReactiveRequest reactiveRequest = ReactiveRequest.newBuilder(request)
.build();
Publisher publisher = reactiveRequest.response();
@@ -23,8 +34,19 @@ public class ProjectReactorUnitTest extends AbstractUnitTest {
ReactiveResponse response = Mono.from(publisher)
.block();
- Assert.assertNotNull(response);
- Assert.assertEquals(response.getStatus(), HttpStatus.OK_200);
+ assertNotNull(response);
+ assertEquals(response.getStatus(), HttpStatus.OK_200);
}
+
+ @AfterAll
+ public static void dispose() throws Exception {
+ if (httpClient != null) {
+ httpClient.stop();
+ }
+ if (server != null) {
+ server.stop();
+ }
+ }
+
}
diff --git a/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/ReactiveStreamsUnitTest.java b/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/ReactiveStreamsUnitTest.java
index 3db4553c86..494d65e9e1 100644
--- a/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/ReactiveStreamsUnitTest.java
+++ b/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/ReactiveStreamsUnitTest.java
@@ -4,16 +4,27 @@ import org.eclipse.jetty.client.api.Request;
import org.eclipse.jetty.http.HttpStatus;
import org.eclipse.jetty.reactive.client.ReactiveRequest;
import org.eclipse.jetty.reactive.client.ReactiveResponse;
-import org.junit.Assert;
-import org.junit.Test;
+import static org.junit.jupiter.api.Assertions.*;
+
+import org.junit.jupiter.api.AfterAll;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Test;
import org.reactivestreams.Publisher;
public class ReactiveStreamsUnitTest extends AbstractUnitTest {
+
+ protected static int port = 9081;
+
+ @BeforeAll
+ public static void init() {
+ startServer(new RequestHandler(), port);
+ startClient();
+ }
@Test
public void givenReactiveClient_whenRequested_shouldReturn200() throws Exception {
- Request request = httpClient.newRequest(uri());
+ Request request = httpClient.newRequest(uri(port));
ReactiveRequest reactiveRequest = ReactiveRequest.newBuilder(request)
.build();
Publisher publisher = reactiveRequest.response();
@@ -21,8 +32,18 @@ public class ReactiveStreamsUnitTest extends AbstractUnitTest {
BlockingSubscriber subscriber = new BlockingSubscriber();
publisher.subscribe(subscriber);
ReactiveResponse response = subscriber.block();
- Assert.assertNotNull(response);
- Assert.assertEquals(response.getStatus(), HttpStatus.OK_200);
+ assertNotNull(response);
+ assertEquals(response.getStatus(), HttpStatus.OK_200);
+ }
+
+ @AfterAll
+ public static void dispose() throws Exception {
+ if (httpClient != null) {
+ httpClient.stop();
+ }
+ if (server != null) {
+ server.stop();
+ }
}
}
diff --git a/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/RxJava2UnitTest.java b/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/RxJava2UnitTest.java
index dabd768702..a819eec475 100644
--- a/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/RxJava2UnitTest.java
+++ b/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/RxJava2UnitTest.java
@@ -10,8 +10,11 @@ import org.eclipse.jetty.http.HttpStatus;
import org.eclipse.jetty.reactive.client.ReactiveRequest;
import org.eclipse.jetty.reactive.client.ReactiveRequest.Event.Type;
import org.eclipse.jetty.reactive.client.ReactiveResponse;
-import org.junit.Assert;
-import org.junit.Test;
+import static org.junit.jupiter.api.Assertions.*;
+
+import org.junit.jupiter.api.AfterAll;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Test;
import org.reactivestreams.Publisher;
import org.springframework.http.MediaType;
@@ -19,11 +22,19 @@ import io.reactivex.Flowable;
import io.reactivex.Single;
public class RxJava2UnitTest extends AbstractUnitTest {
+
+ protected static int port = 9082;
+
+ @BeforeAll
+ public static void init() {
+ startServer(new RequestHandler(), port);
+ startClient();
+ }
@Test
public void givenReactiveClient_whenRequestedWithBody_ShouldReturnBody() throws Exception {
- Request request = httpClient.newRequest(uri());
+ Request request = httpClient.newRequest(uri(port));
ReactiveRequest reactiveRequest = ReactiveRequest.newBuilder(request)
.content(ReactiveRequest.Content.fromString(CONTENT, MediaType.TEXT_PLAIN_VALUE, UTF_8))
.build();
@@ -32,12 +43,12 @@ public class RxJava2UnitTest extends AbstractUnitTest {
String responseContent = Single.fromPublisher(publisher)
.blockingGet();
- Assert.assertEquals(CONTENT, responseContent);
+ assertEquals(CONTENT, responseContent);
}
@Test
public void givenReactiveClient_whenRequested_ShouldPrintEvents() throws Exception {
- ReactiveRequest request = ReactiveRequest.newBuilder(httpClient, uri())
+ ReactiveRequest request = ReactiveRequest.newBuilder(httpClient, uri(port))
.content(ReactiveRequest.Content.fromString(CONTENT, MediaType.TEXT_PLAIN_VALUE, UTF_8))
.build();
Publisher requestEvents = request.requestEvents();
@@ -58,10 +69,20 @@ public class RxJava2UnitTest extends AbstractUnitTest {
int actualStatus = response.blockingGet()
.getStatus();
- Assert.assertEquals(6, requestEventTypes.size());
- Assert.assertEquals(5, responseEventTypes.size());
+ assertEquals(6, requestEventTypes.size());
+ assertEquals(5, responseEventTypes.size());
- Assert.assertEquals(actualStatus, HttpStatus.OK_200);
+ assertEquals(actualStatus, HttpStatus.OK_200);
+ }
+
+ @AfterAll
+ public static void dispose() throws Exception {
+ if (httpClient != null) {
+ httpClient.stop();
+ }
+ if (server != null) {
+ server.stop();
+ }
}
}
\ No newline at end of file
diff --git a/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/SpringWebFluxUnitTest.java b/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/SpringWebFluxUnitTest.java
index 4a1a9bb2b5..f14fc38e1d 100644
--- a/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/SpringWebFluxUnitTest.java
+++ b/libraries-http-2/src/test/java/com/baeldung/jetty/httpclient/SpringWebFluxUnitTest.java
@@ -1,8 +1,11 @@
package com.baeldung.jetty.httpclient;
import org.eclipse.jetty.client.HttpClient;
-import org.junit.Assert;
-import org.junit.Test;
+import static org.junit.jupiter.api.Assertions.*;
+
+import org.junit.jupiter.api.AfterAll;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Test;
import org.springframework.http.MediaType;
import org.springframework.http.client.reactive.ClientHttpConnector;
import org.springframework.http.client.reactive.JettyClientHttpConnector;
@@ -12,25 +15,40 @@ import org.springframework.web.reactive.function.client.WebClient;
import reactor.core.publisher.Mono;
public class SpringWebFluxUnitTest extends AbstractUnitTest {
-
+
+ protected static int port = 9083;
+
+ @BeforeAll
+ public static void init() {
+ startServer(new RequestHandler(), port);
+ startClient();
+ }
+
@Test
public void givenReactiveClient_whenRequested_shouldReturnResponse() throws Exception {
-
- HttpClient httpClient = new HttpClient();
- httpClient.start();
ClientHttpConnector clientConnector = new JettyClientHttpConnector(httpClient);
WebClient client = WebClient.builder()
.clientConnector(clientConnector)
.build();
String responseContent = client.post()
- .uri(uri())
+ .uri(uri(port))
.contentType(MediaType.TEXT_PLAIN)
.body(BodyInserters.fromPublisher(Mono.just(CONTENT), String.class))
.retrieve()
.bodyToMono(String.class)
.block();
- Assert.assertNotNull(responseContent);
- Assert.assertEquals(CONTENT, responseContent);
+ assertNotNull(responseContent);
+ assertEquals(CONTENT, responseContent);
+ }
+
+ @AfterAll
+ public static void dispose() throws Exception {
+ if (httpClient != null) {
+ httpClient.stop();
+ }
+ if (server != null) {
+ server.stop();
+ }
}
}
\ No newline at end of file
diff --git a/libraries-security/pom.xml b/libraries-security/pom.xml
index 202b3b8763..3b812f0d2c 100644
--- a/libraries-security/pom.xml
+++ b/libraries-security/pom.xml
@@ -21,7 +21,7 @@
org.springframework.security.oauth
spring-security-oauth2
- ${spring-boot.version}
+ ${spring-security-oauth2.version}
org.springframework
@@ -88,6 +88,7 @@
1.58
0.1.55
2.5.1
+ 2.4.0.RELEASE
diff --git a/machine-learning/README.md b/machine-learning/README.md
deleted file mode 100644
index 80f2d2c6cd..0000000000
--- a/machine-learning/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-### Relevant Articles:
-
-- [Introduction to Supervised Learning in Kotlin](https://www.baeldung.com/kotlin-supervised-learning)
diff --git a/machine-learning/pom.xml b/machine-learning/pom.xml
deleted file mode 100644
index 842e488985..0000000000
--- a/machine-learning/pom.xml
+++ /dev/null
@@ -1,163 +0,0 @@
-
-
- 4.0.0
- machine-learning
- 1.0-SNAPSHOT
- machine-learning
- jar
-
-
- com.baeldung
- parent-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
- ${kotlin.version}
-
-
- org.nd4j
- nd4j-native-platform
- ${dl4j.version}
-
-
- org.deeplearning4j
- deeplearning4j-core
- ${dl4j.version}
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
- ${kotlin.version}
-
-
- org.jetbrains.kotlin
- kotlin-test
- ${kotlin.version}
- test
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
- ${kotlin.version}
-
-
-
-
- src/main/kotlin
- src/test
-
-
-
-
- maven-clean-plugin
- ${clean.plugin.version}
-
-
-
- maven-resources-plugin
- ${resources.plugin.version}
-
-
- maven-compiler-plugin
- ${compiler.plugin.version}
-
-
- maven-surefire-plugin
- ${surefire.plugin.version}
-
-
- maven-jar-plugin
- ${jar.plugin.version}
-
-
- maven-install-plugin
- ${install.plugin.version}
-
-
- maven-deploy-plugin
- ${deploy.plugin.version}
-
-
-
- maven-site-plugin
- ${site.plugin.version}
-
-
- maven-project-info-reports-plugin
- ${report.plugin.version}
-
-
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-plugin
- ${kotlin.version}
-
-
- compile
- compile
-
- compile
-
-
-
- test-compile
- test-compile
-
- test-compile
-
-
-
-
- 1.8
-
-
-
- org.apache.maven.plugins
- maven-compiler-plugin
-
-
- compile
- compile
-
- compile
-
-
-
- testCompile
- test-compile
-
- testCompile
-
-
-
-
-
-
-
-
- UTF-8
- 1.7
- 1.7
- 1.3.50
- 0.9.1
- 3.1.0
- 3.0.2
- 3.0.2
- 3.8.0
- 2.22.1
- 2.5.2
- 2.8.2
- 3.7.1
- 3.0.0
-
-
-
diff --git a/machine-learning/src/main/kotlin/com/baeldung/cnn/ConvolutionalNeuralNetwork.kt b/machine-learning/src/main/kotlin/com/baeldung/cnn/ConvolutionalNeuralNetwork.kt
deleted file mode 100644
index b77fe273ae..0000000000
--- a/machine-learning/src/main/kotlin/com/baeldung/cnn/ConvolutionalNeuralNetwork.kt
+++ /dev/null
@@ -1,117 +0,0 @@
-package com.baeldung.cnn
-
-import org.datavec.api.records.reader.impl.collection.ListStringRecordReader
-import org.datavec.api.split.ListStringSplit
-import org.deeplearning4j.datasets.datavec.RecordReaderDataSetIterator
-import org.deeplearning4j.eval.Evaluation
-import org.deeplearning4j.nn.conf.NeuralNetConfiguration
-import org.deeplearning4j.nn.conf.inputs.InputType
-import org.deeplearning4j.nn.conf.layers.*
-import org.deeplearning4j.nn.multilayer.MultiLayerNetwork
-import org.deeplearning4j.nn.weights.WeightInit
-import org.nd4j.linalg.activations.Activation
-import org.nd4j.linalg.learning.config.Adam
-import org.nd4j.linalg.lossfunctions.LossFunctions
-
-object ConvolutionalNeuralNetwork {
-
- @JvmStatic
- fun main(args: Array) {
- val dataset = ZalandoMNISTDataSet().load()
- dataset.shuffle()
- val trainDatasetIterator = createDatasetIterator(dataset.subList(0, 50_000))
- val testDatasetIterator = createDatasetIterator(dataset.subList(50_000, 60_000))
-
- val cnn = buildCNN()
- learning(cnn, trainDatasetIterator)
- testing(cnn, testDatasetIterator)
- }
-
- private fun createDatasetIterator(dataset: MutableList>): RecordReaderDataSetIterator {
- val listStringRecordReader = ListStringRecordReader()
- listStringRecordReader.initialize(ListStringSplit(dataset))
- return RecordReaderDataSetIterator(listStringRecordReader, 128, 28 * 28, 10)
- }
-
- private fun buildCNN(): MultiLayerNetwork {
- val multiLayerNetwork = MultiLayerNetwork(NeuralNetConfiguration.Builder()
- .seed(123)
- .l2(0.0005)
- .updater(Adam())
- .weightInit(WeightInit.XAVIER)
- .list()
- .layer(0, buildInitialConvolutionLayer())
- .layer(1, buildBatchNormalizationLayer())
- .layer(2, buildPoolingLayer())
- .layer(3, buildConvolutionLayer())
- .layer(4, buildBatchNormalizationLayer())
- .layer(5, buildPoolingLayer())
- .layer(6, buildDenseLayer())
- .layer(7, buildBatchNormalizationLayer())
- .layer(8, buildDenseLayer())
- .layer(9, buildOutputLayer())
- .setInputType(InputType.convolutionalFlat(28, 28, 1))
- .backprop(true)
- .build())
- multiLayerNetwork.init()
- return multiLayerNetwork
- }
-
- private fun buildOutputLayer(): OutputLayer? {
- return OutputLayer.Builder(LossFunctions.LossFunction.NEGATIVELOGLIKELIHOOD)
- .nOut(10)
- .activation(Activation.SOFTMAX)
- .build()
- }
-
- private fun buildDenseLayer(): DenseLayer? {
- return DenseLayer.Builder().activation(Activation.RELU)
- .nOut(500)
- .dropOut(0.5)
- .build()
- }
-
- private fun buildPoolingLayer(): SubsamplingLayer? {
- return SubsamplingLayer.Builder(SubsamplingLayer.PoolingType.MAX)
- .kernelSize(2, 2)
- .stride(2, 2)
- .build()
- }
-
- private fun buildBatchNormalizationLayer() = BatchNormalization.Builder().build()
-
- private fun buildConvolutionLayer(): ConvolutionLayer? {
- return ConvolutionLayer.Builder(5, 5)
- .stride(1, 1) // nIn need not specified in later layers
- .nOut(50)
- .activation(Activation.IDENTITY)
- .build()
- }
-
- private fun buildInitialConvolutionLayer(): ConvolutionLayer? {
- return ConvolutionLayer.Builder(5, 5)
- .nIn(1)
- .stride(1, 1)
- .nOut(20)
- .activation(Activation.IDENTITY)
- .build()
- }
-
- private fun learning(cnn: MultiLayerNetwork, trainSet: RecordReaderDataSetIterator) {
- for (i in 0 until 10) {
- cnn.fit(trainSet)
- }
- }
-
- private fun testing(cnn: MultiLayerNetwork, testSet: RecordReaderDataSetIterator) {
- val evaluation = Evaluation(10)
- while (testSet.hasNext()) {
- val next = testSet.next()
- val output = cnn.output(next.features)
- evaluation.eval(next.labels, output)
- }
-
- println(evaluation.stats())
- println(evaluation.confusionToString())
- }
-}
\ No newline at end of file
diff --git a/machine-learning/src/main/kotlin/com/baeldung/cnn/ZalandoMNISTDataSet.kt b/machine-learning/src/main/kotlin/com/baeldung/cnn/ZalandoMNISTDataSet.kt
deleted file mode 100644
index f29c8f2d0b..0000000000
--- a/machine-learning/src/main/kotlin/com/baeldung/cnn/ZalandoMNISTDataSet.kt
+++ /dev/null
@@ -1,45 +0,0 @@
-package com.baeldung.cnn
-
-import java.io.File
-import java.nio.ByteBuffer
-import java.util.*
-import java.util.stream.Collectors
-import kotlin.streams.asStream
-
-class ZalandoMNISTDataSet {
- private val OFFSET_SIZE = 4 //in bytes
- private val NUM_ITEMS_OFFSET = 4
- private val ITEMS_SIZE = 4
- private val ROWS = 28
- private val COLUMNS = 28
- private val IMAGE_OFFSET = 16
- private val IMAGE_SIZE = ROWS * COLUMNS
-
- fun load(): MutableList> {
- val labelsFile = File("machine-learning/src/main/resources/train-labels-idx1-ubyte")
- val imagesFile = File("machine-learning/src/main/resources/train-images-idx3-ubyte")
-
- val labelBytes = labelsFile.readBytes()
- val imageBytes = imagesFile.readBytes()
-
- val byteLabelCount = Arrays.copyOfRange(labelBytes, NUM_ITEMS_OFFSET, NUM_ITEMS_OFFSET + ITEMS_SIZE)
- val numberOfLabels = ByteBuffer.wrap(byteLabelCount).int
-
- val list = mutableListOf>()
-
- for (i in 0 until numberOfLabels) {
- val label = labelBytes[OFFSET_SIZE + ITEMS_SIZE + i]
- val startBoundary = i * IMAGE_SIZE + IMAGE_OFFSET
- val endBoundary = i * IMAGE_SIZE + IMAGE_OFFSET + IMAGE_SIZE
- val imageData = Arrays.copyOfRange(imageBytes, startBoundary, endBoundary)
-
- val imageDataList = imageData.iterator()
- .asSequence()
- .asStream().map { b -> b.toString() }
- .collect(Collectors.toList())
- imageDataList.add(label.toString())
- list.add(imageDataList)
- }
- return list
- }
-}
\ No newline at end of file
diff --git a/machine-learning/src/main/kotlin/com/baeldung/simplelinearregression/SimpleLinearRegression.kt b/machine-learning/src/main/kotlin/com/baeldung/simplelinearregression/SimpleLinearRegression.kt
deleted file mode 100644
index 5ab520924e..0000000000
--- a/machine-learning/src/main/kotlin/com/baeldung/simplelinearregression/SimpleLinearRegression.kt
+++ /dev/null
@@ -1,31 +0,0 @@
-package com.baeldung.simplelinearregression
-
-import kotlin.math.pow
-
-class SimpleLinearRegression(private val xs: List, private val ys: List) {
- var slope: Double = 0.0
- var yIntercept: Double = 0.0
-
- init {
- val covariance = calculateCovariance(xs, ys)
- val variance = calculateVariance(xs)
- slope = calculateSlope(covariance, variance)
- yIntercept = calculateYIntercept(ys, slope, xs)
- }
-
- fun predict(independentVariable: Double) = slope * independentVariable + yIntercept
-
- fun calculateRSquared(): Double {
- val sst = ys.sumByDouble { y -> (y - ys.average()).pow(2) }
- val ssr = xs.zip(ys) { x, y -> (y - predict(x.toDouble())).pow(2) }.sum()
- return (sst - ssr) / sst
- }
-
- private fun calculateYIntercept(ys: List, slope: Double, xs: List) = ys.average() - slope * xs.average()
-
- private fun calculateSlope(covariance: Double, variance: Double) = covariance / variance
-
- private fun calculateCovariance(xs: List, ys: List) = xs.zip(ys) { x, y -> (x - xs.average()) * (y - ys.average()) }.sum()
-
- private fun calculateVariance(xs: List) = xs.sumByDouble { x -> (x - xs.average()).pow(2) }
-}
\ No newline at end of file
diff --git a/machine-learning/src/main/resources/train-labels-idx1-ubyte b/machine-learning/src/main/resources/train-labels-idx1-ubyte
deleted file mode 100644
index 30424ca2ea..0000000000
Binary files a/machine-learning/src/main/resources/train-labels-idx1-ubyte and /dev/null differ
diff --git a/machine-learning/src/test/com/baeldung/simplelinearregression/SimpleLinearRegressionUnitTest.kt b/machine-learning/src/test/com/baeldung/simplelinearregression/SimpleLinearRegressionUnitTest.kt
deleted file mode 100644
index a741639d50..0000000000
--- a/machine-learning/src/test/com/baeldung/simplelinearregression/SimpleLinearRegressionUnitTest.kt
+++ /dev/null
@@ -1,40 +0,0 @@
-package com.baeldung.simplelinearregression
-
-import org.junit.Assert.assertEquals
-import org.junit.jupiter.api.Test
-
-class SimpleLinearRegressionUnitTest {
- @Test
- fun givenAProperDataSetWhenFedToASimpleLinearRegressionModelThenItPredictsCorrectly() {
- val xs = arrayListOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
- val ys = arrayListOf(25, 35, 49, 60, 75, 90, 115, 130, 150, 200)
-
- val model = SimpleLinearRegression(xs, ys)
-
- val predictionOne = model.predict(2.5)
- assertEquals(38.99, predictionOne, 0.01)
-
- val predictionTwo = model.predict(7.5)
- assertEquals(128.84, predictionTwo, 0.01)
- }
-
- @Test
- fun givenAPredictableDataSetWhenCalculatingTheLossFunctionThenTheModelIsConsideredReliable() {
- val xs = arrayListOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
- val ys = arrayListOf(25, 35, 49, 60, 75, 90, 115, 130, 150, 200)
-
- val model = SimpleLinearRegression(xs, ys)
-
- assertEquals(0.95, model.calculateRSquared(), 0.01)
- }
-
- @Test
- fun givenAnUnpredictableDataSetWhenCalculatingTheLossFunctionThenTheModelIsConsideredUnreliable() {
- val xs = arrayListOf(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
- val ys = arrayListOf(200, 0, 200, 0, 0, 0, -115, 1000, 0, 1)
-
- val model = SimpleLinearRegression(xs, ys)
-
- assertEquals(0.01, model.calculateRSquared(), 0.01)
- }
-}
\ No newline at end of file
diff --git a/maven-modules/README.md b/maven-modules/README.md
index 1ef664f879..19f0473a58 100644
--- a/maven-modules/README.md
+++ b/maven-modules/README.md
@@ -7,3 +7,4 @@ This module contains articles about Apache Maven. Please refer to its submodules
- [Apache Maven Tutorial](https://www.baeldung.com/maven)
- [Apache Maven Standard Directory Layout](https://www.baeldung.com/maven-directory-structure)
- [Multi-Module Project with Maven](https://www.baeldung.com/maven-multi-module)
+- [Maven Packaging Types](https://www.baeldung.com/maven-packaging-types)
diff --git a/maven-modules/versions-maven-plugin/original/pom.xml b/maven-modules/versions-maven-plugin/original/pom.xml
index f705dae5c5..c36a5913c2 100644
--- a/maven-modules/versions-maven-plugin/original/pom.xml
+++ b/maven-modules/versions-maven-plugin/original/pom.xml
@@ -74,7 +74,6 @@
1.15
2.3
4.0
- 3.0
1.9.1
2.7
diff --git a/maven-modules/versions-maven-plugin/pom.xml b/maven-modules/versions-maven-plugin/pom.xml
index 3a9134ff40..ff49811430 100644
--- a/maven-modules/versions-maven-plugin/pom.xml
+++ b/maven-modules/versions-maven-plugin/pom.xml
@@ -74,8 +74,8 @@
2.3
2.7
1.9.1
- 3.0
4.0
+ 3.11
\ No newline at end of file
diff --git a/netflix-modules/README.md b/netflix-modules/README.md
index c126bbdf5b..21d6958dab 100644
--- a/netflix-modules/README.md
+++ b/netflix-modules/README.md
@@ -2,3 +2,6 @@
This module contains articles about Netflix.
+### Relevant Articles:
+
+- [Introduction to Netflix Mantis](https://www.baeldung.com/java-netflix-mantis)
diff --git a/parent-boot-2/pom.xml b/parent-boot-2/pom.xml
index dab9f015b3..ace3e538c9 100644
--- a/parent-boot-2/pom.xml
+++ b/parent-boot-2/pom.xml
@@ -82,8 +82,10 @@
3.3.0
1.0.22.RELEASE
- 2.3.3.RELEASE
+ 2.4.0
1.9.1
+
+ 3.4.0
diff --git a/parent-java/pom.xml b/parent-java/pom.xml
index d251adcdd3..9170f45bbe 100644
--- a/parent-java/pom.xml
+++ b/parent-java/pom.xml
@@ -27,7 +27,7 @@
commons-io
commons-io
- ${commons.io.version}
+ ${commons-io.version}
org.openjdk.jmh
@@ -43,7 +43,6 @@
29.0-jre
- 2.6
1.19
2.3.7
2.2
diff --git a/parent-kotlin/README.md b/parent-kotlin/README.md
deleted file mode 100644
index c78ecbac42..0000000000
--- a/parent-kotlin/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-## Parent Kotlin
-
-This is a parent module for all projects using Kotlin
diff --git a/parent-kotlin/pom.xml b/parent-kotlin/pom.xml
deleted file mode 100644
index 947dd20483..0000000000
--- a/parent-kotlin/pom.xml
+++ /dev/null
@@ -1,223 +0,0 @@
-
-
- 4.0.0
- parent-kotlin
- parent-kotlin
- pom
- Parent for all kotlin modules
-
-
- com.baeldung
- parent-modules
- 1.0.0-SNAPSHOT
-
-
-
-
- jcenter
- https://jcenter.bintray.com
-
-
- kotlin-ktor
- https://dl.bintray.com/kotlin/ktor/
-
-
- kotlin-eap
- https://dl.bintray.com/kotlin/kotlin-eap
-
-
- spring-milestone
- Spring Milestone Repository
- https://repo.spring.io/milestone
-
-
-
-
-
- kotlin-eap
- https://dl.bintray.com/kotlin/kotlin-eap
-
-
-
-
-
-
- org.springframework.boot
- spring-boot-dependencies
- ${boot.dependencies.version}
- pom
- import
-
-
-
-
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
-
-
- org.jetbrains.kotlin
- kotlin-stdlib
-
-
- org.jetbrains.kotlin
- kotlin-reflect
-
-
-
- org.jetbrains.kotlinx
- kotlinx-coroutines-core
- ${kotlinx.version}
-
-
-
- io.ktor
- ktor-server-netty
- ${ktor.io.version}
-
-
- io.ktor
- ktor-gson
- ${ktor.io.version}
-
-
- com.fasterxml.jackson.module
- jackson-module-kotlin
-
-
-
- org.jetbrains.kotlin
- kotlin-test-junit
- test
-
-
-
-
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-plugin
- ${kotlin.version}
-
-
- compile
-
- compile
-
-
-
- ${project.basedir}/src/main/kotlin
- ${project.basedir}/src/main/java
-
- ${java.version}
-
- -Xjvm-default=enable
-
-
-
-
- test-compile
-
- test-compile
-
-
-
- ${project.basedir}/src/test/kotlin
- ${project.basedir}/src/test/java
-
- ${java.version}
-
-
-
-
-
- spring
-
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-allopen
- ${kotlin.version}
-
-
-
-
- org.apache.maven.plugins
- maven-compiler-plugin
- ${maven-compiler-plugin.version}
-
- ${java.version}
- ${java.version}
-
-
-
-
- default-compile
- none
-
-
-
- default-testCompile
- none
-
-
- java-compile
- compile
-
- compile
-
-
-
- java-test-compile
- test-compile
-
- testCompile
-
-
-
-
-
- org.apache.maven.plugins
- maven-failsafe-plugin
- ${maven-failsafe-plugin.version}
-
-
- org.junit.platform
- junit-platform-surefire-provider
- ${junit.platform.version}
-
-
-
-
- junit5
-
- integration-test
- verify
-
-
-
- **/*Test5.java
-
-
-
-
-
-
-
-
-
- 1.3.30
- 1.0.0
- 0.9.5
- 3.12.0
- 1.3.2
- 2.2.0.M4
-
-
-
diff --git a/patterns/clean-architecture/README.md b/patterns/clean-architecture/README.md
new file mode 100644
index 0000000000..aad8608447
--- /dev/null
+++ b/patterns/clean-architecture/README.md
@@ -0,0 +1,3 @@
+### Relevant Articles:
+
+- [Clean Architecture with Spring Boot](https://www.baeldung.com/spring-boot-clean-architecture)
diff --git a/patterns/clean-architecture/pom.xml b/patterns/clean-architecture/pom.xml
new file mode 100644
index 0000000000..6e7de78751
--- /dev/null
+++ b/patterns/clean-architecture/pom.xml
@@ -0,0 +1,87 @@
+
+
+ 4.0.0
+ clean-architecture
+ 1.0
+ clean-architecture
+ Project for clean architecture in java
+
+
+ com.baeldung
+ parent-boot-2
+ 0.0.1-SNAPSHOT
+ ../../parent-boot-2
+
+
+
+ 1.8
+
+
+
+
+ com.h2database
+ h2
+ runtime
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.boot
+ spring-boot-starter-data-jpa
+
+
+ org.junit.jupiter
+ junit-jupiter-engine
+ test
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+ org.junit.vintage
+ junit-vintage-engine
+
+
+
+
+ org.mockito
+ mockito-core
+ test
+
+
+ org.junit.platform
+ junit-platform-engine
+
+
+ org.junit.jupiter
+ junit-jupiter-engine
+
+
+ org.junit.jupiter
+ junit-jupiter-api
+
+
+ org.junit.platform
+ junit-platform-runner
+ test
+
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/CleanArchitectureApplication.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/CleanArchitectureApplication.java
new file mode 100644
index 0000000000..ebac2bacf3
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/CleanArchitectureApplication.java
@@ -0,0 +1,40 @@
+package com.baeldung.pattern.cleanarchitecture;
+
+import org.springframework.beans.factory.config.BeanFactoryPostProcessor;
+import org.springframework.beans.factory.support.BeanDefinitionRegistry;
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext;
+import org.springframework.context.ApplicationContext;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.ClassPathBeanDefinitionScanner;
+import org.springframework.core.type.classreading.MetadataReader;
+import org.springframework.core.type.classreading.MetadataReaderFactory;
+import org.springframework.core.type.filter.TypeFilter;
+
+@SpringBootApplication
+public class CleanArchitectureApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(CleanArchitectureApplication.class);
+ }
+
+ @Bean
+ BeanFactoryPostProcessor beanFactoryPostProcessor(ApplicationContext beanRegistry) {
+ return beanFactory -> {
+ genericApplicationContext((BeanDefinitionRegistry) ((AnnotationConfigServletWebServerApplicationContext) beanRegistry).getBeanFactory());
+ };
+ }
+
+ void genericApplicationContext(BeanDefinitionRegistry beanRegistry) {
+ ClassPathBeanDefinitionScanner beanDefinitionScanner = new ClassPathBeanDefinitionScanner(beanRegistry);
+ beanDefinitionScanner.addIncludeFilter(removeModelAndEntitiesFilter());
+ beanDefinitionScanner.scan("com.baeldung.pattern.cleanarchitecture");
+ }
+
+ static TypeFilter removeModelAndEntitiesFilter() {
+ return (MetadataReader mr, MetadataReaderFactory mrf) -> !mr.getClassMetadata()
+ .getClassName()
+ .endsWith("Model");
+ }
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/CommonUser.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/CommonUser.java
new file mode 100644
index 0000000000..c4f105fad5
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/CommonUser.java
@@ -0,0 +1,30 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+class CommonUser implements User {
+
+ String name;
+ String password;
+
+ CommonUser(String name, String password) {
+ this.name = name;
+ this.password = password;
+ }
+
+ CommonUser() {
+ }
+
+ @Override
+ public boolean passwordIsValid() {
+ return password != null && password.length() > 5;
+ }
+
+ @Override
+ public String getName() {
+ return name;
+ }
+
+ @Override
+ public String getPassword() {
+ return password;
+ }
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/CommonUserFactory.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/CommonUserFactory.java
new file mode 100644
index 0000000000..a2b851da94
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/CommonUserFactory.java
@@ -0,0 +1,8 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+class CommonUserFactory implements UserFactory {
+ @Override
+ public User create(String name, String password) {
+ return new CommonUser(name, password);
+ }
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/JpaUser.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/JpaUser.java
new file mode 100644
index 0000000000..20751f282a
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/JpaUser.java
@@ -0,0 +1,21 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+class JpaUser implements UserRegisterDsGateway {
+
+ final JpaUserRepository repository;
+
+ JpaUser(JpaUserRepository repository) {
+ this.repository = repository;
+ }
+
+ @Override
+ public boolean existsByName(String name) {
+ return repository.existsById(name);
+ }
+
+ @Override
+ public void save(UserDsRequestModel requestModel) {
+ UserDataMapper accountDataMapper = new UserDataMapper(requestModel.getName(), requestModel.getPassword(), requestModel.getCreationTime());
+ repository.save(accountDataMapper);
+ }
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/JpaUserRepository.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/JpaUserRepository.java
new file mode 100644
index 0000000000..8565ed7965
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/JpaUserRepository.java
@@ -0,0 +1,8 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+import org.springframework.data.jpa.repository.JpaRepository;
+import org.springframework.stereotype.Repository;
+
+@Repository
+interface JpaUserRepository extends JpaRepository {
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/User.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/User.java
new file mode 100644
index 0000000000..aab652f2a1
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/User.java
@@ -0,0 +1,9 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+interface User {
+ boolean passwordIsValid();
+
+ String getName();
+
+ String getPassword();
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserDataMapper.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserDataMapper.java
new file mode 100644
index 0000000000..44112de8a9
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserDataMapper.java
@@ -0,0 +1,53 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+import java.time.LocalDateTime;
+
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+
+@Entity
+@Table(name = "user")
+class UserDataMapper {
+
+ @Id
+ String name;
+
+ String password;
+
+ LocalDateTime creationTime;
+
+ public UserDataMapper() {
+ }
+
+ public UserDataMapper(String name, String password, LocalDateTime creationTime) {
+ super();
+ this.name = name;
+ this.password = password;
+ this.creationTime = creationTime;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getPassword() {
+ return password;
+ }
+
+ public void setPassword(String password) {
+ this.password = password;
+ }
+
+ public LocalDateTime getCreationTime() {
+ return creationTime;
+ }
+
+ public void setCreationTime(LocalDateTime creationTime) {
+ this.creationTime = creationTime;
+ }
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserDsRequestModel.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserDsRequestModel.java
new file mode 100644
index 0000000000..aa0f0b56d1
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserDsRequestModel.java
@@ -0,0 +1,41 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+import java.time.LocalDateTime;
+
+class UserDsRequestModel {
+
+ String name;
+ String password;
+ LocalDateTime creationTime;
+
+ public UserDsRequestModel(String name, String password, LocalDateTime creationTime) {
+ this.name = name;
+ this.password = password;
+ this.creationTime = creationTime;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getPassword() {
+ return password;
+ }
+
+ public void setPassword(String password) {
+ this.password = password;
+ }
+
+ public LocalDateTime getCreationTime() {
+ return creationTime;
+ }
+
+ public void setCreationTime(LocalDateTime creationTime) {
+ this.creationTime = creationTime;
+ }
+
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserFactory.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserFactory.java
new file mode 100644
index 0000000000..1ff29709be
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserFactory.java
@@ -0,0 +1,5 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+interface UserFactory {
+ User create(String name, String password);
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserInputBoundary.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserInputBoundary.java
new file mode 100644
index 0000000000..e72c30f13c
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserInputBoundary.java
@@ -0,0 +1,5 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+public interface UserInputBoundary {
+ UserResponseModel create(UserRequestModel requestModel);
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserPresenter.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserPresenter.java
new file mode 100644
index 0000000000..45d202643e
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserPresenter.java
@@ -0,0 +1,7 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+interface UserPresenter {
+ UserResponseModel prepareSuccessView(UserResponseModel user);
+
+ UserResponseModel prepareFailView(String error);
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRegisterController.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRegisterController.java
new file mode 100644
index 0000000000..039dc12910
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRegisterController.java
@@ -0,0 +1,20 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RestController;
+
+@RestController
+class UserRegisterController {
+
+ final UserInputBoundary userInput;
+
+ UserRegisterController(UserInputBoundary accountGateway) {
+ this.userInput = accountGateway;
+ }
+
+ @PostMapping("/user")
+ UserResponseModel create(@RequestBody UserRequestModel requestModel) {
+ return userInput.create(requestModel);
+ }
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRegisterDsGateway.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRegisterDsGateway.java
new file mode 100644
index 0000000000..89c1b7e774
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRegisterDsGateway.java
@@ -0,0 +1,7 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+interface UserRegisterDsGateway {
+ boolean existsByName(String identifier);
+
+ void save(UserDsRequestModel requestModel);
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRegisterInteractor.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRegisterInteractor.java
new file mode 100644
index 0000000000..5137593dc3
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRegisterInteractor.java
@@ -0,0 +1,35 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+import java.time.LocalDateTime;
+
+class UserRegisterInteractor implements UserInputBoundary {
+
+ final UserRegisterDsGateway userDsGateway;
+ final UserPresenter userPresenter;
+ final UserFactory userFactory;
+
+ UserRegisterInteractor(UserRegisterDsGateway userRegisterDfGateway, UserPresenter userPresenter,
+ UserFactory userFactory) {
+ this.userDsGateway = userRegisterDfGateway;
+ this.userPresenter = userPresenter;
+ this.userFactory = userFactory;
+ }
+
+ @Override
+ public UserResponseModel create(UserRequestModel requestModel) {
+ if (userDsGateway.existsByName(requestModel.getName())) {
+ return userPresenter.prepareFailView("User already exists.");
+ }
+ User user = userFactory.create(requestModel.getName(), requestModel.getPassword());
+ if (!user.passwordIsValid()) {
+ return userPresenter.prepareFailView("User password must have more than 5 characters.");
+ }
+ LocalDateTime now = LocalDateTime.now();
+ UserDsRequestModel userDsModel = new UserDsRequestModel(user.getName(), user.getPassword(), now);
+
+ userDsGateway.save(userDsModel);
+
+ UserResponseModel accountResponseModel = new UserResponseModel(user.getName(), now.toString());
+ return userPresenter.prepareSuccessView(accountResponseModel);
+ }
+}
\ No newline at end of file
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRequestModel.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRequestModel.java
new file mode 100644
index 0000000000..8317665c31
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserRequestModel.java
@@ -0,0 +1,33 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+class UserRequestModel {
+
+ String name;
+ String password;
+
+ public UserRequestModel() {
+ super();
+ }
+
+ UserRequestModel(String name, String password) {
+ super();
+ this.name = name;
+ this.password = password;
+ }
+
+ String getName() {
+ return name;
+ }
+
+ void setName(String name) {
+ this.name = name;
+ }
+
+ String getPassword() {
+ return password;
+ }
+
+ void setPassword(String password) {
+ this.password = password;
+ }
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserResponseFormatter.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserResponseFormatter.java
new file mode 100644
index 0000000000..4842d44e22
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserResponseFormatter.java
@@ -0,0 +1,22 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+import java.time.LocalDateTime;
+import java.time.format.DateTimeFormatter;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.web.server.ResponseStatusException;
+
+class UserResponseFormatter implements UserPresenter {
+
+ @Override
+ public UserResponseModel prepareSuccessView(UserResponseModel response) {
+ LocalDateTime responseTime = LocalDateTime.parse(response.getCreationTime());
+ response.setCreationTime(responseTime.format(DateTimeFormatter.ofPattern("hh:mm:ss")));
+ return response;
+ }
+
+ @Override
+ public UserResponseModel prepareFailView(String error) {
+ throw new ResponseStatusException(HttpStatus.CONFLICT, error);
+ }
+}
diff --git a/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserResponseModel.java b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserResponseModel.java
new file mode 100644
index 0000000000..73a3d8fb10
--- /dev/null
+++ b/patterns/clean-architecture/src/main/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserResponseModel.java
@@ -0,0 +1,29 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+public class UserResponseModel {
+
+ String login;
+ String creationTime;
+
+ public UserResponseModel(String login, String creationTime) {
+ this.login = login;
+ this.creationTime = creationTime;
+ }
+
+ public String getLogin() {
+ return login;
+ }
+
+ public void setLogin(String login) {
+ this.login = login;
+ }
+
+ public String getCreationTime() {
+ return creationTime;
+ }
+
+ public void setCreationTime(String creationTime) {
+ this.creationTime = creationTime;
+ }
+
+}
diff --git a/patterns/clean-architecture/src/main/resources/application.properties b/patterns/clean-architecture/src/main/resources/application.properties
new file mode 100644
index 0000000000..a5a02bb49d
--- /dev/null
+++ b/patterns/clean-architecture/src/main/resources/application.properties
@@ -0,0 +1,2 @@
+server.port=8080
+server.error.include-message=always
\ No newline at end of file
diff --git a/patterns/clean-architecture/src/test/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserResponseFormatterUnitTest.java b/patterns/clean-architecture/src/test/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserResponseFormatterUnitTest.java
new file mode 100644
index 0000000000..e394cbbf94
--- /dev/null
+++ b/patterns/clean-architecture/src/test/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserResponseFormatterUnitTest.java
@@ -0,0 +1,29 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.web.server.ResponseStatusException;
+
+import com.baeldung.pattern.cleanarchitecture.usercreation.UserResponseFormatter;
+import com.baeldung.pattern.cleanarchitecture.usercreation.UserResponseModel;
+
+class UserResponseFormatterUnitTest {
+
+ UserResponseFormatter userResponseFormatter = new UserResponseFormatter();
+
+ @Test
+ void givenDateAnd3HourTime_whenPrepareSuccessView_thenReturnOnly3HourTime() {
+ UserResponseModel modelResponse = new UserResponseModel("baeldung", "2020-12-20T03:00:00.000");
+ UserResponseModel formattedResponse = userResponseFormatter.prepareSuccessView(modelResponse);
+
+ assertThat(formattedResponse.getCreationTime()).isEqualTo("03:00:00");
+ }
+
+ @Test
+ void whenPrepareFailView_thenThrowHttpConflictException() {
+ assertThatThrownBy(() -> userResponseFormatter.prepareFailView("Invalid password"))
+ .isInstanceOf(ResponseStatusException.class);
+ }
+}
diff --git a/patterns/clean-architecture/src/test/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserUnitTest.java b/patterns/clean-architecture/src/test/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserUnitTest.java
new file mode 100644
index 0000000000..505ea47e3f
--- /dev/null
+++ b/patterns/clean-architecture/src/test/java/com/baeldung/pattern/cleanarchitecture/usercreation/UserUnitTest.java
@@ -0,0 +1,15 @@
+package com.baeldung.pattern.cleanarchitecture.usercreation;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import org.junit.jupiter.api.Test;
+
+class UserUnitTest {
+
+ @Test
+ void given123Password_whenPasswordIsNotValid_thenIsFalse() {
+ User user = new CommonUser("Baeldung", "123");
+
+ assertThat(user.passwordIsValid()).isFalse();
+ }
+}
diff --git a/patterns/design-patterns-architectural/README.md b/patterns/design-patterns-architectural/README.md
index 5b6011c159..ae6781c66c 100644
--- a/patterns/design-patterns-architectural/README.md
+++ b/patterns/design-patterns-architectural/README.md
@@ -1,4 +1,4 @@
### Relevant Articles:
-- [Service Locator Pattern](https://www.baeldung.com/java-service-locator-pattern)
+- [Service Locator Pattern and Java Implementation](https://www.baeldung.com/java-service-locator-pattern)
- [The DAO Pattern in Java](https://www.baeldung.com/java-dao-pattern)
- [DAO vs Repository Patterns](https://www.baeldung.com/java-dao-vs-repository)
diff --git a/patterns/design-patterns-behavioral/src/main/java/com/baeldung/nulls/UsingOptional.java b/patterns/design-patterns-behavioral/src/main/java/com/baeldung/nulls/UsingOptional.java
index d5dd56e760..099864589c 100644
--- a/patterns/design-patterns-behavioral/src/main/java/com/baeldung/nulls/UsingOptional.java
+++ b/patterns/design-patterns-behavioral/src/main/java/com/baeldung/nulls/UsingOptional.java
@@ -1,23 +1,52 @@
package com.baeldung.nulls;
+import java.util.List;
import java.util.Optional;
+import static java.util.Collections.emptyList;
+
public class UsingOptional {
- public Optional
+
+ org.postgresql
+ postgresql
+ ${postgresql.version}
+ test
+
+
+ mysql
+ mysql-connector-java
+ ${mysql.driver.version}
+
+
+
+ com.microsoft.sqlserver
+ mssql-jdbc
+ ${mssql.driver.version}
+
+
1.4.200
+ 42.2.5.jre7
+ 8.4.1.jre11
+ 10.2.0.4.0
+ 8.0.22
-
\ No newline at end of file
+
diff --git a/persistence-modules/core-java-persistence-2/src/test/java/com/baeldung/jdbcurlformat/JdbcUrlFormatLiveTest.java b/persistence-modules/core-java-persistence-2/src/test/java/com/baeldung/jdbcurlformat/JdbcUrlFormatLiveTest.java
new file mode 100644
index 0000000000..fc00119704
--- /dev/null
+++ b/persistence-modules/core-java-persistence-2/src/test/java/com/baeldung/jdbcurlformat/JdbcUrlFormatLiveTest.java
@@ -0,0 +1,86 @@
+package com.baeldung.jdbcurlformat;
+
+import org.junit.Test;
+
+import java.sql.Connection;
+import java.sql.DriverManager;
+import java.sql.SQLException;
+
+import static org.junit.Assert.assertNotNull;
+
+public class JdbcUrlFormatLiveTest {
+ @Test
+ public void givenOracleSID_thenCreateConnectionObject() {
+ String oracleJdbcUrl = "jdbc:oracle:thin:@myoracle.db.server:1521:my_sid";
+ String username = "dbUser";
+ String password = "1234567";
+ try (Connection conn = DriverManager.getConnection(oracleJdbcUrl, username, password)) {
+ assertNotNull(conn);
+ } catch (SQLException e) {
+ System.err.format("SQL State: %s\n%s", e.getSQLState(), e.getMessage());
+ }
+ }
+
+ @Test
+ public void givenOracleServiceName_thenCreateConnectionObject() {
+ String oracleJdbcUrl = "jdbc:oracle:thin:@//myoracle.db.server:1521/my_servicename";
+ String username = "dbUser";
+ String password = "1234567";
+ try (Connection conn = DriverManager.getConnection(oracleJdbcUrl, username, password)) {
+ assertNotNull(conn);
+ } catch (SQLException e) {
+ System.err.format("SQL State: %s\n%s", e.getSQLState(), e.getMessage());
+ }
+ }
+
+ @Test
+ public void givenOracleTnsnames_thenCreateConnectionObject() {
+ String oracleJdbcUrl = "jdbc:oracle:thin:@" +
+ "(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)" +
+ "(HOST=myoracle.db.server)(PORT=1521))" +
+ "(CONNECT_DATA=(SERVICE_NAME=my_servicename)))";
+ String username = "dbUser";
+ String password = "1234567";
+ try (Connection conn = DriverManager.getConnection(oracleJdbcUrl, username, password)) {
+ assertNotNull(conn);
+ } catch (SQLException e) {
+ System.err.format("SQL State: %s\n%s", e.getSQLState(), e.getMessage());
+ }
+ }
+
+ @Test
+ public void givenMysqlDb_thenCreateConnectionObject() {
+ String jdbcUrl = "jdbc:mysql://mysql.db.server:3306/my_database?useSSL=false&serverTimezone=UTC";
+ String username = "dbUser";
+ String password = "1234567";
+ try (Connection conn = DriverManager.getConnection(jdbcUrl, username, password)) {
+ assertNotNull(conn);
+ } catch (SQLException e) {
+ System.err.format("SQL State: %s\n%s", e.getSQLState(), e.getMessage());
+ }
+ }
+
+ @Test
+ public void givenMssqlDb_thenCreateConnectionObject() {
+ String jdbcUrl = "jdbc:sqlserver://mssql.db.server\\mssql_instance;databaseName=my_database";
+ String username = "dbUser";
+ String password = "1234567";
+ try (Connection conn = DriverManager.getConnection(jdbcUrl, username, password)) {
+ assertNotNull(conn);
+ } catch (SQLException e) {
+ System.err.format("SQL State: %s\n%s", e.getSQLState(), e.getMessage());
+ }
+ }
+
+ @Test
+ public void givenPostgreSqlDb_thenCreateConnectionObject() {
+ String jdbcUrl = "jdbc:postgresql://postgresql.db.server:5430/my_database?ssl=true&loglevel=2";
+ String username = "dbUser";
+ String password = "1234567";
+ try (Connection conn = DriverManager.getConnection(jdbcUrl, username, password)) {
+ assertNotNull(conn);
+ } catch (SQLException e) {
+ System.err.format("SQL State: %s\n%s", e.getSQLState(), e.getMessage());
+ }
+ }
+}
diff --git a/persistence-modules/hibernate-annotations/pom.xml b/persistence-modules/hibernate-annotations/pom.xml
index 5367921f31..d3b786d6c8 100644
--- a/persistence-modules/hibernate-annotations/pom.xml
+++ b/persistence-modules/hibernate-annotations/pom.xml
@@ -30,7 +30,7 @@
org.apache.commons
commons-lang3
- ${commons.lang3.version}
+ ${commons-lang3.version}
@@ -44,31 +44,15 @@
hibernate-spatial
${hibernate-core.version}
-
- org.opengeo
- geodb
- ${geodb.version}
-
-
-
- geodb-repo
- GeoDB repository
- http://repo.boundlessgeo.com/main/
-
-
-
5.4.7.Final
1.4.200
- 3.8.1
true
2.1.7.RELEASE
5.4.7.Final
1.4.200
- 3.8.1
- 0.9
diff --git a/persistence-modules/hibernate-mapping/pom.xml b/persistence-modules/hibernate-mapping/pom.xml
index 4eabc5d298..ebc854a621 100644
--- a/persistence-modules/hibernate-mapping/pom.xml
+++ b/persistence-modules/hibernate-mapping/pom.xml
@@ -71,8 +71,6 @@
3.0.1-b11
1.0.3
1.3
- 3.9
- 2.6
diff --git a/persistence-modules/hibernate-queries/pom.xml b/persistence-modules/hibernate-queries/pom.xml
index 06f7f42088..4374c833c2 100644
--- a/persistence-modules/hibernate-queries/pom.xml
+++ b/persistence-modules/hibernate-queries/pom.xml
@@ -35,11 +35,6 @@
hibernate-spatial
${hibernate.version}
-
- org.opengeo
- geodb
- ${geodb.version}
-
mysql
mysql-connector-java
@@ -62,19 +57,10 @@
-
-
- geodb-repo
- GeoDB repository
- http://repo.boundlessgeo.com/main/
-
-
-
6.0.6
2.2.3
3.8.0
- 0.9
1.21
diff --git a/persistence-modules/hibernate5/pom.xml b/persistence-modules/hibernate5/pom.xml
index 7f04abc09f..3feffc98fd 100644
--- a/persistence-modules/hibernate5/pom.xml
+++ b/persistence-modules/hibernate5/pom.xml
@@ -35,11 +35,6 @@
hibernate-spatial
${hibernate.version}
-
- org.opengeo
- geodb
- ${geodb.version}
-
mysql
mysql-connector-java
@@ -68,21 +63,12 @@
-
-
- geodb-repo
- GeoDB repository
- http://repo.boundlessgeo.com/main/
-
-
-
5.4.12.Final
6.0.6
2.2.3
3.8.0
1.21
- 0.9
diff --git a/persistence-modules/java-jpa-3/README.md b/persistence-modules/java-jpa-3/README.md
index dce9c4e711..9c9e040825 100644
--- a/persistence-modules/java-jpa-3/README.md
+++ b/persistence-modules/java-jpa-3/README.md
@@ -5,3 +5,8 @@ This module contains articles about the Java Persistence API (JPA) in Java.
### Relevant Articles:
- [JPA Entity Equality](https://www.baeldung.com/jpa-entity-equality)
+- [Ignoring Fields With the JPA @Transient Annotation](https://www.baeldung.com/jpa-transient-ignore-field)
+- [Defining Indexes in JPA](https://www.baeldung.com/jpa-indexes)
+- [JPA CascadeType.REMOVE vs orphanRemoval](https://www.baeldung.com/jpa-cascade-remove-vs-orphanremoval)
+- [A Guide to MultipleBagFetchException in Hibernate](https://www.baeldung.com/java-hibernate-multiplebagfetchexception)
+- [How to Convert a Hibernate Proxy to a Real Entity Object](https://www.baeldung.com/hibernate-proxy-to-real-entity-object)
diff --git a/persistence-modules/java-jpa-3/pom.xml b/persistence-modules/java-jpa-3/pom.xml
index da18ae3046..7c02cc6c8e 100644
--- a/persistence-modules/java-jpa-3/pom.xml
+++ b/persistence-modules/java-jpa-3/pom.xml
@@ -27,7 +27,21 @@
h2
${h2.version}
-
+
+ mysql
+ mysql-connector-java
+ 8.0.21
+
+
+ com.fasterxml.jackson.core
+ jackson-databind
+ 2.11.3
+
+
+ com.fasterxml.jackson.datatype
+ jackson-datatype-hibernate5
+ 2.9.8
+
javax.persistence
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/ignorable/fields/HibernateConfig.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/ignorable/fields/HibernateConfig.java
new file mode 100644
index 0000000000..9285c23dfa
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/ignorable/fields/HibernateConfig.java
@@ -0,0 +1,37 @@
+package com.baeldung.ignorable.fields;
+
+import java.util.Properties;
+
+import org.hibernate.SessionFactory;
+import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
+import org.hibernate.cfg.Configuration;
+import org.hibernate.cfg.Environment;
+import org.hibernate.service.ServiceRegistry;
+
+public class HibernateConfig {
+ private static SessionFactory sessionFactory;
+
+ public static SessionFactory getSessionFactory() {
+ if (sessionFactory == null) {
+ Configuration configuration = new Configuration();
+
+ Properties settings = new Properties();
+ settings.put(Environment.DRIVER, "com.mysql.cj.jdbc.Driver");
+ settings.put(Environment.URL, "jdbc:mysql://localhost:3306/app_db?useSSL=false");
+ settings.put(Environment.USER, "root");
+ settings.put(Environment.PASS, "password");
+ settings.put(Environment.DIALECT, "org.hibernate.dialect.MySQL5Dialect");
+ settings.put(Environment.CURRENT_SESSION_CONTEXT_CLASS, "thread");
+ configuration.setProperties(settings);
+
+ configuration.addAnnotatedClass(User.class);
+
+ ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder()
+ .applySettings(configuration.getProperties())
+ .build();
+
+ sessionFactory = configuration.buildSessionFactory(serviceRegistry);
+ }
+ return sessionFactory;
+ }
+}
\ No newline at end of file
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/ignorable/fields/User.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/ignorable/fields/User.java
new file mode 100644
index 0000000000..8d1812605d
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/ignorable/fields/User.java
@@ -0,0 +1,80 @@
+package com.baeldung.ignorable.fields;
+
+import java.io.Serializable;
+import java.util.StringJoiner;
+
+import javax.persistence.*;
+
+@Entity
+@Table(name = "Users")
+public class User implements Serializable {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.IDENTITY)
+ private Integer id;
+ private String email;
+ private String password;
+ @Transient
+ private String currentDevice;
+
+ // Needed for Hibernate mapping
+ public User() {
+ }
+
+ public User(String email, String password, String currentDevice) {
+ this.email = email;
+ this.password = password;
+ this.currentDevice = currentDevice;
+ }
+
+ public Integer getId() {
+ return id;
+ }
+
+ public void setId(Integer id) {
+ this.id = id;
+ }
+
+ public String getEmail() {
+ return email;
+ }
+
+ public void setEmail(String email) {
+ this.email = email;
+ }
+
+ public String getPassword() {
+ return password;
+ }
+
+ public void setPassword(String password) {
+ this.password = password;
+ }
+
+ public String getCurrentDevice() {
+ return currentDevice;
+ }
+
+ public void setCurrentDevice(String currentDevice) {
+ this.currentDevice = currentDevice;
+ }
+
+ @Override
+ public String toString() {
+ return new StringJoiner(", ", User.class.getSimpleName() + "[", "]").add("id=" + id)
+ .add("email='" + email + "'")
+ .add("password='" + password + "'")
+ .add("currentDevice='" + currentDevice + "'")
+ .toString();
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (!(o instanceof User))
+ return false;
+ User user = (User) o;
+ return email.equals(user.email);
+ }
+}
\ No newline at end of file
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/ignorable/fields/UserDao.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/ignorable/fields/UserDao.java
new file mode 100644
index 0000000000..45e491e42e
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/ignorable/fields/UserDao.java
@@ -0,0 +1,28 @@
+package com.baeldung.ignorable.fields;
+
+import java.util.List;
+
+import org.hibernate.Session;
+import org.hibernate.Transaction;
+
+public class UserDao {
+
+ public void saveUser(User user) {
+ Transaction transaction = null;
+ try (Session session = HibernateConfig.getSessionFactory().openSession()) {
+ transaction = session.beginTransaction();
+ session.save(user);
+ transaction.commit();
+ } catch (Exception e) {
+ if (transaction != null) {
+ transaction.rollback();
+ }
+ }
+ }
+
+ public List getUsers() {
+ try (Session session = HibernateConfig.getSessionFactory().openSession()) {
+ return session.createQuery("from User", User.class).list();
+ }
+ }
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/CreditCardPayment.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/CreditCardPayment.java
new file mode 100644
index 0000000000..6eb41f7ccc
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/CreditCardPayment.java
@@ -0,0 +1,20 @@
+package com.baeldung.jpa.hibernateunproxy;
+
+import javax.persistence.Entity;
+import java.math.BigDecimal;
+
+@Entity
+public class CreditCardPayment extends Payment {
+
+ private String cardNumber;
+
+ CreditCardPayment(BigDecimal amount, WebUser webUser, String cardNumber) {
+ this.amount = amount;
+ this.webUser = webUser;
+ this.cardNumber = cardNumber;
+ }
+
+ protected CreditCardPayment() {
+ }
+
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/Payment.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/Payment.java
new file mode 100644
index 0000000000..9e70da5f65
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/Payment.java
@@ -0,0 +1,47 @@
+package com.baeldung.jpa.hibernateunproxy;
+
+import javax.persistence.Entity;
+import javax.persistence.FetchType;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.Inheritance;
+import javax.persistence.InheritanceType;
+import javax.persistence.ManyToOne;
+import java.math.BigDecimal;
+import java.util.Objects;
+
+@Entity
+@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
+public abstract class Payment {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ @ManyToOne(fetch = FetchType.LAZY)
+ protected WebUser webUser;
+
+ protected BigDecimal amount;
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (o == null || getClass() != o.getClass())
+ return false;
+
+ Payment payment = (Payment) o;
+
+ return Objects.equals(id, payment.id);
+ }
+
+ @Override
+ public int hashCode() {
+ return id != null ? id.hashCode() : 0;
+ }
+
+ protected Payment() {
+ }
+
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/PaymentReceipt.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/PaymentReceipt.java
new file mode 100644
index 0000000000..530839eef4
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/PaymentReceipt.java
@@ -0,0 +1,53 @@
+package com.baeldung.jpa.hibernateunproxy;
+
+import javax.persistence.Entity;
+import javax.persistence.FetchType;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.OneToOne;
+import java.util.Objects;
+import java.util.UUID;
+
+@Entity
+public class PaymentReceipt {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ @OneToOne(fetch = FetchType.LAZY)
+ private Payment payment;
+
+ private String transactionNumber;
+
+ PaymentReceipt(Payment payment) {
+ this.payment = payment;
+ this.transactionNumber = UUID.randomUUID().toString();
+ }
+
+ public Payment getPayment() {
+ return payment;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (o == null || getClass() != o.getClass())
+ return false;
+
+ PaymentReceipt that = (PaymentReceipt) o;
+
+ return Objects.equals(id, that.id);
+ }
+
+ @Override
+ public int hashCode() {
+ return id != null ? id.hashCode() : 0;
+ }
+
+ protected PaymentReceipt() {
+ }
+
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/WebUser.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/WebUser.java
new file mode 100644
index 0000000000..d3f82bacd4
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/hibernateunproxy/WebUser.java
@@ -0,0 +1,42 @@
+package com.baeldung.jpa.hibernateunproxy;
+
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import java.util.Objects;
+
+@Entity
+public class WebUser {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ private String name;
+
+ WebUser(String name) {
+ this.name = name;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (o == null || getClass() != o.getClass())
+ return false;
+
+ WebUser webUser = (WebUser) o;
+
+ return Objects.equals(id, webUser.id);
+ }
+
+ @Override
+ public int hashCode() {
+ return id != null ? id.hashCode() : 0;
+ }
+
+ protected WebUser() {
+ }
+
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/index/Student.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/index/Student.java
new file mode 100644
index 0000000000..45de3f3fc4
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/index/Student.java
@@ -0,0 +1,70 @@
+package com.baeldung.jpa.index;
+
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.Id;
+import javax.persistence.Index;
+import javax.persistence.Table;
+import java.io.Serializable;
+import java.util.Objects;
+
+@Entity
+@Table(indexes = {
+ @Index(columnList = "firstName"),
+ @Index(name = "fn_index", columnList = "id"),
+ @Index(name = "multiIndex1", columnList = "firstName, lastName"),
+ @Index(name = "multiIndex2", columnList = "lastName, firstName"),
+ @Index(name = "multiSortIndex", columnList = "firstName, lastName DESC"),
+ @Index(name = "uniqueIndex", columnList = "firstName", unique = true),
+ @Index(name = "uniqueMultiIndex", columnList = "firstName, lastName", unique = true)
+})
+public class Student implements Serializable {
+ @Id
+ @GeneratedValue
+ private Long id;
+ private String firstName;
+ private String lastName;
+
+ public Long getId() {
+ return id;
+ }
+
+ public void setId(Long id) {
+ this.id = id;
+ }
+
+ public String getFirstName() {
+ return firstName;
+ }
+
+ public void setFirstName(String firstName) {
+ this.firstName = firstName;
+ }
+
+ public String getLastName() {
+ return lastName;
+ }
+
+ public void setLastName(String lastName) {
+ this.lastName = lastName;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o) {
+ return true;
+ }
+ if (o == null || getClass() != o.getClass()) {
+ return false;
+ }
+ Student student = (Student) o;
+ return Objects.equals(id, student.id) &&
+ Objects.equals(firstName, student.firstName) &&
+ Objects.equals(lastName, student.lastName);
+ }
+
+ @Override
+ public int hashCode() {
+ return Objects.hash(id, firstName, lastName);
+ }
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Album.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Album.java
new file mode 100644
index 0000000000..96615b4ee2
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Album.java
@@ -0,0 +1,52 @@
+package com.baeldung.jpa.multiplebagfetchexception;
+
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.ManyToMany;
+import javax.persistence.OneToMany;
+import java.util.List;
+import java.util.Objects;
+import java.util.Set;
+
+@Entity
+class Album {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ private String name;
+
+ @OneToMany(mappedBy = "album")
+ private List songs;
+
+ @ManyToMany(mappedBy = "followingAlbums")
+ private Set followers;
+
+ Album(String name) {
+ this.name = name;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (o == null || getClass() != o.getClass())
+ return false;
+
+ Album album = (Album) o;
+
+ return Objects.equals(id, album.id);
+ }
+
+ @Override
+ public int hashCode() {
+ return id != null ? id.hashCode() : 0;
+ }
+
+ protected Album() {
+ }
+
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Artist.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Artist.java
new file mode 100644
index 0000000000..b87de27629
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Artist.java
@@ -0,0 +1,56 @@
+package com.baeldung.jpa.multiplebagfetchexception;
+
+import javax.persistence.CascadeType;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.OneToMany;
+import java.util.ArrayList;
+import java.util.List;
+import java.util.Objects;
+
+@Entity
+class Artist {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ private String name;
+
+ @OneToMany(mappedBy = "artist")
+ private List songs;
+
+ @OneToMany(mappedBy = "artist", cascade = CascadeType.PERSIST)
+ private List offers;
+
+ Artist(String name) {
+ this.name = name;
+ this.offers = new ArrayList<>();
+ }
+
+ void createOffer(String description) {
+ this.offers.add(new Offer(description, this));
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (o == null || getClass() != o.getClass())
+ return false;
+
+ Artist artist = (Artist) o;
+
+ return Objects.equals(id, artist.id);
+ }
+
+ @Override
+ public int hashCode() {
+ return id != null ? id.hashCode() : 0;
+ }
+
+ protected Artist() {
+ }
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/FavoriteSong.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/FavoriteSong.java
new file mode 100644
index 0000000000..43bd39487e
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/FavoriteSong.java
@@ -0,0 +1,52 @@
+package com.baeldung.jpa.multiplebagfetchexception;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.ManyToOne;
+import java.util.Objects;
+
+@Entity
+class FavoriteSong {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ @ManyToOne
+ private Song song;
+
+ @ManyToOne
+ private User user;
+
+ @Column(name = "arrangement_index", nullable = false)
+ private int arrangementIndex;
+
+ FavoriteSong(Song song, User user) {
+ this.song = song;
+ this.user = user;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (o == null || getClass() != o.getClass())
+ return false;
+
+ FavoriteSong likedSong = (FavoriteSong) o;
+
+ return Objects.equals(id, likedSong.id);
+ }
+
+ @Override
+ public int hashCode() {
+ return id != null ? id.hashCode() : 0;
+ }
+
+ protected FavoriteSong() {
+ }
+
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Offer.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Offer.java
new file mode 100644
index 0000000000..54f355dfff
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Offer.java
@@ -0,0 +1,46 @@
+package com.baeldung.jpa.multiplebagfetchexception;
+
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.ManyToOne;
+
+@Entity
+class Offer {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ private String name;
+
+ @ManyToOne
+ private Artist artist;
+
+ Offer(String name, Artist artist) {
+ this.name = name;
+ this.artist = artist;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (o == null || getClass() != o.getClass())
+ return false;
+
+ Offer offer = (Offer) o;
+
+ return id != null ? id.equals(offer.id) : offer.id == null;
+ }
+
+ @Override
+ public int hashCode() {
+ return id != null ? id.hashCode() : 0;
+ }
+
+ protected Offer() {
+ }
+
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Playlist.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Playlist.java
new file mode 100644
index 0000000000..7fa96c3355
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Playlist.java
@@ -0,0 +1,47 @@
+package com.baeldung.jpa.multiplebagfetchexception;
+
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.ManyToOne;
+import java.util.Objects;
+
+@Entity
+class Playlist {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ private String name;
+
+ @ManyToOne
+ private User createdBy;
+
+ Playlist(String name, User createdBy) {
+ this.name = name;
+ this.createdBy = createdBy;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (o == null || getClass() != o.getClass())
+ return false;
+
+ Playlist playlist = (Playlist) o;
+
+ return Objects.equals(id, playlist.id);
+ }
+
+ @Override
+ public int hashCode() {
+ return id != null ? id.hashCode() : 0;
+ }
+
+ protected Playlist() {
+ }
+
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Song.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Song.java
new file mode 100644
index 0000000000..8cb4ca0ae4
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/Song.java
@@ -0,0 +1,55 @@
+package com.baeldung.jpa.multiplebagfetchexception;
+
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.ManyToOne;
+import java.util.Objects;
+
+@Entity
+class Song {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ private String name;
+
+ @ManyToOne
+ private Album album;
+
+ @ManyToOne
+ private Artist artist;
+
+ Song(String name, Artist artist) {
+ this.name = name;
+ this.artist = artist;
+ }
+
+ void assignToAlbum(Album album) {
+ this.album = album;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (o == null || getClass() != o.getClass())
+ return false;
+
+ Song song = (Song) o;
+
+ return Objects.equals(id, song.id);
+ }
+
+ @Override
+ public int hashCode() {
+ return id != null ? id.hashCode() : 0;
+ }
+
+ protected Song() {
+ }
+
+}
+
\ No newline at end of file
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/User.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/User.java
new file mode 100644
index 0000000000..d475baddab
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/multiplebagfetchexception/User.java
@@ -0,0 +1,74 @@
+package com.baeldung.jpa.multiplebagfetchexception;
+
+import javax.persistence.CascadeType;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.ManyToMany;
+import javax.persistence.OneToMany;
+import javax.persistence.OrderColumn;
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Objects;
+import java.util.Set;
+
+@Entity
+class User {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ private String name;
+
+ @OneToMany(mappedBy = "createdBy", cascade = CascadeType.PERSIST)
+ private List playlists;
+
+ @OneToMany(mappedBy = "user", cascade = CascadeType.PERSIST)
+ @OrderColumn(name = "arrangement_index")
+ private List favoriteSongs;
+
+ @ManyToMany
+ private Set followingAlbums;
+
+ User(String name) {
+ this.name = name;
+ this.playlists = new ArrayList<>();
+ this.favoriteSongs = new ArrayList<>();
+ this.followingAlbums = new HashSet<>();
+ }
+
+ void followAlbum(Album album) {
+ this.followingAlbums.add(album);
+ }
+
+ void createPlaylist(String name) {
+ this.playlists.add(new Playlist(name, this));
+ }
+
+ void addSongToFavorites(Song song) {
+ this.favoriteSongs.add(new FavoriteSong(song, this));
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (o == null || getClass() != o.getClass())
+ return false;
+
+ User user = (User) o;
+
+ return Objects.equals(id, user.id);
+ }
+
+ @Override
+ public int hashCode() {
+ return id != null ? id.hashCode() : 0;
+ }
+
+ protected User() {
+ }
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/removal/LineItem.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/removal/LineItem.java
new file mode 100644
index 0000000000..9ab2dd4e74
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/removal/LineItem.java
@@ -0,0 +1,45 @@
+package com.baeldung.jpa.removal;
+
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.ManyToOne;
+import java.util.Objects;
+
+@Entity
+public class LineItem {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ private String name;
+
+ @ManyToOne
+ private OrderRequest orderRequest;
+
+ public LineItem(String name) {
+ this.name = name;
+ }
+
+ @Override
+ public boolean equals(Object o) {
+ if (this == o)
+ return true;
+ if (o == null || getClass() != o.getClass())
+ return false;
+
+ LineItem lineItem = (LineItem) o;
+
+ return Objects.equals(id, lineItem.id);
+ }
+
+ @Override
+ public int hashCode() {
+ return id != null ? id.hashCode() : 0;
+ }
+
+ protected LineItem() {
+ }
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/removal/OrderRequest.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/removal/OrderRequest.java
new file mode 100644
index 0000000000..739c110d8c
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/removal/OrderRequest.java
@@ -0,0 +1,43 @@
+package com.baeldung.jpa.removal;
+
+import javax.persistence.CascadeType;
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+import javax.persistence.OneToMany;
+import javax.persistence.OneToOne;
+import java.util.List;
+
+@Entity
+public class OrderRequest {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ @OneToOne(cascade = { CascadeType.REMOVE, CascadeType.PERSIST })
+ private ShipmentInfo shipmentInfo;
+
+ @OneToMany(orphanRemoval = true, cascade = CascadeType.PERSIST, mappedBy = "orderRequest")
+ private List lineItems;
+
+ public OrderRequest(ShipmentInfo shipmentInfo) {
+ this.shipmentInfo = shipmentInfo;
+ }
+
+ public OrderRequest(List lineItems) {
+ this.lineItems = lineItems;
+ }
+
+ public void removeLineItem(LineItem lineItem) {
+ lineItems.remove(lineItem);
+ }
+
+ public void setLineItems(List lineItems) {
+ this.lineItems = lineItems;
+ }
+
+ protected OrderRequest() {
+ }
+}
diff --git a/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/removal/ShipmentInfo.java b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/removal/ShipmentInfo.java
new file mode 100644
index 0000000000..12274bcadf
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/main/java/com/baeldung/jpa/removal/ShipmentInfo.java
@@ -0,0 +1,23 @@
+package com.baeldung.jpa.removal;
+
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+
+@Entity
+public class ShipmentInfo {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private Long id;
+
+ private String name;
+
+ public ShipmentInfo(String name) {
+ this.name = name;
+ }
+
+ protected ShipmentInfo() {
+ }
+}
diff --git a/persistence-modules/java-jpa-3/src/main/resources/META-INF/persistence.xml b/persistence-modules/java-jpa-3/src/main/resources/META-INF/persistence.xml
index 28a929f912..19ecae8491 100644
--- a/persistence-modules/java-jpa-3/src/main/resources/META-INF/persistence.xml
+++ b/persistence-modules/java-jpa-3/src/main/resources/META-INF/persistence.xml
@@ -1,25 +1,100 @@
-
- org.hibernate.jpa.HibernatePersistenceProvider
- com.baeldung.jpa.equality.EqualByJavaDefault
- com.baeldung.jpa.equality.EqualById
- com.baeldung.jpa.equality.EqualByBusinessKey
- true
-
-
-
-
-
-
-
-
-
-
-
-
+ version="2.2">
+
+ org.hibernate.jpa.HibernatePersistenceProvider
+ com.baeldung.jpa.equality.EqualByJavaDefault
+ com.baeldung.jpa.equality.EqualById
+ com.baeldung.jpa.equality.EqualByBusinessKey
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.hibernate.jpa.HibernatePersistenceProvider
+ com.baeldung.jpa.removal.ShipmentInfo
+ com.baeldung.jpa.removal.LineItem
+ com.baeldung.jpa.removal.OrderRequest
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.hibernate.jpa.HibernatePersistenceProvider
+ com.baeldung.jpa.index.Student
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+ org.hibernate.jpa.HibernatePersistenceProvider
+ com.baeldung.jpa.multiplebagfetchexception.Album
+ com.baeldung.jpa.multiplebagfetchexception.Song
+ com.baeldung.jpa.multiplebagfetchexception.User
+ com.baeldung.jpa.multiplebagfetchexception.Artist
+ com.baeldung.jpa.multiplebagfetchexception.Offer
+ com.baeldung.jpa.multiplebagfetchexception.Playlist
+ com.baeldung.jpa.multiplebagfetchexception.FavoriteSong
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.hibernate.jpa.HibernatePersistenceProvider
+ com.baeldung.jpa.hibernateunproxy.Payment
+ com.baeldung.jpa.hibernateunproxy.CreditCardPayment
+ com.baeldung.jpa.hibernateunproxy.PaymentReceipt
+ com.baeldung.jpa.hibernateunproxy.WebUser
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/persistence-modules/java-jpa-3/src/main/resources/logback.xml b/persistence-modules/java-jpa-3/src/main/resources/logback.xml
index 2527fea245..8000740dd1 100644
--- a/persistence-modules/java-jpa-3/src/main/resources/logback.xml
+++ b/persistence-modules/java-jpa-3/src/main/resources/logback.xml
@@ -8,7 +8,7 @@
-
+
diff --git a/persistence-modules/java-jpa-3/src/test/java/com/baeldung/ignorable/fields/TransientFieldUnitTest.java b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/ignorable/fields/TransientFieldUnitTest.java
new file mode 100644
index 0000000000..114a4cca4c
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/ignorable/fields/TransientFieldUnitTest.java
@@ -0,0 +1,79 @@
+package com.baeldung.ignorable.fields;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNull;
+
+import java.io.*;
+import java.util.List;
+import java.util.Random;
+
+import org.junit.Test;
+
+import com.fasterxml.jackson.core.JsonProcessingException;
+import com.fasterxml.jackson.databind.MapperFeature;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.datatype.hibernate5.Hibernate5Module;
+
+public class TransientFieldUnitTest {
+
+ private final UserDao userDao = new UserDao();
+
+ private final int randInt = new Random().nextInt();
+
+ private final User user = new User("user" + randInt + "@bar.com", "hunter2", "MacOSX");
+
+ @Test
+ public void givenFieldWithTransientAnnotation_whenSavingViaJPA_thenFieldIgnored() {
+ userDao.saveUser(user);
+ List allUsers = userDao.getUsers();
+ User savedUser = allUsers.get(allUsers.indexOf(user));
+
+ assertNull(savedUser.getCurrentDevice());
+ }
+
+ @Test
+ public void givenFieldWithTransientAnnotation_whenSerializingObject_thenFieldSerialized() throws IOException, ClassNotFoundException {
+
+ FileOutputStream fout = new FileOutputStream("test.obj");
+ ObjectOutputStream out = new ObjectOutputStream(fout);
+ out.writeObject(user);
+ out.flush();
+ out.close();
+
+ FileInputStream fin = new FileInputStream("test.obj");
+ ObjectInputStream in = new ObjectInputStream(fin);
+ User savedUser = (User) in.readObject();
+ in.close();
+
+ assertEquals(user.getCurrentDevice(), savedUser.getCurrentDevice());
+ }
+
+ @Test
+ public void givenFieldWithTransientAnnotation_whenSerializingToJSON_thenFieldSerialized() throws JsonProcessingException {
+ ObjectMapper objectMapper = new ObjectMapper();
+ String json = objectMapper.writeValueAsString(user);
+ User savedUser = objectMapper.readValue(json, User.class);
+
+ assertEquals(user.getCurrentDevice(), savedUser.getCurrentDevice());
+ }
+
+ @Test
+ public void givenJacksonHibernate5Module_whenSerializingTransientAnnotation_thenFieldIgnored() throws JsonProcessingException {
+ ObjectMapper objectMapper = new ObjectMapper();
+ objectMapper.registerModule(new Hibernate5Module());
+ String json = objectMapper.writeValueAsString(user);
+ User savedUser = objectMapper.readValue(json, User.class);
+
+ assertNull(savedUser.getCurrentDevice());
+ }
+
+ @Test
+ public void givenPropagateTransientFieldFlag_whenSerializingTransientAnnotation_thenFieldSerialized() throws JsonProcessingException {
+ ObjectMapper objectMapper = new ObjectMapper();
+ objectMapper.configure(MapperFeature.PROPAGATE_TRANSIENT_MARKER, true);
+ String json = objectMapper.writeValueAsString(user);
+ User savedUser = objectMapper.readValue(json, User.class);
+
+ assertEquals(user.getCurrentDevice(), savedUser.getCurrentDevice());
+ }
+}
diff --git a/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/hibernateunproxy/HibernateProxyIntegrationTest.java b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/hibernateunproxy/HibernateProxyIntegrationTest.java
new file mode 100644
index 0000000000..717745bb13
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/hibernateunproxy/HibernateProxyIntegrationTest.java
@@ -0,0 +1,75 @@
+package com.baeldung.jpa.hibernateunproxy;
+
+import org.hibernate.Hibernate;
+import org.hibernate.proxy.HibernateProxy;
+import org.junit.Assert;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Test;
+
+import javax.persistence.EntityManager;
+import javax.persistence.EntityManagerFactory;
+import javax.persistence.Persistence;
+import java.math.BigDecimal;
+
+import static org.junit.jupiter.api.Assertions.assertThrows;
+
+public class HibernateProxyIntegrationTest {
+
+ private static EntityManager entityManager;
+
+ @BeforeAll
+ public static void setup() {
+ EntityManagerFactory factory = Persistence.createEntityManagerFactory("jpa-h2-hibernate-unproxy");
+ entityManager = factory.createEntityManager();
+ populateH2DB();
+ }
+
+ @Test
+ public void givenPaymentReceipt_whenAccessingPayment_thenVerifyType() {
+ PaymentReceipt paymentReceipt = entityManager.find(PaymentReceipt.class, 3L);
+ Assert.assertTrue(paymentReceipt.getPayment() instanceof HibernateProxy);
+ }
+
+ @Test
+ public void givenWebUserProxy_whenCreatingPayment_thenExecuteSingleStatement() {
+ entityManager.getTransaction().begin();
+
+ WebUser webUser = entityManager.getReference(WebUser.class, 1L);
+ Payment payment = new CreditCardPayment(new BigDecimal(100), webUser, "CN-1234");
+ entityManager.persist(payment);
+
+ entityManager.getTransaction().commit();
+ Assert.assertTrue(webUser instanceof HibernateProxy);
+ }
+
+ @Test
+ public void givenPaymentReceipt_whenCastingPaymentToConcreteClass_thenThrowClassCastException() {
+ PaymentReceipt paymentReceipt = entityManager.find(PaymentReceipt.class, 3L);
+ assertThrows(ClassCastException.class, () -> {
+ CreditCardPayment creditCardPayment = (CreditCardPayment) paymentReceipt.getPayment();
+ });
+ }
+
+ @Test
+ public void givenPaymentReceipt_whenPaymentIsUnproxied_thenReturnRealEntityObject() {
+ PaymentReceipt paymentReceipt = entityManager.find(PaymentReceipt.class, 3L);
+ Assert.assertTrue(Hibernate.unproxy(paymentReceipt.getPayment()) instanceof CreditCardPayment);
+ }
+
+ private static void populateH2DB() {
+ entityManager.getTransaction().begin();
+
+ WebUser webUser = new WebUser("name");
+ entityManager.persist(webUser);
+
+ Payment payment = new CreditCardPayment(new BigDecimal(100), webUser, "CN-1234");
+ entityManager.persist(payment);
+
+ PaymentReceipt receipt = new PaymentReceipt(payment);
+ entityManager.persist(receipt);
+
+ entityManager.getTransaction().commit();
+ entityManager.clear();
+ }
+
+}
diff --git a/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/index/IndexIntegrationTest.java b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/index/IndexIntegrationTest.java
new file mode 100644
index 0000000000..f59450567b
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/index/IndexIntegrationTest.java
@@ -0,0 +1,50 @@
+package com.baeldung.jpa.index;
+
+import org.hibernate.exception.ConstraintViolationException;
+import org.junit.Assert;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+import javax.persistence.EntityManager;
+import javax.persistence.EntityManagerFactory;
+import javax.persistence.Persistence;
+import java.util.Optional;
+
+public class IndexIntegrationTest {
+ private static EntityManagerFactory factory;
+ private static EntityManager entityManager;
+
+ @BeforeClass
+ public static void setup() {
+ factory = Persistence.createEntityManagerFactory("jpa-index");
+ entityManager = factory.createEntityManager();
+ }
+
+ @Test
+ public void givenStudent_whenPersistStudentWithSameFirstName_thenConstraintViolationException() {
+ Student student = new Student();
+ student.setFirstName("FirstName");
+ student.setLastName("LastName");
+
+ Student student2 = new Student();
+ student2.setFirstName("FirstName");
+ student2.setLastName("LastName2");
+
+ entityManager.getTransaction().begin();
+ entityManager.persist(student);
+ entityManager.getTransaction().commit();
+
+ Assert.assertEquals(1L, (long) student.getId());
+
+ entityManager.getTransaction().begin();
+ try {
+ entityManager.persist(student2);
+ entityManager.getTransaction().commit();
+ Assert.fail("Should raise an exception - unique key violation");
+ } catch (Exception ex) {
+ Assert.assertTrue(Optional.of(ex).map(Throwable::getCause).map(Throwable::getCause).filter(x -> x instanceof ConstraintViolationException).isPresent());
+ } finally {
+ entityManager.getTransaction().rollback();
+ }
+ }
+}
diff --git a/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/multiplebagfetchexception/MultipleBagFetchExceptionIntegrationTest.java b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/multiplebagfetchexception/MultipleBagFetchExceptionIntegrationTest.java
new file mode 100644
index 0000000000..648650ad8a
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/multiplebagfetchexception/MultipleBagFetchExceptionIntegrationTest.java
@@ -0,0 +1,124 @@
+package com.baeldung.jpa.multiplebagfetchexception;
+
+import org.hibernate.jpa.QueryHints;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Test;
+
+import javax.persistence.EntityManager;
+import javax.persistence.EntityManagerFactory;
+import javax.persistence.Persistence;
+import javax.persistence.Query;
+import java.util.List;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertThrows;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+public class MultipleBagFetchExceptionIntegrationTest {
+
+ private static EntityManager entityManager;
+
+ @BeforeAll
+ public static void setup() {
+ EntityManagerFactory factory = Persistence.createEntityManagerFactory("jpa-h2-multiple-bag-fetch-exception");
+ entityManager = factory.createEntityManager();
+ populateH2DB();
+ }
+
+ @Test
+ public void whenFetchingMoreThanOneBag_thenThrowAnException() {
+ IllegalArgumentException exception =
+ assertThrows(IllegalArgumentException.class, () -> {
+ String jpql = "SELECT artist FROM Artist artist "
+ + "JOIN FETCH artist.songs "
+ + "JOIN FETCH artist.offers ";
+
+ entityManager.createQuery(jpql);
+ });
+
+ final String expectedMessagePart = "MultipleBagFetchException";
+ final String actualMessage = exception.getMessage();
+
+ assertTrue(actualMessage.contains(expectedMessagePart));
+ }
+
+ @Test
+ public void whenFetchingOneBagAndSet_thenRetrieveSuccess() {
+ String jpql = "SELECT DISTINCT album FROM Album album "
+ + "LEFT JOIN FETCH album.songs "
+ + "LEFT JOIN FETCH album.followers "
+ + "WHERE album.id = 1";
+
+ Query query = entityManager.createQuery(jpql)
+ .setHint(QueryHints.HINT_PASS_DISTINCT_THROUGH, false);
+
+ assertEquals(1, query.getResultList().size());
+ }
+
+ @Test
+ public void whenUsingMultipleQueries_thenRetrieveSuccess() {
+ String jpql = "SELECT DISTINCT artist FROM Artist artist "
+ + "LEFT JOIN FETCH artist.songs ";
+
+ List artists = entityManager.createQuery(jpql, Artist.class)
+ .setHint(QueryHints.HINT_PASS_DISTINCT_THROUGH, false)
+ .getResultList();
+
+ jpql = "SELECT DISTINCT artist FROM Artist artist "
+ + "LEFT JOIN FETCH artist.offers "
+ + "WHERE artist IN :artists ";
+
+ artists = entityManager.createQuery(jpql, Artist.class)
+ .setParameter("artists", artists)
+ .setHint(QueryHints.HINT_PASS_DISTINCT_THROUGH, false)
+ .getResultList();
+
+ assertEquals(2, artists.size());
+ }
+
+ @Test
+ public void whenFetchingOneBagAndOneList_thenRetrieveSuccess() {
+ String jpql = "SELECT DISTINCT user FROM User user "
+ + "LEFT JOIN FETCH user.playlists "
+ + "LEFT JOIN FETCH user.favoriteSongs ";
+
+ List users = entityManager.createQuery(jpql, User.class)
+ .setHint(QueryHints.HINT_PASS_DISTINCT_THROUGH, false)
+ .getResultList();
+
+ assertEquals(3, users.size());
+ }
+
+ private static void populateH2DB() {
+ entityManager.getTransaction().begin();
+
+ Album album = new Album("album-name");
+ Artist artist1 = new Artist("artist-name-1");
+ Artist artist2 = new Artist("artist-name-2");
+ artist2.createOffer("offer-name-1");
+ artist2.createOffer("offer-name-2");
+ entityManager.persist(album);
+ entityManager.persist(artist1);
+ entityManager.persist(artist2);
+
+ Song song1 = new Song("song-name-1", artist2);
+ song1.assignToAlbum(album);
+ entityManager.persist(song1);
+
+ User user1 = new User("user-name-1");
+ user1.followAlbum(album);
+ entityManager.persist(user1);
+
+ User user2 = new User("user-name-2");
+ user2.followAlbum(album);
+ entityManager.persist(user2);
+
+ User user3 = new User("user-name-3");
+ user3.createPlaylist("playlist-name");
+ user3.addSongToFavorites(song1);
+ entityManager.persist(user3);
+
+ entityManager.getTransaction().commit();
+ }
+
+}
diff --git a/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/removal/CascadeTypeRemoveIntegrationTest.java b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/removal/CascadeTypeRemoveIntegrationTest.java
new file mode 100644
index 0000000000..8f99723ac6
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/removal/CascadeTypeRemoveIntegrationTest.java
@@ -0,0 +1,73 @@
+package com.baeldung.jpa.removal;
+
+import org.junit.Assert;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+import javax.persistence.EntityManager;
+import javax.persistence.EntityManagerFactory;
+import javax.persistence.Persistence;
+import javax.persistence.TypedQuery;
+import javax.persistence.criteria.CriteriaBuilder;
+import javax.persistence.criteria.CriteriaQuery;
+import javax.persistence.criteria.Root;
+import java.util.List;
+
+public class CascadeTypeRemoveIntegrationTest {
+
+ private static EntityManagerFactory factory;
+ private static EntityManager entityManager;
+
+ @BeforeClass
+ public static void setup() {
+ factory = Persistence.createEntityManagerFactory("jpa-h2-removal");
+ entityManager = factory.createEntityManager();
+ }
+
+ @Test
+ public void whenOrderRequestIsDeleted_thenDeleteShipmentInfo() {
+ createOrderRequestWithShipmentInfo();
+
+ OrderRequest orderRequest = entityManager.find(OrderRequest.class, 1L);
+
+ entityManager.getTransaction().begin();
+ entityManager.remove(orderRequest);
+ entityManager.getTransaction().commit();
+
+ Assert.assertEquals(0, findAllOrderRequest().size());
+ Assert.assertEquals(0, findAllShipmentInfo().size());
+ }
+
+ private void createOrderRequestWithShipmentInfo() {
+ ShipmentInfo shipmentInfo = new ShipmentInfo("name");
+ OrderRequest orderRequest = new OrderRequest(shipmentInfo);
+
+ entityManager.getTransaction().begin();
+ entityManager.persist(orderRequest);
+ entityManager.getTransaction().commit();
+
+ Assert.assertEquals(1, findAllOrderRequest().size());
+ Assert.assertEquals(1, findAllShipmentInfo().size());
+ }
+
+ private List findAllOrderRequest() {
+ CriteriaBuilder cb = entityManager.getCriteriaBuilder();
+ CriteriaQuery cq = cb.createQuery(OrderRequest.class);
+ Root root = cq.from(OrderRequest.class);
+ CriteriaQuery findAll = cq.select(root);
+ TypedQuery findAllQuery = entityManager.createQuery(findAll);
+
+ return findAllQuery.getResultList();
+ }
+
+ private List findAllShipmentInfo() {
+ CriteriaBuilder cb = entityManager.getCriteriaBuilder();
+ CriteriaQuery cq = cb.createQuery(ShipmentInfo.class);
+ Root root = cq.from(ShipmentInfo.class);
+ CriteriaQuery findAll = cq.select(root);
+ TypedQuery findAllQuery = entityManager.createQuery(findAll);
+
+ return findAllQuery.getResultList();
+ }
+
+}
diff --git a/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/removal/OrphanRemovalIntegrationTest.java b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/removal/OrphanRemovalIntegrationTest.java
new file mode 100644
index 0000000000..615e8cf3a8
--- /dev/null
+++ b/persistence-modules/java-jpa-3/src/test/java/com/baeldung/jpa/removal/OrphanRemovalIntegrationTest.java
@@ -0,0 +1,92 @@
+package com.baeldung.jpa.removal;
+
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+import javax.persistence.EntityManager;
+import javax.persistence.EntityManagerFactory;
+import javax.persistence.Persistence;
+import javax.persistence.PersistenceException;
+import javax.persistence.TypedQuery;
+import javax.persistence.criteria.CriteriaBuilder;
+import javax.persistence.criteria.CriteriaQuery;
+import javax.persistence.criteria.Root;
+import java.util.ArrayList;
+import java.util.List;
+
+public class OrphanRemovalIntegrationTest {
+
+ private static EntityManagerFactory factory;
+ private static EntityManager entityManager;
+
+ @Before
+ public void setup() {
+ factory = Persistence.createEntityManagerFactory("jpa-h2-removal");
+ entityManager = factory.createEntityManager();
+ }
+
+ @Test
+ public void whenLineItemIsRemovedFromOrderRequest_thenDeleteOrphanedLineItem() {
+ createOrderRequestWithLineItems();
+
+ OrderRequest orderRequest = entityManager.find(OrderRequest.class, 1L);
+ LineItem lineItem = entityManager.find(LineItem.class, 2L);
+ orderRequest.removeLineItem(lineItem);
+
+ entityManager.getTransaction().begin();
+ entityManager.merge(orderRequest);
+ entityManager.getTransaction().commit();
+
+ Assert.assertEquals(1, findAllOrderRequest().size());
+ Assert.assertEquals(2, findAllLineItem().size());
+ }
+
+ @Test(expected = PersistenceException.class)
+ public void whenLineItemsIsReassigned_thenThrowAnException() {
+ createOrderRequestWithLineItems();
+
+ OrderRequest orderRequest = entityManager.find(OrderRequest.class, 1L);
+ orderRequest.setLineItems(new ArrayList<>());
+
+ entityManager.getTransaction().begin();
+ entityManager.merge(orderRequest);
+ entityManager.getTransaction().commit();
+ }
+
+ private void createOrderRequestWithLineItems() {
+ List lineItems = new ArrayList<>();
+ lineItems.add(new LineItem("line item 1"));
+ lineItems.add(new LineItem("line item 2"));
+ lineItems.add(new LineItem("line item 3"));
+
+ OrderRequest orderRequest = new OrderRequest(lineItems);
+
+ entityManager.getTransaction().begin();
+ entityManager.persist(orderRequest);
+ entityManager.getTransaction().commit();
+
+ Assert.assertEquals(1, findAllOrderRequest().size());
+ Assert.assertEquals(3, findAllLineItem().size());
+ }
+
+ private List findAllOrderRequest() {
+ CriteriaBuilder cb = entityManager.getCriteriaBuilder();
+ CriteriaQuery cq = cb.createQuery(OrderRequest.class);
+ Root root = cq.from(OrderRequest.class);
+ CriteriaQuery findAll = cq.select(root);
+ TypedQuery findAllQuery = entityManager.createQuery(findAll);
+
+ return findAllQuery.getResultList();
+ }
+
+ private List findAllLineItem() {
+ CriteriaBuilder cb = entityManager.getCriteriaBuilder();
+ CriteriaQuery cq = cb.createQuery(LineItem.class);
+ Root root = cq.from(LineItem.class);
+ CriteriaQuery findAll = cq.select(root);
+ TypedQuery findAllQuery = entityManager.createQuery(findAll);
+
+ return findAllQuery.getResultList();
+ }
+}
diff --git a/persistence-modules/java-jpa/src/test/java/com/baeldung/jpa/enums/ArticleUnitTest.java b/persistence-modules/java-jpa/src/test/java/com/baeldung/jpa/enums/ArticleUnitTest.java
index 82f3abc04d..9d98d6b86f 100644
--- a/persistence-modules/java-jpa/src/test/java/com/baeldung/jpa/enums/ArticleUnitTest.java
+++ b/persistence-modules/java-jpa/src/test/java/com/baeldung/jpa/enums/ArticleUnitTest.java
@@ -7,7 +7,9 @@ import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.EntityTransaction;
import javax.persistence.Persistence;
+import javax.persistence.TypedQuery;
import java.util.HashMap;
+import java.util.List;
import java.util.Map;
import static org.junit.jupiter.api.Assertions.assertEquals;
@@ -19,7 +21,7 @@ public class ArticleUnitTest {
@BeforeClass
public static void setup() {
- Map properties = new HashMap();
+ Map properties = new HashMap<>();
properties.put("hibernate.show_sql", "true");
properties.put("hibernate.format_sql", "true");
emFactory = Persistence.createEntityManagerFactory("jpa-h2", properties);
@@ -115,4 +117,53 @@ public class ArticleUnitTest {
assertEquals(Category.MUSIC, persistedArticle.getCategory());
}
+ @Test
+ public void shouldFindArticleByCategory() {
+ // given
+ Article article = new Article();
+ article.setId(5);
+ article.setTitle("static");
+ article.setCategory(Category.SPORT);
+
+ EntityTransaction tx = em.getTransaction();
+ tx.begin();
+ em.persist(article);
+ tx.commit();
+
+ String jpql = "select a from Article a where a.category = com.baeldung.jpa.enums.Category.SPORT";
+
+ // when
+ List articles = em.createQuery(jpql, Article.class).getResultList();
+
+ // then
+ assertEquals(1, articles.size());
+ assertEquals(Category.SPORT, articles.get(0).getCategory());
+ assertEquals("static", articles.get(0).getTitle());
+ }
+
+ @Test
+ public void shouldFindArticleByCategoryParameter() {
+ // given
+ Article article = new Article();
+ article.setId(6);
+ article.setTitle("dynamic");
+ article.setCategory(Category.TECHNOLOGY);
+
+ EntityTransaction tx = em.getTransaction();
+ tx.begin();
+ em.persist(article);
+ tx.commit();
+
+ String jpql = "select a from Article a where a.category = :category";
+
+ // when
+ TypedQuery query = em.createQuery(jpql, Article.class);
+ query.setParameter("category", Category.TECHNOLOGY);
+ List articles = query.getResultList();
+
+ // then
+ assertEquals(1, articles.size());
+ assertEquals(Category.TECHNOLOGY, articles.get(0).getCategory());
+ assertEquals("dynamic", articles.get(0).getTitle());
+ }
}
\ No newline at end of file
diff --git a/persistence-modules/jnosql/pom.xml b/persistence-modules/jnosql/pom.xml
index fb7ac72b05..81c62ee562 100644
--- a/persistence-modules/jnosql/pom.xml
+++ b/persistence-modules/jnosql/pom.xml
@@ -21,7 +21,7 @@
- 0.0.5
+ 0.0.6
diff --git a/persistence-modules/pom.xml b/persistence-modules/pom.xml
index c7905a178d..8789a8473b 100644
--- a/persistence-modules/pom.xml
+++ b/persistence-modules/pom.xml
@@ -86,6 +86,7 @@
spring-jpa
spring-jpa-2
spring-jdbc
+ spring-jooq
spring-persistence-simple
diff --git a/persistence-modules/querydsl/pom.xml b/persistence-modules/querydsl/pom.xml
index 9f6802ff77..a611c309b6 100644
--- a/persistence-modules/querydsl/pom.xml
+++ b/persistence-modules/querydsl/pom.xml
@@ -31,7 +31,7 @@
org.hibernate
- hibernate-entitymanager
+ hibernate-core
${hibernate.version}
compile
diff --git a/persistence-modules/redis/src/test/java/com/baeldung/spring/redis/configuration/controller/BooksControllerUnitTest.java b/persistence-modules/redis/src/test/java/com/baeldung/spring/redis/configuration/controller/BooksControllerUnitTest.java
index a5c3340065..757b32385b 100644
--- a/persistence-modules/redis/src/test/java/com/baeldung/spring/redis/configuration/controller/BooksControllerUnitTest.java
+++ b/persistence-modules/redis/src/test/java/com/baeldung/spring/redis/configuration/controller/BooksControllerUnitTest.java
@@ -10,15 +10,15 @@ import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Spy;
+import org.mockito.junit.MockitoJUnitRunner;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.baeldung.spring.redis.configuration.entity.Book;
import com.baeldung.spring.redis.configuration.repository.BooksRepository;
-@RunWith(SpringJUnit4ClassRunner.class)
+@RunWith(MockitoJUnitRunner.class)
public class BooksControllerUnitTest {
- @Spy
@InjectMocks
private BooksController booksController;
diff --git a/persistence-modules/redis/src/test/java/com/baeldung/spring/redis/configuration/repository/BooksRepositoryUnitTest.java b/persistence-modules/redis/src/test/java/com/baeldung/spring/redis/configuration/repository/BooksRepositoryUnitTest.java
index 1edf9c7e89..f32800e165 100644
--- a/persistence-modules/redis/src/test/java/com/baeldung/spring/redis/configuration/repository/BooksRepositoryUnitTest.java
+++ b/persistence-modules/redis/src/test/java/com/baeldung/spring/redis/configuration/repository/BooksRepositoryUnitTest.java
@@ -11,16 +11,16 @@ import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Spy;
+import org.mockito.junit.MockitoJUnitRunner;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.ValueOperations;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import com.baeldung.spring.redis.configuration.entity.Book;
-@RunWith(SpringJUnit4ClassRunner.class)
+@RunWith(MockitoJUnitRunner.class)
public class BooksRepositoryUnitTest {
- @Spy
@InjectMocks
private BooksRepository booksRepository;
diff --git a/persistence-modules/spring-boot-persistence-2/README.md b/persistence-modules/spring-boot-persistence-2/README.md
index 392218d2bf..d7c13fd363 100644
--- a/persistence-modules/spring-boot-persistence-2/README.md
+++ b/persistence-modules/spring-boot-persistence-2/README.md
@@ -5,4 +5,6 @@
- [Integrating Spring Boot with HSQLDB](https://www.baeldung.com/spring-boot-hsqldb)
- [List of In-Memory Databases](https://www.baeldung.com/java-in-memory-databases)
- [Oracle Connection Pooling With Spring](https://www.baeldung.com/spring-oracle-connection-pooling)
+- [Object States in Hibernate’s Session](https://www.baeldung.com/hibernate-session-object-states)
+- [Storing Files Indexed by a Database](https://www.baeldung.com/java-db-storing-files)
- More articles: [[<-- prev]](../spring-boot-persistence)
diff --git a/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/FileLocationService.java b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/FileLocationService.java
new file mode 100644
index 0000000000..6b2f33e885
--- /dev/null
+++ b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/FileLocationService.java
@@ -0,0 +1,31 @@
+package com.baeldung.db.indexing;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.core.io.FileSystemResource;
+import org.springframework.http.HttpStatus;
+import org.springframework.stereotype.Service;
+import org.springframework.web.server.ResponseStatusException;
+
+@Service
+class FileLocationService {
+
+ @Autowired
+ FileSystemRepository fileSystemRepository;
+ @Autowired
+ ImageDbRepository imageDbRepository;
+
+ Long save(byte[] bytes, String imageName) throws Exception {
+ String location = fileSystemRepository.save(bytes, imageName);
+
+ return imageDbRepository.save(new Image(imageName, location))
+ .getId();
+ }
+
+ FileSystemResource find(Long imageId) {
+ Image image = imageDbRepository.findById(imageId)
+ .orElseThrow(() -> new ResponseStatusException(HttpStatus.NOT_FOUND));
+
+ return fileSystemRepository.findInFileSystem(image.getLocation());
+ }
+
+}
diff --git a/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/FileSystemImageController.java b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/FileSystemImageController.java
new file mode 100644
index 0000000000..09e33bb943
--- /dev/null
+++ b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/FileSystemImageController.java
@@ -0,0 +1,30 @@
+package com.baeldung.db.indexing;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.core.io.FileSystemResource;
+import org.springframework.http.MediaType;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.multipart.MultipartFile;
+
+@RestController
+@RequestMapping("file-system")
+class FileSystemImageController {
+
+ @Autowired
+ FileLocationService fileLocationService;
+
+ @PostMapping("/image")
+ Long uploadImage(@RequestParam MultipartFile image) throws Exception {
+ return fileLocationService.save(image.getBytes(), image.getOriginalFilename());
+ }
+
+ @GetMapping(value = "/image/{imageId}", produces = MediaType.IMAGE_JPEG_VALUE)
+ FileSystemResource downloadImage(@PathVariable Long imageId) throws Exception {
+ return fileLocationService.find(imageId);
+ }
+}
diff --git a/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/FileSystemRepository.java b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/FileSystemRepository.java
new file mode 100644
index 0000000000..bc6bdecfed
--- /dev/null
+++ b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/FileSystemRepository.java
@@ -0,0 +1,36 @@
+package com.baeldung.db.indexing;
+
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.util.Date;
+
+import org.springframework.core.io.FileSystemResource;
+import org.springframework.stereotype.Repository;
+
+@Repository
+class FileSystemRepository {
+
+ String RESOURCES_DIR = FileSystemRepository.class.getResource("/")
+ .getPath();
+
+ String save(byte[] content, String imageName) throws Exception {
+ Path newFile = Paths.get(RESOURCES_DIR + new Date().getTime() + "-" + imageName);
+ Files.createDirectories(newFile.getParent());
+
+ Files.write(newFile, content);
+
+ return newFile.toAbsolutePath()
+ .toString();
+ }
+
+ FileSystemResource findInFileSystem(String location) {
+ try {
+ return new FileSystemResource(Paths.get(location));
+ } catch (Exception e) {
+ // Handle access or file not found problems.
+ throw new RuntimeException();
+ }
+ }
+
+}
diff --git a/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/Image.java b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/Image.java
new file mode 100644
index 0000000000..e3fcf53f81
--- /dev/null
+++ b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/Image.java
@@ -0,0 +1,66 @@
+package com.baeldung.db.indexing;
+
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.Id;
+import javax.persistence.Lob;
+
+@Entity
+class Image {
+
+ @Id
+ @GeneratedValue
+ Long id;
+
+ String name;
+
+ String location;
+
+ @Lob
+ byte[] content;
+
+ public Image() {
+ }
+
+ public Image(Long id) {
+ this.id = id;
+ }
+
+ public Image(String name, String location) {
+ this.name = name;
+ this.location = location;
+ }
+
+ public byte[] getContent() {
+ return content;
+ }
+
+ public void setContent(byte[] content) {
+ this.content = content;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getLocation() {
+ return location;
+ }
+
+ public void setLocation(String location) {
+ this.location = location;
+ }
+
+ public long getId() {
+ return id;
+ }
+
+ public void setId(long id) {
+ this.id = id;
+ }
+
+}
diff --git a/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/ImageArchiveApplication.java b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/ImageArchiveApplication.java
new file mode 100644
index 0000000000..02d2db32b3
--- /dev/null
+++ b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/ImageArchiveApplication.java
@@ -0,0 +1,13 @@
+package com.baeldung.db.indexing;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class ImageArchiveApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(ImageArchiveApplication.class, args);
+ }
+
+}
diff --git a/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/ImageController.java b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/ImageController.java
new file mode 100644
index 0000000000..1b2378a51f
--- /dev/null
+++ b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/ImageController.java
@@ -0,0 +1,46 @@
+package com.baeldung.db.indexing;
+
+import java.io.IOException;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.core.io.ByteArrayResource;
+import org.springframework.core.io.Resource;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.MediaType;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.multipart.MultipartFile;
+import org.springframework.web.server.ResponseStatusException;
+
+import lombok.extern.slf4j.Slf4j;
+
+@RestController
+@Slf4j
+class ImageController {
+
+ @Autowired
+ ImageDbRepository imageDbRepository;
+
+ @PostMapping("/image")
+ long uploadImage(@RequestParam MultipartFile multipartImage) throws IOException {
+ Image dbImage = new Image();
+ dbImage.setName(multipartImage.getOriginalFilename());
+ dbImage.setContent(multipartImage.getBytes());
+
+ return imageDbRepository.save(dbImage)
+ .getId();
+ }
+
+ @GetMapping(value = "/image/{imageId}", produces = MediaType.IMAGE_JPEG_VALUE)
+ Resource downloadImage(@PathVariable Long imageId) {
+ byte[] image = imageDbRepository.findById(imageId)
+ .orElseThrow(() -> new ResponseStatusException(HttpStatus.NOT_FOUND))
+ .getContent();
+
+ return new ByteArrayResource(image);
+ }
+
+}
diff --git a/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/ImageDbRepository.java b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/ImageDbRepository.java
new file mode 100644
index 0000000000..eb33f14dae
--- /dev/null
+++ b/persistence-modules/spring-boot-persistence-2/src/main/java/com/baeldung/db/indexing/ImageDbRepository.java
@@ -0,0 +1,9 @@
+package com.baeldung.db.indexing;
+
+import org.springframework.data.jpa.repository.JpaRepository;
+import org.springframework.stereotype.Repository;
+
+@Repository
+interface ImageDbRepository extends JpaRepository {
+
+}
diff --git a/persistence-modules/spring-boot-persistence-2/src/test/java/com/baeldung/db/indexing/FileSystemImageIntegrationTest.java b/persistence-modules/spring-boot-persistence-2/src/test/java/com/baeldung/db/indexing/FileSystemImageIntegrationTest.java
new file mode 100644
index 0000000000..83f5bae095
--- /dev/null
+++ b/persistence-modules/spring-boot-persistence-2/src/test/java/com/baeldung/db/indexing/FileSystemImageIntegrationTest.java
@@ -0,0 +1,73 @@
+package com.baeldung.db.indexing;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.mockito.BDDMockito.given;
+import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
+
+import java.io.InputStream;
+import java.nio.file.Paths;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.mock.mockito.MockBean;
+import org.springframework.core.io.FileSystemResource;
+import org.springframework.http.MediaType;
+import org.springframework.mock.web.MockMultipartFile;
+import org.springframework.test.web.servlet.MockMvc;
+import org.springframework.test.web.servlet.MvcResult;
+import org.springframework.test.web.servlet.request.MockMultipartHttpServletRequestBuilder;
+import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
+
+@SpringBootTest(classes = ImageArchiveApplication.class)
+@AutoConfigureMockMvc
+class FileSystemImageIntegrationTest {
+
+ @Autowired
+ MockMvc mockMvc;
+
+ @MockBean
+ FileLocationService fileLocationService;
+
+ @Test
+ void givenJpegImage_whenUploadIt_thenReturnItsId() throws Exception {
+ ClassLoader classLoader = ClassLoader.getSystemClassLoader();
+ InputStream image = classLoader.getResourceAsStream("baeldung.jpeg");
+
+ MockMultipartFile jpegImage = new MockMultipartFile("image", "baeldung", MediaType.TEXT_PLAIN_VALUE, image);
+ MockMultipartHttpServletRequestBuilder multipartRequest = MockMvcRequestBuilders.multipart("/file-system/image")
+ .file(jpegImage);
+
+ given(fileLocationService.save(jpegImage.getBytes(), "baeldung"))
+ .willReturn(1L);
+
+ MvcResult result = mockMvc.perform(multipartRequest)
+ .andExpect(status().isOk())
+ .andReturn();
+
+ assertThat(result.getResponse()
+ .getContentAsString())
+ .isEqualTo("1");
+ }
+
+ @Test
+ void givenBaeldungImage_whenDownloadIt_thenReturnTheImage() throws Exception {
+ given(fileLocationService.find(1L))
+ .willReturn(baeldungJpegResource());
+
+ mockMvc.perform(MockMvcRequestBuilders
+ .get("/file-system/image/1")
+ .contentType(MediaType.IMAGE_JPEG_VALUE))
+ .andExpect(status().isOk());
+ }
+
+ private FileSystemResource baeldungJpegResource() {
+ ClassLoader classLoader = ClassLoader.getSystemClassLoader();
+ String imagePath = classLoader.getResource("baeldung.jpeg")
+ .getFile();
+
+ return new FileSystemResource(Paths.get(imagePath));
+ }
+
+}
diff --git a/persistence-modules/spring-boot-persistence-2/src/test/java/com/baeldung/db/indexing/ImageIntegrationTest.java b/persistence-modules/spring-boot-persistence-2/src/test/java/com/baeldung/db/indexing/ImageIntegrationTest.java
new file mode 100644
index 0000000000..e38e0a21a9
--- /dev/null
+++ b/persistence-modules/spring-boot-persistence-2/src/test/java/com/baeldung/db/indexing/ImageIntegrationTest.java
@@ -0,0 +1,78 @@
+package com.baeldung.db.indexing;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.mockito.ArgumentMatchers.any;
+import static org.mockito.BDDMockito.given;
+import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.nio.file.Files;
+import java.nio.file.Paths;
+import java.util.Optional;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.mock.mockito.MockBean;
+import org.springframework.http.MediaType;
+import org.springframework.mock.web.MockMultipartFile;
+import org.springframework.test.web.servlet.MockMvc;
+import org.springframework.test.web.servlet.MvcResult;
+import org.springframework.test.web.servlet.request.MockMultipartHttpServletRequestBuilder;
+import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
+
+@SpringBootTest(classes = ImageArchiveApplication.class)
+@AutoConfigureMockMvc
+class ImageIntegrationTest {
+
+ @Autowired
+ MockMvc mockMvc;
+
+ @MockBean
+ ImageDbRepository imageRepository;
+
+ @Test
+ void givenBaeldungJpegImage_whenUploadIt_thenReturnItsId() throws Exception {
+ given(imageRepository.save(any()))
+ .willReturn(new Image(1L));
+
+ MvcResult result = mockMvc.perform(createUploadImageRequest())
+ .andExpect(status().isOk())
+ .andReturn();
+
+ assertThat(result.getResponse()
+ .getContentAsString())
+ .isEqualTo("1");
+ }
+
+ @Test
+ void givenExistingImage_whenDownloadIt_thenReturnHttpStatusOk() throws Exception {
+ given(imageRepository.findById(1L))
+ .willReturn(Optional.of(baeldungImage()));
+
+ mockMvc.perform(MockMvcRequestBuilders
+ .get("/image/1")
+ .contentType(MediaType.IMAGE_JPEG_VALUE))
+ .andExpect(status().isOk());
+ }
+
+ private MockMultipartHttpServletRequestBuilder createUploadImageRequest() throws IOException {
+ ClassLoader classLoader = ClassLoader.getSystemClassLoader();
+ InputStream image = classLoader.getResourceAsStream("baeldung.jpeg");
+
+ return MockMvcRequestBuilders.multipart("/image")
+ .file(new MockMultipartFile("multipartImage", "baeldung", MediaType.TEXT_PLAIN_VALUE, image));
+ }
+
+ private Image baeldungImage() throws IOException {
+ ClassLoader classLoader = ClassLoader.getSystemClassLoader();
+
+ Image mockImage = new Image();
+ mockImage.setContent(Files.readAllBytes(Paths.get(classLoader.getResource("baeldung.jpeg")
+ .getFile())));
+ return mockImage;
+ }
+
+}
diff --git a/persistence-modules/spring-boot-persistence-2/src/test/resources/baeldung.jpeg b/persistence-modules/spring-boot-persistence-2/src/test/resources/baeldung.jpeg
new file mode 100644
index 0000000000..2654748a27
Binary files /dev/null and b/persistence-modules/spring-boot-persistence-2/src/test/resources/baeldung.jpeg differ
diff --git a/persistence-modules/spring-boot-persistence-mongodb/README.md b/persistence-modules/spring-boot-persistence-mongodb/README.md
index f277ef66ca..97241ad464 100644
--- a/persistence-modules/spring-boot-persistence-mongodb/README.md
+++ b/persistence-modules/spring-boot-persistence-mongodb/README.md
@@ -3,3 +3,6 @@
- [Auto-Generated Field for MongoDB using Spring Boot](https://www.baeldung.com/spring-boot-mongodb-auto-generated-field)
- [Spring Boot Integration Testing with Embedded MongoDB](http://www.baeldung.com/spring-boot-embedded-mongodb)
- [Upload and Retrieve Files Using MongoDB and Spring Boot](https://www.baeldung.com/spring-boot-mongodb-upload-file)
+- [GridFS in Spring Data MongoDB](http://www.baeldung.com/spring-data-mongodb-gridfs)
+- [ZonedDateTime with Spring Data MongoDB](https://www.baeldung.com/spring-data-mongodb-zoneddatetime)
+
diff --git a/persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/config/MongoConfig.java b/persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/config/MongoConfig.java
new file mode 100644
index 0000000000..3cfefa099c
--- /dev/null
+++ b/persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/config/MongoConfig.java
@@ -0,0 +1,53 @@
+package com.baeldung.zoneddatetime.config;
+
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.List;
+
+import org.springframework.context.annotation.Configuration;
+import org.springframework.core.convert.converter.Converter;
+import org.springframework.data.mongodb.config.AbstractMongoClientConfiguration;
+import org.springframework.data.mongodb.core.convert.MongoCustomConversions;
+import org.springframework.data.mongodb.repository.config.EnableMongoRepositories;
+
+import com.baeldung.zoneddatetime.converter.ZonedDateTimeReadConverter;
+import com.baeldung.zoneddatetime.converter.ZonedDateTimeWriteConverter;
+import com.mongodb.ConnectionString;
+import com.mongodb.MongoClientSettings;
+import com.mongodb.client.MongoClient;
+import com.mongodb.client.MongoClients;
+
+@Configuration
+@EnableMongoRepositories(basePackages = { "com.baeldung" })
+public class MongoConfig extends AbstractMongoClientConfiguration {
+
+ private final List> converters = new ArrayList>();
+
+ @Override
+ protected String getDatabaseName() {
+ return "test";
+ }
+
+ @Override
+ public MongoClient mongoClient() {
+ final ConnectionString connectionString = new ConnectionString("mongodb://localhost:27017/test");
+ final MongoClientSettings mongoClientSettings = MongoClientSettings.builder()
+ .applyConnectionString(connectionString)
+ .build();
+ return MongoClients.create(mongoClientSettings);
+ }
+
+ @Override
+ public Collection getMappingBasePackages() {
+ return Collections.singleton("com.baeldung");
+ }
+
+ @Override
+ public MongoCustomConversions customConversions() {
+ converters.add(new ZonedDateTimeReadConverter());
+ converters.add(new ZonedDateTimeWriteConverter());
+ return new MongoCustomConversions(converters);
+ }
+
+}
diff --git a/persistence-modules/spring-data-mongodb/src/main/java/converter/ZonedDateTimeReadConverter.java b/persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/converter/ZonedDateTimeReadConverter.java
similarity index 88%
rename from persistence-modules/spring-data-mongodb/src/main/java/converter/ZonedDateTimeReadConverter.java
rename to persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/converter/ZonedDateTimeReadConverter.java
index a2d847957b..f4a4c2d040 100644
--- a/persistence-modules/spring-data-mongodb/src/main/java/converter/ZonedDateTimeReadConverter.java
+++ b/persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/converter/ZonedDateTimeReadConverter.java
@@ -1,4 +1,4 @@
-package converter;
+package com.baeldung.zoneddatetime.converter;
import org.springframework.core.convert.converter.Converter;
diff --git a/persistence-modules/spring-data-mongodb/src/main/java/converter/ZonedDateTimeWriteConverter.java b/persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/converter/ZonedDateTimeWriteConverter.java
similarity index 87%
rename from persistence-modules/spring-data-mongodb/src/main/java/converter/ZonedDateTimeWriteConverter.java
rename to persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/converter/ZonedDateTimeWriteConverter.java
index e13ac2d130..2244a1460a 100644
--- a/persistence-modules/spring-data-mongodb/src/main/java/converter/ZonedDateTimeWriteConverter.java
+++ b/persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/converter/ZonedDateTimeWriteConverter.java
@@ -1,4 +1,4 @@
-package converter;
+package com.baeldung.zoneddatetime.converter;
import org.springframework.core.convert.converter.Converter;
diff --git a/persistence-modules/spring-data-mongodb/src/main/java/com/baeldung/model/Action.java b/persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/model/Action.java
similarity index 96%
rename from persistence-modules/spring-data-mongodb/src/main/java/com/baeldung/model/Action.java
rename to persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/model/Action.java
index aa480dbdf7..06202fe465 100644
--- a/persistence-modules/spring-data-mongodb/src/main/java/com/baeldung/model/Action.java
+++ b/persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/model/Action.java
@@ -1,4 +1,4 @@
-package com.baeldung.model;
+package com.baeldung.zoneddatetime.model;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
diff --git a/persistence-modules/spring-data-mongodb/src/main/java/com/baeldung/repository/ActionRepository.java b/persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/repository/ActionRepository.java
similarity index 55%
rename from persistence-modules/spring-data-mongodb/src/main/java/com/baeldung/repository/ActionRepository.java
rename to persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/repository/ActionRepository.java
index bdca490fe6..e214c4b3c4 100644
--- a/persistence-modules/spring-data-mongodb/src/main/java/com/baeldung/repository/ActionRepository.java
+++ b/persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/repository/ActionRepository.java
@@ -1,6 +1,7 @@
-package com.baeldung.repository;
+package com.baeldung.zoneddatetime.repository;
-import com.baeldung.model.Action;
import org.springframework.data.mongodb.repository.MongoRepository;
+import com.baeldung.zoneddatetime.model.Action;
+
public interface ActionRepository extends MongoRepository { }
\ No newline at end of file
diff --git a/persistence-modules/spring-boot-persistence-mongodb/src/main/resources/mongoConfig.xml b/persistence-modules/spring-boot-persistence-mongodb/src/main/resources/mongoConfig.xml
new file mode 100644
index 0000000000..c5b9068de3
--- /dev/null
+++ b/persistence-modules/spring-boot-persistence-mongodb/src/main/resources/mongoConfig.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/persistence-modules/spring-data-mongodb/src/main/resources/test.png b/persistence-modules/spring-boot-persistence-mongodb/src/main/resources/test.png
similarity index 100%
rename from persistence-modules/spring-data-mongodb/src/main/resources/test.png
rename to persistence-modules/spring-boot-persistence-mongodb/src/main/resources/test.png
diff --git a/persistence-modules/spring-data-mongodb/src/test/java/com/baeldung/gridfs/GridFSLiveTest.java b/persistence-modules/spring-boot-persistence-mongodb/src/test/java/com/baeldung/gridfs/GridFSLiveTest.java
similarity index 100%
rename from persistence-modules/spring-data-mongodb/src/test/java/com/baeldung/gridfs/GridFSLiveTest.java
rename to persistence-modules/spring-boot-persistence-mongodb/src/test/java/com/baeldung/gridfs/GridFSLiveTest.java
diff --git a/persistence-modules/spring-data-mongodb/src/test/java/com/baeldung/repository/ActionRepositoryLiveTest.java b/persistence-modules/spring-boot-persistence-mongodb/src/test/java/com/baeldung/zoneddatetime/ActionRepositoryLiveTest.java
similarity index 87%
rename from persistence-modules/spring-data-mongodb/src/test/java/com/baeldung/repository/ActionRepositoryLiveTest.java
rename to persistence-modules/spring-boot-persistence-mongodb/src/test/java/com/baeldung/zoneddatetime/ActionRepositoryLiveTest.java
index 79648f1a20..3a241418ca 100644
--- a/persistence-modules/spring-data-mongodb/src/test/java/com/baeldung/repository/ActionRepositoryLiveTest.java
+++ b/persistence-modules/spring-boot-persistence-mongodb/src/test/java/com/baeldung/zoneddatetime/ActionRepositoryLiveTest.java
@@ -1,7 +1,5 @@
-package com.baeldung.repository;
+package com.baeldung.zoneddatetime;
-import com.baeldung.config.MongoConfig;
-import com.baeldung.model.Action;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
@@ -12,6 +10,10 @@ import org.springframework.data.mongodb.core.MongoOperations;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
+import com.baeldung.zoneddatetime.config.MongoConfig;
+import com.baeldung.zoneddatetime.model.Action;
+import com.baeldung.zoneddatetime.repository.ActionRepository;
+
import java.time.ZoneOffset;
import java.time.ZonedDateTime;
diff --git a/persistence-modules/spring-data-jpa-annotations/README.md b/persistence-modules/spring-data-jpa-annotations/README.md
index 5f1c8dbc27..1ee579cf6c 100644
--- a/persistence-modules/spring-data-jpa-annotations/README.md
+++ b/persistence-modules/spring-data-jpa-annotations/README.md
@@ -4,7 +4,6 @@ This module contains articles about annotations used in Spring Data JPA
### Relevant articles
-- [Spring Data Annotations](https://www.baeldung.com/spring-data-annotations)
- [DDD Aggregates and @DomainEvents](https://www.baeldung.com/spring-data-ddd)
- [JPA @Embedded And @Embeddable](https://www.baeldung.com/jpa-embedded-embeddable)
- [Spring Data JPA @Modifying Annotation](https://www.baeldung.com/spring-data-jpa-modifying-annotation)
diff --git a/persistence-modules/spring-data-jpa-query-2/README.md b/persistence-modules/spring-data-jpa-query-2/README.md
index bdc8d7cb32..36875c899c 100644
--- a/persistence-modules/spring-data-jpa-query-2/README.md
+++ b/persistence-modules/spring-data-jpa-query-2/README.md
@@ -3,7 +3,7 @@
This module contains articles about querying data using Spring Data JPA
### Relevant Articles:
-- [Spring Data JPA @Query Annotation](https://www.baeldung.com/spring-data-jpa-query)
+- [Spring Data JPA @Query](https://www.baeldung.com/spring-data-jpa-query)
- [Use Criteria Queries in a Spring Data Application](https://www.baeldung.com/spring-data-criteria-queries)
- [Query Entities by Dates and Times with Spring Data JPA](https://www.baeldung.com/spring-data-jpa-query-by-date)
- [Hibernate Pagination](https://www.baeldung.com/hibernate-pagination)
diff --git a/persistence-modules/spring-data-jpa-query-2/src/main/java/com/baeldung/spring/data/jpa/query/QueryApplication.java b/persistence-modules/spring-data-jpa-query-2/src/main/java/com/baeldung/spring/data/jpa/query/QueryApplication.java
new file mode 100644
index 0000000000..48c29eda23
--- /dev/null
+++ b/persistence-modules/spring-data-jpa-query-2/src/main/java/com/baeldung/spring/data/jpa/query/QueryApplication.java
@@ -0,0 +1,13 @@
+package com.baeldung.spring.data.jpa.query;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class QueryApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(QueryApplication.class, args);
+ }
+
+}
diff --git a/persistence-modules/spring-data-jpa-query-2/src/main/resources/insert_users.sql b/persistence-modules/spring-data-jpa-query-2/src/main/resources/insert_users.sql
new file mode 100644
index 0000000000..330b2e36b0
--- /dev/null
+++ b/persistence-modules/spring-data-jpa-query-2/src/main/resources/insert_users.sql
@@ -0,0 +1,8 @@
+insert into Users(id, name, creation_date, last_login_date, active, age, email, status)
+values(1, 'John', TO_DATE('01/01/2018', 'DD/MM/YYYY'), TO_DATE('01/01/2020', 'DD/MM/YYYY'), 1, 23, 'john@email.com', 1);
+
+insert into Users(id, name, creation_date, last_login_date, active, age, email, status)
+values(2, 'Bob', TO_DATE('02/02/2019', 'DD/MM/YYYY'), TO_DATE('02/02/2020', 'DD/MM/YYYY'), 1, 56, 'bob@email.com', 1);
+
+insert into Users(id, name, creation_date, last_login_date, active, age, email, status)
+values(3, 'Cindy', TO_DATE('02/02/2019', 'DD/MM/YYYY'), TO_DATE('02/02/2020', 'DD/MM/YYYY'), 1, 18, 'cindy@email.com', 0);
\ No newline at end of file
diff --git a/persistence-modules/spring-data-jpa-query-2/src/test/java/com/baeldung/spring/data/jpa/query/UserRepositoryIntegrationTest.java b/persistence-modules/spring-data-jpa-query-2/src/test/java/com/baeldung/spring/data/jpa/query/UserRepositoryIntegrationTest.java
new file mode 100644
index 0000000000..0ede418acd
--- /dev/null
+++ b/persistence-modules/spring-data-jpa-query-2/src/test/java/com/baeldung/spring/data/jpa/query/UserRepositoryIntegrationTest.java
@@ -0,0 +1,162 @@
+package com.baeldung.spring.data.jpa.query;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
+import org.springframework.data.domain.Page;
+import org.springframework.data.domain.PageRequest;
+import org.springframework.data.domain.Sort;
+import org.springframework.data.jpa.domain.JpaSort;
+import org.springframework.data.mapping.PropertyReferenceException;
+import org.springframework.test.context.junit4.SpringRunner;
+
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.List;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+
+@RunWith(SpringRunner.class)
+@DataJpaTest(properties = "spring.datasource.data=classpath:insert_users.sql")
+public class UserRepositoryIntegrationTest {
+
+ @Autowired
+ private UserRepository userRepository;
+
+ @Test
+ public void whenFindAllActiveUsersThenAllActiveFound() {
+ Collection allActiveUsers = userRepository.findAllActiveUsers();
+ assertThat(allActiveUsers).hasSize(2);
+ }
+
+ @Test
+ public void whenFindAllActiveUsersNativeThenAllActiveFound() {
+ Collection allActiveUsers = userRepository.findAllActiveUsersNative();
+ assertThat(allActiveUsers).hasSize(2);
+ }
+
+ @Test
+ public void whenFindAllSortedByNameThenAllSorted() {
+ List allUsersSortedByName = userRepository.findAll(Sort.by(Sort.Direction.ASC, "name"));
+ assertThat(allUsersSortedByName)
+ .extracting("name")
+ .containsSequence("Bob", "Cindy", "John");
+ }
+
+ @Test
+ public void whenFindAllSortedByNameLengthThenException() {
+ assertThatThrownBy(() -> userRepository.findAll(Sort.by("LENGTH(name)")))
+ .isInstanceOf(PropertyReferenceException.class);
+ }
+
+ @Test
+ public void whenFindAllUsersSortedByNameThenAllSorted() {
+ List allUsersSortedByName = userRepository.findAllUsers(Sort.by(Sort.Direction.ASC, "name"));
+ assertThat(allUsersSortedByName)
+ .extracting("name")
+ .containsSequence("Bob", "Cindy", "John");
+ }
+
+ @Test
+ public void whenFindAllUsersSortedByNameLengthThenAllSorted() {
+ List allUsersSortedByName = userRepository.findAllUsers(JpaSort.unsafe("LENGTH(name)"));
+ assertThat(allUsersSortedByName)
+ .extracting("name")
+ .containsSequence("Bob", "John", "Cindy");
+ }
+
+ @Test
+ public void whenFindAllUsersWithPaginationThenPaginated() {
+ Page page = userRepository.findAllUsersWithPagination(PageRequest.of(0, 1));
+ assertThat(page.stream().map(User::getId))
+ .hasSize(1)
+ .containsOnly(1);
+ }
+
+ @Test
+ public void whenFindAllUsersWithPaginationNativeThenPaginated() {
+ Page page = userRepository.findAllUsersWithPaginationNative(PageRequest.of(1, 1));
+ assertThat(page.stream().map(User::getId))
+ .hasSize(1)
+ .containsOnly(2);
+ }
+
+ @Test
+ public void whenFindUserByStatusThenFound() {
+ User user = userRepository.findUserByStatus(0);
+ assertThat(user.getStatus()).isZero();
+ }
+
+ @Test
+ public void whenFindUserByStatusAndNameThenFound() {
+ User user = userRepository.findUserByStatusAndName(1, "John");
+ assertThat(user.getStatus()).isOne();
+ assertThat(user.getName()).isEqualTo("John");
+ }
+
+ @Test
+ public void whenFindUserByStatusNativeThenFound() {
+ User user = userRepository.findUserByStatusNative(0);
+ assertThat(user.getStatus()).isZero();
+ }
+
+ @Test
+ public void whenFindUserByStatusAndNameNamedParamsThenFound() {
+ User user = userRepository.findUserByStatusAndNameNamedParams(1, "John");
+ assertThat(user.getStatus()).isOne();
+ assertThat(user.getName()).isEqualTo("John");
+ }
+
+ @Test
+ public void whenFindUserByUserStatusAndUserNameThenFound() {
+ User user = userRepository.findUserByUserStatusAndUserName(1, "John");
+ assertThat(user.getStatus()).isOne();
+ assertThat(user.getName()).isEqualTo("John");
+ }
+
+ @Test
+ public void whenFindUserByStatusAndNameNamedParamsNativeThenFound() {
+ User user = userRepository.findUserByStatusAndNameNamedParamsNative(1, "Bob");
+ assertThat(user.getStatus()).isOne();
+ assertThat(user.getName()).isEqualTo("Bob");
+ }
+
+ @Test
+ public void whenFindUserByNameListThenAllFound() {
+ List users = userRepository.findUserByNameList(Arrays.asList("Bob", "Cindy"));
+ assertThat(users)
+ .extracting("name")
+ .containsOnly("Bob", "Cindy");
+ }
+
+ @Test
+ public void whenUpdateUserSetStatusForNameThenUpdated() {
+ int updated = userRepository.updateUserSetStatusForName(0, "John");
+ assertThat(updated).isOne();
+
+ User john = userRepository.findUserByStatusAndName(0, "John");
+ assertThat(john).isNotNull();
+ }
+
+ @Test
+ public void whenUpdateUserSetStatusForNameNativeThenUpdated() {
+ int updated = userRepository.updateUserSetStatusForNameNative(0, "John");
+ assertThat(updated).isOne();
+
+ User john = userRepository.findUserByStatusAndName(0, "John");
+ assertThat(john).isNotNull();
+ }
+
+ @Test
+ public void whenInsertUserThenInserted() {
+ User beforeInsert = userRepository.findUserByStatusAndName(0, "Mandy");
+ assertThat(beforeInsert).isNull();
+
+ userRepository.insertUser("Mandy", 20, "mandy@email.com", 0, true);
+
+ User afterInsert = userRepository.findUserByStatusAndName(0, "Mandy");
+ assertThat(afterInsert).isNotNull();
+ }
+}
diff --git a/persistence-modules/spring-data-jpa-repo-2/README.md b/persistence-modules/spring-data-jpa-repo-2/README.md
index de5188c1ad..0a690fe5a5 100644
--- a/persistence-modules/spring-data-jpa-repo-2/README.md
+++ b/persistence-modules/spring-data-jpa-repo-2/README.md
@@ -2,4 +2,5 @@
### Relevant Articles:
- [Introduction to Spring Data JPA](https://www.baeldung.com/the-persistence-layer-with-spring-data-jpa)
-- More articles: [[<-- prev]](/spring-data-jpa-repo/)
\ No newline at end of file
+- [Performance Difference Between save() and saveAll() in Spring Data](https://www.baeldung.com/spring-data-save-saveall)
+- More articles: [[<-- prev]](/spring-data-jpa-repo/)
diff --git a/persistence-modules/spring-data-jpa-repo-2/src/main/java/com/baeldung/spring/data/persistence/saveperformance/Book.java b/persistence-modules/spring-data-jpa-repo-2/src/main/java/com/baeldung/spring/data/persistence/saveperformance/Book.java
new file mode 100644
index 0000000000..b6abdd2ed5
--- /dev/null
+++ b/persistence-modules/spring-data-jpa-repo-2/src/main/java/com/baeldung/spring/data/persistence/saveperformance/Book.java
@@ -0,0 +1,25 @@
+package com.baeldung.spring.data.persistence.saveperformance;
+
+import javax.persistence.Entity;
+import javax.persistence.GeneratedValue;
+import javax.persistence.GenerationType;
+import javax.persistence.Id;
+
+@Entity
+public class Book {
+
+ @Id
+ @GeneratedValue(strategy = GenerationType.AUTO)
+ private long id;
+
+ private String title;
+ private String author;
+
+ public Book(final String title, final String author) {
+ this.title = title;
+ this.author = author;
+ }
+
+ public Book() {
+ }
+}
diff --git a/persistence-modules/spring-data-jpa-repo-2/src/main/java/com/baeldung/spring/data/persistence/saveperformance/BookApplication.java b/persistence-modules/spring-data-jpa-repo-2/src/main/java/com/baeldung/spring/data/persistence/saveperformance/BookApplication.java
new file mode 100644
index 0000000000..56ad918be3
--- /dev/null
+++ b/persistence-modules/spring-data-jpa-repo-2/src/main/java/com/baeldung/spring/data/persistence/saveperformance/BookApplication.java
@@ -0,0 +1,48 @@
+package com.baeldung.spring.data.persistence.saveperformance;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.context.event.ApplicationReadyEvent;
+import org.springframework.context.event.EventListener;
+
+import java.util.ArrayList;
+import java.util.List;
+
+@SpringBootApplication
+public class BookApplication {
+
+ @Autowired
+ private BookRepository bookRepository;
+
+ public static void main(String[] args) {
+ SpringApplication.run(BookApplication.class, args);
+ }
+
+ @EventListener(ApplicationReadyEvent.class)
+ public void executePerformanceBenchmark() {
+
+ int bookCount = 10000;
+
+ long start = System.currentTimeMillis();
+ for(int i = 0; i < bookCount; i++) {
+ bookRepository.save(new Book("Book " + i, "Author " + i));
+ }
+ long end = System.currentTimeMillis();
+ bookRepository.deleteAll();
+
+ System.out.println("It took " + (end - start) + "ms to execute save() for " + bookCount + " books");
+
+ List bookList = new ArrayList<>();
+ for (int i = 0; i < bookCount; i++) {
+ bookList.add(new Book("Book " + i, "Author " + i));
+ }
+
+ start = System.currentTimeMillis();
+ bookRepository.saveAll(bookList);
+ end = System.currentTimeMillis();
+
+ System.out.println("It took " + (end - start) + "ms to execute saveAll() with " + bookCount + " books\n");
+
+ }
+}
diff --git a/persistence-modules/spring-data-jpa-repo-2/src/main/java/com/baeldung/spring/data/persistence/saveperformance/BookRepository.java b/persistence-modules/spring-data-jpa-repo-2/src/main/java/com/baeldung/spring/data/persistence/saveperformance/BookRepository.java
new file mode 100644
index 0000000000..9db4a18796
--- /dev/null
+++ b/persistence-modules/spring-data-jpa-repo-2/src/main/java/com/baeldung/spring/data/persistence/saveperformance/BookRepository.java
@@ -0,0 +1,7 @@
+package com.baeldung.spring.data.persistence.saveperformance;
+
+import org.springframework.data.jpa.repository.JpaRepository;
+
+public interface BookRepository extends JpaRepository {
+
+}
diff --git a/persistence-modules/spring-data-mongodb/README.md b/persistence-modules/spring-data-mongodb/README.md
index 381bf83fa8..acc978c68e 100644
--- a/persistence-modules/spring-data-mongodb/README.md
+++ b/persistence-modules/spring-data-mongodb/README.md
@@ -7,13 +7,10 @@
- [A Guide to Queries in Spring Data MongoDB](http://www.baeldung.com/queries-in-spring-data-mongodb)
- [Spring Data MongoDB – Indexes, Annotations and Converters](http://www.baeldung.com/spring-data-mongodb-index-annotations-converter)
- [Custom Cascading in Spring Data MongoDB](http://www.baeldung.com/cascading-with-dbref-and-lifecycle-events-in-spring-data-mongodb)
-- [GridFS in Spring Data MongoDB](http://www.baeldung.com/spring-data-mongodb-gridfs)
- [Introduction to Spring Data MongoDB](http://www.baeldung.com/spring-data-mongodb-tutorial)
- [Spring Data MongoDB: Projections and Aggregations](http://www.baeldung.com/spring-data-mongodb-projections-aggregations)
- [Spring Data Annotations](http://www.baeldung.com/spring-data-annotations)
-- [Spring Data MongoDB Transactions](https://www.baeldung.com/spring-data-mongodb-transactions )
-- [ZonedDateTime with Spring Data MongoDB](https://www.baeldung.com/spring-data-mongodb-zoneddatetime)
-
+- [Spring Data MongoDB Transactions](https://www.baeldung.com/spring-data-mongodb-transactions)
## Spring Data MongoDB Live Testing
diff --git a/persistence-modules/spring-data-mongodb/src/main/java/com/baeldung/config/MongoConfig.java b/persistence-modules/spring-data-mongodb/src/main/java/com/baeldung/config/MongoConfig.java
index 8036bbbca2..90b1268133 100644
--- a/persistence-modules/spring-data-mongodb/src/main/java/com/baeldung/config/MongoConfig.java
+++ b/persistence-modules/spring-data-mongodb/src/main/java/com/baeldung/config/MongoConfig.java
@@ -5,16 +5,13 @@ import java.util.Collection;
import java.util.Collections;
import java.util.List;
-import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.convert.converter.Converter;
import org.springframework.data.mongodb.MongoDatabaseFactory;
import org.springframework.data.mongodb.MongoTransactionManager;
import org.springframework.data.mongodb.config.AbstractMongoClientConfiguration;
-import org.springframework.data.mongodb.core.convert.MappingMongoConverter;
import org.springframework.data.mongodb.core.convert.MongoCustomConversions;
-import org.springframework.data.mongodb.gridfs.GridFsTemplate;
import org.springframework.data.mongodb.repository.config.EnableMongoRepositories;
import com.baeldung.converter.UserWriterConverter;
@@ -25,18 +22,12 @@ import com.mongodb.MongoClientSettings;
import com.mongodb.client.MongoClient;
import com.mongodb.client.MongoClients;
-import converter.ZonedDateTimeReadConverter;
-import converter.ZonedDateTimeWriteConverter;
-
@Configuration
@EnableMongoRepositories(basePackages = "com.baeldung.repository")
public class MongoConfig extends AbstractMongoClientConfiguration {
private final List> converters = new ArrayList>();
- @Autowired
- private MappingMongoConverter mongoConverter;
-
@Override
protected String getDatabaseName() {
return "test";
@@ -69,16 +60,9 @@ public class MongoConfig extends AbstractMongoClientConfiguration {
@Override
public MongoCustomConversions customConversions() {
converters.add(new UserWriterConverter());
- converters.add(new ZonedDateTimeReadConverter());
- converters.add(new ZonedDateTimeWriteConverter());
return new MongoCustomConversions(converters);
}
- @Bean
- public GridFsTemplate gridFsTemplate() throws Exception {
- return new GridFsTemplate(mongoDbFactory(), mongoConverter);
- }
-
@Bean
MongoTransactionManager transactionManager(MongoDatabaseFactory dbFactory) {
return new MongoTransactionManager(dbFactory);
diff --git a/persistence-modules/spring-data-mongodb/src/main/resources/mongoConfig.xml b/persistence-modules/spring-data-mongodb/src/main/resources/mongoConfig.xml
index 074a203b1a..5067bec78e 100644
--- a/persistence-modules/spring-data-mongodb/src/main/resources/mongoConfig.xml
+++ b/persistence-modules/spring-data-mongodb/src/main/resources/mongoConfig.xml
@@ -14,11 +14,6 @@
-
-
-
-
-
diff --git a/persistence-modules/spring-jdbc/README.md b/persistence-modules/spring-jdbc/README.md
index 58d7bdec43..1433344b7a 100644
--- a/persistence-modules/spring-jdbc/README.md
+++ b/persistence-modules/spring-jdbc/README.md
@@ -1,6 +1,6 @@
## Spring JDBC
### Relevant Articles:
-- [Spring JDBC Template](https://www.baeldung.com/spring-jdbc-jdbctemplate)
-- [Spring JDBC Template Testing](https://www.baeldung.com/spring-jdbctemplate-testing)
-- [Spring JDBC Template In Clause](https://www.baeldung.com/spring-jdbctemplate-in-list)
\ No newline at end of file
+- [Spring JDBC](https://www.baeldung.com/spring-jdbc-jdbctemplate)
+- [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)
diff --git a/spring-jooq/.gitignore b/persistence-modules/spring-jooq/.gitignore
similarity index 100%
rename from spring-jooq/.gitignore
rename to persistence-modules/spring-jooq/.gitignore
diff --git a/spring-jooq/README.md b/persistence-modules/spring-jooq/README.md
similarity index 100%
rename from spring-jooq/README.md
rename to persistence-modules/spring-jooq/README.md
diff --git a/spring-jooq/pom.xml b/persistence-modules/spring-jooq/pom.xml
similarity index 99%
rename from spring-jooq/pom.xml
rename to persistence-modules/spring-jooq/pom.xml
index 550d49b5b2..6b3d565175 100644
--- a/spring-jooq/pom.xml
+++ b/persistence-modules/spring-jooq/pom.xml
@@ -9,7 +9,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-jooq/src/main/resources/application.properties b/persistence-modules/spring-jooq/src/main/resources/application.properties
similarity index 100%
rename from spring-jooq/src/main/resources/application.properties
rename to persistence-modules/spring-jooq/src/main/resources/application.properties
diff --git a/spring-jooq/src/main/resources/intro_config.properties b/persistence-modules/spring-jooq/src/main/resources/intro_config.properties
similarity index 100%
rename from spring-jooq/src/main/resources/intro_config.properties
rename to persistence-modules/spring-jooq/src/main/resources/intro_config.properties
diff --git a/spring-jooq/src/main/resources/intro_schema.sql b/persistence-modules/spring-jooq/src/main/resources/intro_schema.sql
similarity index 100%
rename from spring-jooq/src/main/resources/intro_schema.sql
rename to persistence-modules/spring-jooq/src/main/resources/intro_schema.sql
diff --git a/spring-5-mvc/src/main/resources/logback.xml b/persistence-modules/spring-jooq/src/main/resources/logback.xml
similarity index 100%
rename from spring-5-mvc/src/main/resources/logback.xml
rename to persistence-modules/spring-jooq/src/main/resources/logback.xml
diff --git a/spring-jooq/src/test/java/com/baeldung/jooq/introduction/ExceptionTranslator.java b/persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/introduction/ExceptionTranslator.java
similarity index 100%
rename from spring-jooq/src/test/java/com/baeldung/jooq/introduction/ExceptionTranslator.java
rename to persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/introduction/ExceptionTranslator.java
diff --git a/spring-jooq/src/test/java/com/baeldung/jooq/introduction/PersistenceContextIntegrationTest.java b/persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/introduction/PersistenceContextIntegrationTest.java
similarity index 100%
rename from spring-jooq/src/test/java/com/baeldung/jooq/introduction/PersistenceContextIntegrationTest.java
rename to persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/introduction/PersistenceContextIntegrationTest.java
diff --git a/spring-jooq/src/test/java/com/baeldung/jooq/introduction/QueryIntegrationTest.java b/persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/introduction/QueryIntegrationTest.java
similarity index 100%
rename from spring-jooq/src/test/java/com/baeldung/jooq/introduction/QueryIntegrationTest.java
rename to persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/introduction/QueryIntegrationTest.java
diff --git a/spring-jooq/src/test/java/com/baeldung/jooq/springboot/Application.java b/persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/springboot/Application.java
similarity index 100%
rename from spring-jooq/src/test/java/com/baeldung/jooq/springboot/Application.java
rename to persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/springboot/Application.java
diff --git a/spring-jooq/src/test/java/com/baeldung/jooq/springboot/InitialConfiguration.java b/persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/springboot/InitialConfiguration.java
similarity index 100%
rename from spring-jooq/src/test/java/com/baeldung/jooq/springboot/InitialConfiguration.java
rename to persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/springboot/InitialConfiguration.java
diff --git a/spring-jooq/src/test/java/com/baeldung/jooq/springboot/SpringBootIntegrationTest.java b/persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/springboot/SpringBootIntegrationTest.java
similarity index 100%
rename from spring-jooq/src/test/java/com/baeldung/jooq/springboot/SpringBootIntegrationTest.java
rename to persistence-modules/spring-jooq/src/test/java/com/baeldung/jooq/springboot/SpringBootIntegrationTest.java
diff --git a/spring-jooq/src/test/resources/application.properties b/persistence-modules/spring-jooq/src/test/resources/application.properties
similarity index 100%
rename from spring-jooq/src/test/resources/application.properties
rename to persistence-modules/spring-jooq/src/test/resources/application.properties
diff --git a/persistence-modules/spring-jpa-2/pom.xml b/persistence-modules/spring-jpa-2/pom.xml
index 8d8dfe3a7b..7770c0e045 100644
--- a/persistence-modules/spring-jpa-2/pom.xml
+++ b/persistence-modules/spring-jpa-2/pom.xml
@@ -46,7 +46,7 @@
org.hibernate
- hibernate-entitymanager
+ hibernate-core
${hibernate.version}
diff --git a/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/spring/transaction/Course.java b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/spring/transaction/Course.java
new file mode 100644
index 0000000000..5add1e4a99
--- /dev/null
+++ b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/spring/transaction/Course.java
@@ -0,0 +1,35 @@
+package com.baeldung.spring.transaction;
+
+import java.io.Serializable;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+
+@Entity
+@Table(name = "course")
+public class Course implements Serializable {
+
+ private static final long serialVersionUID = 1L;
+
+ @Id
+ @Column(name = "id")
+ private Long id;
+
+ public Course() {
+ }
+
+ public Course(Long id) {
+ this.id = id;
+ }
+
+ public Long getId() {
+ return id;
+ }
+
+ public void setId(Long id) {
+ this.id = id;
+ }
+
+}
diff --git a/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/spring/transaction/CourseDao.java b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/spring/transaction/CourseDao.java
new file mode 100644
index 0000000000..adf138ba67
--- /dev/null
+++ b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/spring/transaction/CourseDao.java
@@ -0,0 +1,13 @@
+package com.baeldung.spring.transaction;
+
+import org.springframework.stereotype.Repository;
+
+import com.baeldung.spring.hibernate.AbstractHibernateDao;
+
+@Repository
+public class CourseDao extends AbstractHibernateDao {
+ public CourseDao() {
+ super();
+ setClazz(Course.class);
+ }
+}
diff --git a/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/spring/transaction/CourseService.java b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/spring/transaction/CourseService.java
new file mode 100644
index 0000000000..05e3f32cee
--- /dev/null
+++ b/persistence-modules/spring-jpa-2/src/main/java/com/baeldung/spring/transaction/CourseService.java
@@ -0,0 +1,44 @@
+package com.baeldung.spring.transaction;
+
+import java.sql.SQLException;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.dao.DataIntegrityViolationException;
+import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+import org.springframework.transaction.interceptor.TransactionAspectSupport;
+
+@Service
+public class CourseService {
+
+ @Autowired
+ private CourseDao courseDao;
+
+ @Transactional
+ public void createCourseDeclarativeWithRuntimeException(Course course) {
+ courseDao.create(course);
+ throw new DataIntegrityViolationException("Throwing exception for demoing Rollback!!!");
+ }
+
+ @Transactional(rollbackFor = { SQLException.class })
+ public void createCourseDeclarativeWithCheckedException(Course course) throws SQLException {
+ courseDao.create(course);
+ throw new SQLException("Throwing exception for demoing Rollback!!!");
+ }
+
+ public void createCourseDefaultRatingProgramatic(Course course) {
+ try {
+ courseDao.create(course);
+ throw new DataIntegrityViolationException("Throwing exception for demoing Rollback!!!");
+ } catch (Exception e) {
+ TransactionAspectSupport.currentTransactionStatus().setRollbackOnly();
+ }
+ }
+
+ @Transactional(noRollbackFor = { SQLException.class })
+ public void createCourseDeclarativeWithNoRollBack(Course course) throws SQLException {
+ courseDao.create(course);
+ throw new SQLException("Throwing exception for demoing Rollback!!!");
+ }
+
+}
diff --git a/persistence-modules/spring-jpa/README.md b/persistence-modules/spring-jpa/README.md
index f60609e0de..937890cd13 100644
--- a/persistence-modules/spring-jpa/README.md
+++ b/persistence-modules/spring-jpa/README.md
@@ -7,6 +7,7 @@
- [Self-Contained Testing Using an In-Memory Database](https://www.baeldung.com/spring-jpa-test-in-memory-database)
- [A Guide to Spring AbstractRoutingDatasource](https://www.baeldung.com/spring-abstract-routing-data-source)
- [Obtaining Auto-generated Keys in Spring JDBC](https://www.baeldung.com/spring-jdbc-autogenerated-keys)
+- [Spring Data Annotations](http://www.baeldung.com/spring-data-annotations)
- More articles: [[next -->]](/spring-jpa-2)
### Eclipse Config
diff --git a/persistence-modules/spring-jpa/pom.xml b/persistence-modules/spring-jpa/pom.xml
index 410ed592b0..e389886d8d 100644
--- a/persistence-modules/spring-jpa/pom.xml
+++ b/persistence-modules/spring-jpa/pom.xml
@@ -41,7 +41,7 @@
org.hibernate
- hibernate-entitymanager
+ hibernate-core
${hibernate.version}
diff --git a/persistence-modules/spring-persistence-simple/README.md b/persistence-modules/spring-persistence-simple/README.md
index 8bef16868d..f118d12f6f 100644
--- a/persistence-modules/spring-persistence-simple/README.md
+++ b/persistence-modules/spring-persistence-simple/README.md
@@ -5,8 +5,9 @@
### Relevant Articles:
- [Transaction Propagation and Isolation in Spring @Transactional](https://www.baeldung.com/spring-transactional-propagation-isolation)
-- [JTA Transaction with Spring](https://www.baeldung.com/spring-vs-jta-transactional)
+- [Transactional Annotations: Spring vs. JTA](https://www.baeldung.com/spring-vs-jta-transactional)
- [Test a Mock JNDI Datasource with Spring](https://www.baeldung.com/spring-mock-jndi-datasource)
+- [Detecting If a Spring Transaction Is Active](https://www.baeldung.com/spring-transaction-active)
### Eclipse Config
After importing the project into Eclipse, you may see the following error:
diff --git a/pom.xml b/pom.xml
index cba7e33b03..70efb02f4d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,4 +1,5 @@
+
@@ -325,7 +326,6 @@
parent-spring-4
parent-spring-5
parent-java
- parent-kotlin
akka-http
akka-streams
@@ -386,8 +386,6 @@
core-groovy-strings
core-java-modules
- core-kotlin-modules
- core-scala
couchbase
custom-pmd
@@ -397,6 +395,7 @@
ddd
deeplearning4j
+ discord4j
disruptor
dozer
drools
@@ -456,7 +455,6 @@
jaxb
jee-7
jee-7-security
- jee-kotlin
jersey
jgit
jgroups
@@ -474,11 +472,6 @@
jsoup
jta
-
- kotlin-libraries
- kotlin-libraries-2
- kotlin-quasar
-
language-interop
libraries-2
@@ -505,7 +498,6 @@
lombok-custom
lucene
- machine-learning
mapstruct
maven-modules
@@ -598,7 +590,6 @@
parent-spring-4
parent-spring-5
parent-java
- parent-kotlin
saas
software-security/sql-injection-samples
@@ -610,15 +601,11 @@
spring-5
spring-5-data-reactive
- spring-5-mvc
spring-5-reactive
spring-5-reactive-2
spring-5-reactive-client
spring-5-reactive-oauth
spring-5-reactive-security
- spring-5-security
- spring-5-security-cognito
- spring-5-security-oauth
spring-5-webflux
spring-activiti
@@ -627,7 +614,8 @@
spring-aop
spring-apache-camel
- spring-batch
+ spring-batch
+ spring-batch-2
spring-bom
spring-boot-modules
spring-boot-rest
@@ -649,7 +637,6 @@
spring-data-rest-querydsl
spring-di
spring-di-2
- spring-dispatcher-servlet
spring-drools
spring-ejb
@@ -663,70 +650,35 @@
spring-jersey
spring-jinq
spring-jms
- spring-jooq
spring-kafka
spring-katharsis
- spring-ldap
-
spring-mobile
spring-mockito
-
- spring-mvc-basics
- spring-mvc-basics-2
- spring-mvc-basics-3
- spring-mvc-basics-4
-
- spring-mvc-forms-jsp
- spring-mvc-forms-thymeleaf
- spring-mvc-java
- spring-mvc-java-2
- spring-mvc-kotlin
-
- spring-mvc-velocity
- spring-mvc-views
- spring-mvc-webflow
- spring-mvc-xml
-
spring-protobuf
spring-quartz
- spring-reactive-kotlin
spring-reactor
spring-remoting
- spring-rest-angular
- spring-rest-compress
- spring-rest-http
- spring-rest-http-2
- spring-rest-query-language
- spring-rest-shell
- spring-rest-simple
- spring-resttemplate
- spring-resttemplate-2
- spring-rest-testing
spring-roo
spring-scheduling
spring-security-modules
- spring-session
spring-shell
spring-sleuth
- spring-soap
- spring-social-login
+ spring-soap
spring-spel
spring-state-machine
spring-static-resources
spring-swagger-codegen
spring-threads
- spring-thymeleaf
- spring-thymeleaf-2
- spring-thymeleaf-3
spring-vault
spring-vertx
+ spring-web-modules
spring-webflux-amqp
spring-websockets
@@ -793,7 +745,6 @@
parent-spring-4
parent-spring-5
parent-java
- parent-kotlin
jenkins/plugins
jhipster
@@ -838,7 +789,6 @@
parent-spring-4
parent-spring-5
parent-java
- parent-kotlin
akka-http
akka-streams
@@ -898,8 +848,6 @@
core-groovy-strings
core-java-modules
- core-kotlin-modules
- core-scala
couchbase
custom-pmd
@@ -909,6 +857,7 @@
ddd
deeplearning4j
+ discord4j
disruptor
dozer
drools
@@ -968,7 +917,6 @@
jaxb
jee-7
jee-7-security
- jee-kotlin
jersey
jgit
jgroups
@@ -985,11 +933,6 @@
jsoup
jta
-
- kotlin-libraries
- kotlin-libraries-2
- kotlin-quasar
-
libraries-2
libraries-3
@@ -1015,7 +958,6 @@
lombok-custom
lucene
- machine-learning
mapstruct
maven-modules
@@ -1100,7 +1042,6 @@
parent-spring-4
parent-spring-5
parent-java
- parent-kotlin
saas
software-security/sql-injection-samples
@@ -1112,15 +1053,11 @@
spring-5
spring-5-data-reactive
- spring-5-mvc
spring-5-reactive
spring-5-reactive-2
spring-5-reactive-client
spring-5-reactive-oauth
spring-5-reactive-security
- spring-5-security
- spring-5-security-cognito
- spring-5-security-oauth
spring-5-webflux
spring-activiti
@@ -1150,7 +1087,6 @@
spring-data-rest
spring-data-rest-querydsl
spring-di
- spring-dispatcher-servlet
spring-drools
spring-ejb
@@ -1164,69 +1100,34 @@
spring-jersey
spring-jinq
spring-jms
- spring-jooq
spring-kafka
spring-katharsis
- spring-ldap
-
spring-mobile
spring-mockito
- spring-mvc-basics
- spring-mvc-basics-2
- spring-mvc-basics-3
- spring-mvc-basics-4
-
- spring-mvc-forms-jsp
- spring-mvc-forms-thymeleaf
- spring-mvc-java
- spring-mvc-java-2
- spring-mvc-kotlin
-
- spring-mvc-velocity
- spring-mvc-views
- spring-mvc-webflow
- spring-mvc-xml
- spring-mvc-crash
-
spring-protobuf
spring-quartz
- spring-reactive-kotlin
spring-reactor
spring-remoting
- spring-rest-angular
- spring-rest-compress
- spring-rest-http
- spring-rest-query-language
- spring-rest-shell
- spring-rest-simple
- spring-resttemplate
- spring-resttemplate-2
- spring-rest-testing
spring-roo
spring-scheduling
spring-security-modules
- spring-session
spring-shell
spring-sleuth
spring-soap
- spring-social-login
spring-spel
spring-state-machine
spring-static-resources
spring-swagger-codegen
- spring-thymeleaf
- spring-thymeleaf-2
- spring-thymeleaf-3
-
spring-vault
spring-vertx
+ spring-web-modules
spring-webflux-amqp
spring-websockets
@@ -1286,7 +1187,6 @@
parent-spring-4
parent-spring-5
parent-java
- parent-kotlin
jenkins/plugins
jhipster
@@ -1343,7 +1243,6 @@
org.apache.maven.plugins
maven-surefire-plugin
- ${maven-surefire-plugin.version}
3
true
@@ -1368,23 +1267,22 @@
core-java-modules/core-java-9
core-java-modules/core-java-9-improvements
-
-
+ core-java-modules/core-java-9-jigsaw
+
core-java-modules/core-java-9-streams
core-java-modules/core-java-10
-
-
-
-
+ core-java-modules/core-java-11
+
+
+
core-java-modules/core-java-collections-set
-
-
-
+ core-java-modules/core-java-date-operations-1
+ core-java-modules/core-java-datetime-conversion
+ core-java-modules/core-java-datetime-string
core-java-modules/core-java-jpms
-
-
+ core-java-modules/core-java-os
+ core-java-modules/core-java-time-measurements
core-java-modules/multimodulemavenproject
-
@@ -1413,23 +1311,22 @@
core-java-modules/core-java-9
core-java-modules/core-java-9-improvements
-
-
+ core-java-modules/core-java-9-jigsaw
+
core-java-modules/core-java-9-streams
core-java-modules/core-java-10
-
-
-
-
+ core-java-modules/core-java-11
+
+
+
core-java-modules/core-java-collections-set
-
-
-
+ core-java-modules/core-java-date-operations-1
+ core-java-modules/core-java-datetime-conversion
+ core-java-modules/core-java-datetime-string
core-java-modules/core-java-jpms
-
-
+ core-java-modules/core-java-os
+ core-java-modules/core-java-time-measurements
core-java-modules/multimodulemavenproject
-
@@ -1471,15 +1368,14 @@
1.6.0
1.8
1.2.17
- 1.1
2.1.0.1
1.19
1.19
1.6.0
2.21.0
- 2.5
+ 2.8.0
2.6
- 3.5
+ 3.11
1.4
3.0.0
3.1.0
@@ -1487,7 +1383,7 @@
2.3.1
1.2
2.11.1
- 1.3
+ 1.4
1.2.0
5.2.0
0.3.1
diff --git a/quarkus/pom.xml b/quarkus/pom.xml
index 7fdf1557fb..9c14afca3c 100644
--- a/quarkus/pom.xml
+++ b/quarkus/pom.xml
@@ -48,7 +48,7 @@
org.apache.commons
commons-lang3
- 3.9
+ ${commons-lang3.version}
org.projectlombok
diff --git a/spring-5-data-reactive/README.md b/spring-5-data-reactive/README.md
index 42fcba96f2..0931161700 100644
--- a/spring-5-data-reactive/README.md
+++ b/spring-5-data-reactive/README.md
@@ -6,7 +6,6 @@ This module contains articles about reactive Spring 5 Data
The "REST With Spring" Classes: http://bit.ly/restwithspring
### Relevant Articles
-- [Reactive Flow with MongoDB, Kotlin, and Spring WebFlux](https://www.baeldung.com/kotlin-mongodb-spring-webflux)
- [Spring Data Reactive Repositories with MongoDB](https://www.baeldung.com/spring-data-mongodb-reactive)
- [Spring Data MongoDB Tailable Cursors](https://www.baeldung.com/spring-data-mongodb-tailable-cursors)
- [A Quick Look at R2DBC with Spring Data](https://www.baeldung.com/spring-data-r2dbc)
diff --git a/spring-5-data-reactive/pom.xml b/spring-5-data-reactive/pom.xml
index 396f7f5959..0fb689f16d 100644
--- a/spring-5-data-reactive/pom.xml
+++ b/spring-5-data-reactive/pom.xml
@@ -31,18 +31,6 @@
org.springframework.boot
spring-boot-starter-web
-
- com.fasterxml.jackson.module
- jackson-module-kotlin
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
-
-
- org.jetbrains.kotlin
- kotlin-reflect
-
org.projectlombok
lombok
@@ -52,12 +40,6 @@
reactor-test
test
-
- org.jetbrains.kotlin
- kotlin-test
- ${kotlin.version}
- test
-
io.reactivex.rxjava2
rxjava
@@ -128,53 +110,6 @@
org.springframework.boot
spring-boot-maven-plugin
-
- kotlin-maven-plugin
- ${kotlin-maven-plugin.version}
-
-
- compile
-
- compile
-
-
-
- ${project.basedir}/src/main/kotlin
- ${project.basedir}/src/main/java
-
-
-
-
- test-compile
-
- test-compile
-
-
-
- ${project.basedir}/src/test/kotlin
- ${project.basedir}/src/test/java
-
-
-
-
- org.jetbrains.kotlin
-
-
- -Xjsr305=strict
-
-
- spring
-
- 1.8
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-allopen
- ${kotlin.version}
-
-
-
org.apache.maven.plugins
maven-compiler-plugin
@@ -215,8 +150,6 @@
- 1.2.40
- 1.2.40
5.2.2.RELEASE
1.0.0.RELEASE
0.8.1.RELEASE
diff --git a/spring-5-data-reactive/src/main/kotlin/com/baeldung/Application.kt b/spring-5-data-reactive/src/main/kotlin/com/baeldung/Application.kt
deleted file mode 100644
index 5a59d11de0..0000000000
--- a/spring-5-data-reactive/src/main/kotlin/com/baeldung/Application.kt
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.baeldung
-
-import org.springframework.boot.SpringApplication
-import org.springframework.boot.autoconfigure.SpringBootApplication
-import org.springframework.boot.autoconfigure.data.mongo.MongoReactiveDataAutoConfiguration
-
-@SpringBootApplication(exclude = arrayOf(MongoReactiveDataAutoConfiguration::class))
-class Application
-
-fun main(args: Array) {
- SpringApplication.run(Application::class.java, *args)
-}
diff --git a/spring-5-data-reactive/src/main/kotlin/com/baeldung/Event.kt b/spring-5-data-reactive/src/main/kotlin/com/baeldung/Event.kt
deleted file mode 100644
index 17fa9699a8..0000000000
--- a/spring-5-data-reactive/src/main/kotlin/com/baeldung/Event.kt
+++ /dev/null
@@ -1,6 +0,0 @@
-package com.baeldung
-
-import org.springframework.data.mongodb.core.mapping.Document
-
-@Document
-data class Event(val id: String, val name: String)
diff --git a/spring-5-data-reactive/src/main/kotlin/com/baeldung/EventRepository.kt b/spring-5-data-reactive/src/main/kotlin/com/baeldung/EventRepository.kt
deleted file mode 100644
index e66af71ea6..0000000000
--- a/spring-5-data-reactive/src/main/kotlin/com/baeldung/EventRepository.kt
+++ /dev/null
@@ -1,6 +0,0 @@
-package com.baeldung
-
-import org.springframework.data.mongodb.core.mapping.Document
-import org.springframework.data.mongodb.repository.ReactiveMongoRepository
-
-interface EventRepository : ReactiveMongoRepository
diff --git a/spring-5-data-reactive/src/main/kotlin/com/baeldung/MongoConfig.kt b/spring-5-data-reactive/src/main/kotlin/com/baeldung/MongoConfig.kt
deleted file mode 100644
index 64d51a176a..0000000000
--- a/spring-5-data-reactive/src/main/kotlin/com/baeldung/MongoConfig.kt
+++ /dev/null
@@ -1,25 +0,0 @@
-package com.baeldung
-
-import com.mongodb.reactivestreams.client.MongoClient
-import com.mongodb.reactivestreams.client.MongoClients
-import org.springframework.context.annotation.Bean
-import org.springframework.context.annotation.Configuration
-import org.springframework.data.mongodb.config.AbstractReactiveMongoConfiguration
-import org.springframework.data.mongodb.core.ReactiveMongoTemplate
-import org.springframework.data.mongodb.repository.config.EnableReactiveMongoRepositories
-
-
-@Configuration
-@EnableReactiveMongoRepositories(basePackageClasses = arrayOf(EventRepository::class))
-class MongoConfig : AbstractReactiveMongoConfiguration() {
-
- override fun reactiveMongoClient(): MongoClient = mongoClient()
-
- @Bean
- fun mongoClient(): MongoClient = MongoClients.create()
-
- override fun getDatabaseName(): String = "mongoDatabase"
-
- @Bean
- override fun reactiveMongoTemplate(): ReactiveMongoTemplate = ReactiveMongoTemplate(mongoClient(), databaseName)
-}
diff --git a/spring-5-data-reactive/src/main/kotlin/com/baeldung/SendEmitter.kt b/spring-5-data-reactive/src/main/kotlin/com/baeldung/SendEmitter.kt
deleted file mode 100644
index 6fa3118d8f..0000000000
--- a/spring-5-data-reactive/src/main/kotlin/com/baeldung/SendEmitter.kt
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.baeldung
-
-import org.springframework.http.MediaType
-import org.springframework.web.bind.annotation.GetMapping
-import org.springframework.web.bind.annotation.RequestParam
-import org.springframework.web.bind.annotation.RestController
-import java.util.*
-
-
-@RestController
-class SendEmitter(val eventRepository: EventRepository) {
-
- @GetMapping(value = "/save", produces = arrayOf(MediaType.TEXT_EVENT_STREAM_VALUE))
- fun executeExample(@RequestParam("eventName") eventName: String) =
- eventRepository.save(Event(UUID.randomUUID().toString(), eventName)).flux()
-}
diff --git a/spring-5-data-reactive/src/main/resources/static/index.html b/spring-5-data-reactive/src/main/resources/static/index.html
deleted file mode 100644
index a0b8f6f884..0000000000
--- a/spring-5-data-reactive/src/main/resources/static/index.html
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/spring-5-mvc/pom.xml b/spring-5-mvc/pom.xml
deleted file mode 100644
index 0bb69d8057..0000000000
--- a/spring-5-mvc/pom.xml
+++ /dev/null
@@ -1,182 +0,0 @@
-
-
- 4.0.0
- spring-5-mvc
- spring-5-mvc
- jar
- spring 5 MVC sample project about new features
-
-
- com.baeldung
- parent-boot-2
- 0.0.1-SNAPSHOT
- ../parent-boot-2
-
-
-
-
-
- org.springframework.boot
- spring-boot-starter-data-jpa
-
-
- org.springframework.boot
- spring-boot-starter-validation
-
-
- org.springframework.boot
- spring-boot-starter-web
-
-
-
- org.apache.commons
- commons-lang3
-
-
- org.slf4j
- slf4j-api
-
-
- org.slf4j
- jcl-over-slf4j
-
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jre8
- ${kotlin.version}
-
-
- org.jetbrains.kotlin
- kotlin-reflect
- ${kotlin.version}
-
-
- com.fasterxml.jackson.module
- jackson-module-kotlin
- ${jackson.version}
-
-
-
- org.springframework.boot
- spring-boot-devtools
- runtime
-
-
- com.h2database
- h2
- runtime
-
-
- org.springframework
- spring-test
-
-
- org.springframework.boot
- spring-boot-starter-test
- test
-
-
- com.jayway.restassured
- rest-assured
- ${jayway-rest-assured.version}
- test
-
-
- com.github.javafaker
- javafaker
- ${javafaker.version}
-
-
- org.apache.httpcomponents
- httpclient
- ${httpclient.version}
-
-
-
-
- ${project.basedir}/src/test/kotlin
-
-
- org.springframework.boot
- spring-boot-maven-plugin
-
-
- kotlin-maven-plugin
- org.jetbrains.kotlin
- ${kotlin.version}
-
-
- spring
-
- ${java.version}
-
-
-
- compile
- compile
-
- compile
-
-
-
- test-compile
- test-compile
-
- test-compile
-
-
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-allopen
- ${kotlin.version}
-
-
-
-
- org.codehaus.mojo
- build-helper-maven-plugin
-
-
- generate-sources
-
- add-source
-
-
-
- ${basedir}/src/main/java
- ${basedir}/src/main/kotlin
-
-
-
-
- test-compile
- test-compile
-
- add-test-source
-
-
-
- ${basedir}/src/test/java
- ${basedir}/src/test/kotlin
-
-
-
-
-
-
-
-
-
- 2.9.0
- 1.2.71
- 4.5.8
- com.baeldung.Spring5Application
- 0.18
-
-
-
diff --git a/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/HelloController.kt b/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/HelloController.kt
deleted file mode 100644
index 69be7dac7e..0000000000
--- a/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/HelloController.kt
+++ /dev/null
@@ -1,23 +0,0 @@
-package com.baeldung.springbootkotlin
-
-import org.springframework.web.bind.annotation.GetMapping
-import org.springframework.web.bind.annotation.RestController
-
-@RestController
-class HelloController(val helloService: HelloService) {
-
- @GetMapping("/hello")
- fun helloKotlin(): String {
- return "hello world"
- }
-
- @GetMapping("/hello-service")
- fun helloKotlinService(): String {
- return helloService.getHello()
- }
-
- @GetMapping("/hello-dto")
- fun helloDto(): HelloDto {
- return HelloDto("Hello from the dto")
- }
-}
\ No newline at end of file
diff --git a/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/HelloDto.kt b/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/HelloDto.kt
deleted file mode 100644
index f61c101f0f..0000000000
--- a/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/HelloDto.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.springbootkotlin
-
-data class HelloDto(val greeting: String)
diff --git a/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/HelloService.kt b/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/HelloService.kt
deleted file mode 100644
index 67791a0c2d..0000000000
--- a/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/HelloService.kt
+++ /dev/null
@@ -1,11 +0,0 @@
-package com.baeldung.springbootkotlin
-
-import org.springframework.stereotype.Service
-
-@Service
-class HelloService {
-
- fun getHello(): String {
- return "hello service"
- }
-}
\ No newline at end of file
diff --git a/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/KotlinDemoApplication.kt b/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/KotlinDemoApplication.kt
deleted file mode 100644
index 8904d8d805..0000000000
--- a/spring-5-mvc/src/main/kotlin/com/baeldung/springbootkotlin/KotlinDemoApplication.kt
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.baeldung.springbootkotlin
-
-import org.springframework.boot.SpringApplication
-import org.springframework.boot.autoconfigure.SpringBootApplication
-import org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration
-
-@SpringBootApplication(scanBasePackages = arrayOf("com.baeldung.springbootkotlin"), exclude = arrayOf(SecurityAutoConfiguration::class))
-class KotlinDemoApplication
-
-fun main(args: Array) {
- SpringApplication.run(KotlinDemoApplication::class.java, *args)
-}
diff --git a/spring-5-mvc/src/test/kotlin/com/baeldung/springbootkotlin/KotlinDemoApplicationIntegrationTest.kt b/spring-5-mvc/src/test/kotlin/com/baeldung/springbootkotlin/KotlinDemoApplicationIntegrationTest.kt
deleted file mode 100644
index d0667177c8..0000000000
--- a/spring-5-mvc/src/test/kotlin/com/baeldung/springbootkotlin/KotlinDemoApplicationIntegrationTest.kt
+++ /dev/null
@@ -1,52 +0,0 @@
-package com.baeldung.springbootkotlin
-
-import org.junit.Assert.assertEquals
-import org.junit.Assert.assertNotNull
-import org.junit.Test
-import org.junit.runner.RunWith
-import org.springframework.beans.factory.annotation.Autowired
-import org.springframework.boot.test.context.SpringBootTest
-import org.springframework.boot.test.web.client.TestRestTemplate
-import org.springframework.http.HttpStatus
-import org.springframework.test.context.junit4.SpringRunner
-
-@RunWith(SpringRunner::class)
-@SpringBootTest(
- classes = arrayOf(KotlinDemoApplication::class),
- webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
-class KotlinDemoApplicationIntegrationTest {
-
- @Autowired
- lateinit var testRestTemplate: TestRestTemplate
-
- @Test
- fun whenCalled_thenShouldReturnHello() {
- val result = testRestTemplate.withBasicAuth("user", "pass")
- .getForEntity("/hello", String::class.java)
-
- assertNotNull(result)
- assertEquals(HttpStatus.OK, result?.statusCode)
- assertEquals("hello world", result?.body)
- }
-
- @Test
- fun whenCalled_thenShouldReturnHelloService() {
- val result = testRestTemplate.withBasicAuth("user", "pass")
- .getForEntity("/hello-service", String::class.java)
-
- assertNotNull(result)
- assertEquals(HttpStatus.OK, result?.statusCode)
- assertEquals(result?.body, "hello service")
- }
-
- @Test
- fun whenCalled_thenShouldReturnJson() {
- val result = testRestTemplate.withBasicAuth("user", "pass")
- .getForEntity("/hello-dto", HelloDto::class.java)
-
- assertNotNull(result)
- assertEquals(HttpStatus.OK, result?.statusCode)
- assertEquals(result?.body, HelloDto("Hello from the dto"))
- }
-
-}
diff --git a/spring-5-reactive-2/README.md b/spring-5-reactive-2/README.md
index 54f7ad35b1..397f6be57c 100644
--- a/spring-5-reactive-2/README.md
+++ b/spring-5-reactive-2/README.md
@@ -6,7 +6,7 @@ This module contains articles about reactive Spring 5
- [Validation for Functional Endpoints in Spring 5](https://www.baeldung.com/spring-functional-endpoints-validation)
- [Logging a Reactive Sequence](https://www.baeldung.com/spring-reactive-sequence-logging)
- [Testing Reactive Streams Using StepVerifier and TestPublisher](https://www.baeldung.com/reactive-streams-step-verifier-test-publisher)
-- [Debugging Reactive Streams in Spring 5](https://www.baeldung.com/spring-debugging-reactive-streams)
+- [Debugging Reactive Streams in Java](https://www.baeldung.com/spring-debugging-reactive-streams)
- [Static Content in Spring WebFlux](https://www.baeldung.com/spring-webflux-static-content)
- [Server-Sent Events in Spring](https://www.baeldung.com/spring-server-sent-events)
- More articles: [[<-- prev]](/spring-5-reactive)
diff --git a/spring-5-reactive-client/pom.xml b/spring-5-reactive-client/pom.xml
index 7ae7ba6edd..5b773cc63f 100644
--- a/spring-5-reactive-client/pom.xml
+++ b/spring-5-reactive-client/pom.xml
@@ -176,6 +176,7 @@
4.1
1.0.3
4.0.1
+ 2.3.3.RELEASE
diff --git a/spring-5-reactive/pom.xml b/spring-5-reactive/pom.xml
index 3b7383f726..60c8b90e16 100644
--- a/spring-5-reactive/pom.xml
+++ b/spring-5-reactive/pom.xml
@@ -149,7 +149,6 @@
- 1.0.1.RELEASE
1.1.3
1.0
1.0
diff --git a/spring-5-reactive/src/main/java/com/baeldung/functional/FunctionalWebApplication.java b/spring-5-reactive/src/main/java/com/baeldung/functional/FunctionalWebApplication.java
index 1f40798ada..b89f74ad92 100644
--- a/spring-5-reactive/src/main/java/com/baeldung/functional/FunctionalWebApplication.java
+++ b/spring-5-reactive/src/main/java/com/baeldung/functional/FunctionalWebApplication.java
@@ -3,7 +3,7 @@ package com.baeldung.functional;
import static org.springframework.web.reactive.function.BodyInserters.fromObject;
import static org.springframework.web.reactive.function.server.RequestPredicates.GET;
import static org.springframework.web.reactive.function.server.RequestPredicates.POST;
-import static org.springframework.web.reactive.function.server.RequestPredicates.path;
+import static org.springframework.web.reactive.function.server.RequestPredicates.accept;
import static org.springframework.web.reactive.function.server.RouterFunctions.route;
import static org.springframework.web.reactive.function.server.RouterFunctions.toHttpHandler;
import static org.springframework.web.reactive.function.server.ServerResponse.ok;
@@ -18,6 +18,7 @@ import org.apache.catalina.startup.Tomcat;
import org.springframework.boot.web.embedded.tomcat.TomcatWebServer;
import org.springframework.boot.web.server.WebServer;
import org.springframework.core.io.ClassPathResource;
+import org.springframework.http.MediaType;
import org.springframework.http.server.reactive.HttpHandler;
import org.springframework.http.server.reactive.ServletHttpHandlerAdapter;
import org.springframework.web.reactive.function.server.RouterFunction;
@@ -37,14 +38,14 @@ public class FunctionalWebApplication {
private RouterFunction routingFunction() {
FormHandler formHandler = new FormHandler();
- RouterFunction restfulRouter = route(GET("/"), serverRequest -> ok().body(Flux.fromIterable(actors), Actor.class)).andRoute(POST("/"), serverRequest -> serverRequest.bodyToMono(Actor.class)
+ RouterFunction restfulRouter = route(GET("/actor"), serverRequest -> ok().body(Flux.fromIterable(actors), Actor.class)).andRoute(POST("/actor"), serverRequest -> serverRequest.bodyToMono(Actor.class)
.doOnNext(actors::add)
.then(ok().build()));
return route(GET("/test"), serverRequest -> ok().body(fromObject("helloworld"))).andRoute(POST("/login"), formHandler::handleLogin)
.andRoute(POST("/upload"), formHandler::handleUpload)
.and(RouterFunctions.resources("/files/**", new ClassPathResource("files/")))
- .andNest(path("/actor"), restfulRouter)
+ .andNest(accept(MediaType.APPLICATION_JSON), restfulRouter)
.filter((request, next) -> {
System.out.println("Before handler invocation: " + request.path());
return next.handle(request);
diff --git a/spring-5-reactive/src/main/java/com/baeldung/web/reactive/client/WebClientApplication.java b/spring-5-reactive/src/main/java/com/baeldung/web/reactive/client/WebClientApplication.java
new file mode 100644
index 0000000000..f104ad30f1
--- /dev/null
+++ b/spring-5-reactive/src/main/java/com/baeldung/web/reactive/client/WebClientApplication.java
@@ -0,0 +1,13 @@
+package com.baeldung.web.reactive.client;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class WebClientApplication{
+
+ public static void main(String[] args) {
+ SpringApplication.run(WebClientApplication.class, args);
+ }
+
+}
diff --git a/spring-5-reactive/src/main/java/com/baeldung/web/reactive/client/WebClientController.java b/spring-5-reactive/src/main/java/com/baeldung/web/reactive/client/WebClientController.java
index a719259328..2d42e848b2 100644
--- a/spring-5-reactive/src/main/java/com/baeldung/web/reactive/client/WebClientController.java
+++ b/spring-5-reactive/src/main/java/com/baeldung/web/reactive/client/WebClientController.java
@@ -1,28 +1,46 @@
package com.baeldung.web.reactive.client;
+import java.net.URI;
+import java.nio.charset.Charset;
+import java.time.ZonedDateTime;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.concurrent.TimeUnit;
+
import org.reactivestreams.Publisher;
import org.reactivestreams.Subscriber;
-import org.springframework.http.*;
+import org.springframework.http.HttpHeaders;
+import org.springframework.http.HttpMethod;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.MediaType;
+import org.springframework.http.ReactiveHttpOutputMessage;
+import org.springframework.http.client.reactive.ClientHttpRequest;
+import org.springframework.http.client.reactive.ReactorClientHttpConnector;
import org.springframework.util.LinkedMultiValueMap;
+import org.springframework.util.MultiValueMap;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.reactive.function.BodyInserter;
import org.springframework.web.reactive.function.BodyInserters;
import org.springframework.web.reactive.function.client.WebClient;
-import reactor.core.publisher.Mono;
-import java.net.URI;
-import java.nio.charset.Charset;
-import java.time.ZonedDateTime;
-import java.util.Collections;
+import io.netty.channel.ChannelOption;
+import io.netty.handler.timeout.ReadTimeoutHandler;
+import io.netty.handler.timeout.WriteTimeoutHandler;
+import reactor.core.publisher.Mono;
+import reactor.netty.http.client.HttpClient;
@RestController
public class WebClientController {
@ResponseStatus(HttpStatus.OK)
@GetMapping("/resource")
- public void getResource() {
+ public Map getResource() {
+ Map response = new HashMap<>();
+ response.put("field", "value");
+ return response;
}
public void demonstrateWebClient() {
@@ -38,18 +56,18 @@ public class WebClientController {
// request header specification
WebClient.RequestHeadersSpec> requestSpec1 = uri1.body(BodyInserters.fromPublisher(Mono.just("data"), String.class));
- WebClient.RequestHeadersSpec> requestSpec2 = uri2.body(BodyInserters.fromObject("data"));
+ WebClient.RequestHeadersSpec> requestSpec2 = uri2.body(BodyInserters.fromValue("data"));
// inserters
- BodyInserter, ReactiveHttpOutputMessage> inserter1 = BodyInserters
- .fromPublisher(Subscriber::onComplete, String.class);
+ BodyInserter, ReactiveHttpOutputMessage> inserter1 = BodyInserters.fromPublisher(Subscriber::onComplete, String.class);
LinkedMultiValueMap map = new LinkedMultiValueMap<>();
map.add("key1", "value1");
map.add("key2", "value2");
- // BodyInserter, ClientHttpRequest> inserter2 = BodyInserters.fromMultipartData(map);
- BodyInserter inserter3 = BodyInserters.fromObject("body");
+ BodyInserter, ClientHttpRequest> inserter2 = BodyInserters.fromMultipartData(map);
+ BodyInserter inserter3 = BodyInserters.fromValue(new Object());
+ BodyInserter inserter4 = BodyInserters.fromValue("body");
// responses
WebClient.ResponseSpec response1 = uri1.body(inserter3)
@@ -59,8 +77,12 @@ public class WebClientController {
.ifNoneMatch("*")
.ifModifiedSince(ZonedDateTime.now())
.retrieve();
- WebClient.ResponseSpec response2 = requestSpec2.retrieve();
-
+ String response2 = uri1.exchangeToMono(response -> response.bodyToMono(String.class))
+ .block();
+ String response3 = uri2.retrieve()
+ .bodyToMono(String.class)
+ .block();
+ WebClient.ResponseSpec response4 = requestSpec2.retrieve();
}
private WebClient createWebClient() {
@@ -71,6 +93,17 @@ public class WebClientController {
return WebClient.create("http://localhost:8081");
}
+ private WebClient createWebClientConfiguringTimeout() {
+ HttpClient httpClient = HttpClient.create()
+ .option(ChannelOption.CONNECT_TIMEOUT_MILLIS, 5000)
+ .doOnConnected(conn -> conn.addHandlerLast(new ReadTimeoutHandler(5000, TimeUnit.MILLISECONDS))
+ .addHandlerLast(new WriteTimeoutHandler(5000, TimeUnit.MILLISECONDS)));
+
+ return WebClient.builder()
+ .clientConnector(new ReactorClientHttpConnector(httpClient))
+ .build();
+ }
+
private WebClient createWebClientWithServerURLAndDefaultValues() {
return WebClient.builder()
.baseUrl("http://localhost:8081")
diff --git a/spring-5-reactive/src/test/java/com/baeldung/functional/FunctionalWebApplicationIntegrationTest.java b/spring-5-reactive/src/test/java/com/baeldung/functional/FunctionalWebApplicationIntegrationTest.java
index 1256d5f129..5c0b4f69d0 100644
--- a/spring-5-reactive/src/test/java/com/baeldung/functional/FunctionalWebApplicationIntegrationTest.java
+++ b/spring-5-reactive/src/test/java/com/baeldung/functional/FunctionalWebApplicationIntegrationTest.java
@@ -5,6 +5,7 @@ import static org.springframework.web.reactive.function.BodyInserters.fromResour
import org.junit.AfterClass;
import org.junit.BeforeClass;
+import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.web.server.WebServer;
import org.springframework.core.io.ClassPathResource;
diff --git a/spring-5-reactive/src/test/java/com/baeldung/reactive/Spring5ReactiveServerClientIntegrationTest.java b/spring-5-reactive/src/test/java/com/baeldung/reactive/Spring5ReactiveServerClientIntegrationTest.java
deleted file mode 100644
index b8dd9c9509..0000000000
--- a/spring-5-reactive/src/test/java/com/baeldung/reactive/Spring5ReactiveServerClientIntegrationTest.java
+++ /dev/null
@@ -1,97 +0,0 @@
-package com.baeldung.reactive;
-
-import static org.springframework.web.reactive.function.server.RequestPredicates.GET;
-import static org.springframework.web.reactive.function.server.RequestPredicates.POST;
-
-import java.time.Duration;
-
-import org.junit.jupiter.api.AfterAll;
-import org.junit.jupiter.api.BeforeAll;
-import org.springframework.http.server.reactive.HttpHandler;
-import org.springframework.http.server.reactive.ReactorHttpHandlerAdapter;
-import org.springframework.web.reactive.function.server.RouterFunction;
-import org.springframework.web.reactive.function.server.RouterFunctions;
-import org.springframework.web.reactive.function.server.ServerResponse;
-
-import com.baeldung.web.reactive.Task;
-
-import reactor.core.publisher.Flux;
-import reactor.core.publisher.Mono;
-import reactor.netty.DisposableServer;
-import reactor.netty.http.server.HttpServer;
-
-public class Spring5ReactiveServerClientIntegrationTest {
- private static DisposableServer disposableServer;
-
- @BeforeAll
- public static void setUp() throws Exception {
- HttpServer server = HttpServer.create()
- .host("localhost")
- .port(8080);
- RouterFunction> route = RouterFunctions.route(POST("/task/process"), request -> ServerResponse.ok()
- .body(request.bodyToFlux(Task.class)
- .map(ll -> new Task("TaskName", 1)), Task.class))
- .and(RouterFunctions.route(GET("/task"), request -> ServerResponse.ok()
- .body(Mono.just("server is alive"), String.class)));
- HttpHandler httpHandler = RouterFunctions.toHttpHandler(route);
- ReactorHttpHandlerAdapter adapter = new ReactorHttpHandlerAdapter(httpHandler);
- disposableServer = server.handle(adapter)
- .bindNow();
- }
-
- @AfterAll
- public static void shutDown() {
- disposableServer.disposeNow();
- }
-
- // @Test
- // public void givenCheckTask_whenServerHandle_thenServerResponseALiveString() throws Exception {
- // WebClient client = WebClient.create("http://localhost:8080");
- // Mono result = client
- // .get()
- // .uri("/task")
- // .exchange()
- // .then(response -> response.bodyToMono(String.class));
- //
- // assertThat(result.block()).isInstanceOf(String.class);
- // }
-
- // @Test
- // public void givenThreeTasks_whenServerHandleTheTasks_thenServerResponseATask() throws Exception {
- // URI uri = URI.create("http://localhost:8080/task/process");
- // ExchangeFunction exchange = ExchangeFunctions.create(new ReactorClientHttpConnector());
- // ClientRequest request = ClientRequest
- // .method(HttpMethod.POST, uri)
- // .body(BodyInserters.fromPublisher(getLatLngs(), Task.class))
- // .build();
- //
- // Flux taskResponse = exchange
- // .exchange(request)
- // .flatMap(response -> response.bodyToFlux(Task.class));
- //
- // assertThat(taskResponse.blockFirst()).isInstanceOf(Task.class);
- // }
-
- // @Test
- // public void givenCheckTask_whenServerHandle_thenOragicServerResponseALiveString() throws Exception {
- // URI uri = URI.create("http://localhost:8080/task");
- // ExchangeFunction exchange = ExchangeFunctions.create(new ReactorClientHttpConnector());
- // ClientRequest request = ClientRequest
- // .method(HttpMethod.GET, uri)
- // .body(BodyInserters.fromPublisher(getLatLngs(), Task.class))
- // .build();
- //
- // Flux taskResponse = exchange
- // .exchange(request)
- // .flatMap(response -> response.bodyToFlux(String.class));
- //
- // assertThat(taskResponse.blockFirst()).isInstanceOf(String.class);
- // }
-
- private static Flux getLatLngs() {
- return Flux.range(0, 3)
- .zipWith(Flux.interval(Duration.ofSeconds(1)))
- .map(x -> new Task("taskname", 1))
- .doOnNext(ll -> System.out.println("Produced: {}" + ll));
- }
-}
diff --git a/spring-5-reactive/src/test/java/com/baeldung/web/client/SpringContextTest.java b/spring-5-reactive/src/test/java/com/baeldung/web/client/SpringContextTest.java
new file mode 100644
index 0000000000..8d2ca41451
--- /dev/null
+++ b/spring-5-reactive/src/test/java/com/baeldung/web/client/SpringContextTest.java
@@ -0,0 +1,14 @@
+package com.baeldung.web.client;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+
+import com.baeldung.web.reactive.client.WebClientApplication;
+
+@SpringBootTest(classes = WebClientApplication.class)
+public class SpringContextTest {
+
+ @Test
+ public void whenSpringContextIsBootstrapped_thenNoExceptions() {
+ }
+}
diff --git a/spring-5-reactive/src/test/java/com/baeldung/web/client/WebTestClientIntegrationTest.java b/spring-5-reactive/src/test/java/com/baeldung/web/client/WebTestClientIntegrationTest.java
index 2e37f2ffbd..07a4c81c91 100644
--- a/spring-5-reactive/src/test/java/com/baeldung/web/client/WebTestClientIntegrationTest.java
+++ b/spring-5-reactive/src/test/java/com/baeldung/web/client/WebTestClientIntegrationTest.java
@@ -1,11 +1,11 @@
package com.baeldung.web.client;
-import org.junit.Test;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.web.server.LocalServerPort;
+import org.springframework.context.ApplicationContext;
import org.springframework.security.test.context.support.WithMockUser;
-import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.reactive.server.WebTestClient;
import org.springframework.web.reactive.function.server.RequestPredicates;
import org.springframework.web.reactive.function.server.RouterFunction;
@@ -13,18 +13,23 @@ import org.springframework.web.reactive.function.server.RouterFunctions;
import org.springframework.web.reactive.function.server.ServerResponse;
import org.springframework.web.server.WebHandler;
-import com.baeldung.reactive.Spring5ReactiveApplication;
+import com.baeldung.web.reactive.client.WebClientApplication;
+import com.baeldung.web.reactive.client.WebClientController;
import reactor.core.publisher.Mono;
-@RunWith(SpringRunner.class)
-@SpringBootTest(classes = Spring5ReactiveApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
-@WithMockUser
+@SpringBootTest(classes = WebClientApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class WebTestClientIntegrationTest {
@LocalServerPort
private int port;
+ @Autowired
+ private ApplicationContext context;
+
+ @Autowired
+ private WebClientController controller;
+
private final RouterFunction ROUTER_FUNCTION = RouterFunctions.route(RequestPredicates.GET("/resource"), request -> ServerResponse.ok()
.build());
private final WebHandler WEB_HANDLER = exchange -> Mono.empty();
@@ -49,6 +54,7 @@ public class WebTestClientIntegrationTest {
}
@Test
+ @WithMockUser
public void testWebTestClientWithServerURL() {
WebTestClient.bindToServer()
.baseUrl("http://localhost:" + port)
@@ -58,7 +64,39 @@ public class WebTestClientIntegrationTest {
.exchange()
.expectStatus()
.isOk()
- .expectBody();
+ .expectBody()
+ .jsonPath("field")
+ .isEqualTo("value");
+ ;
+ }
+
+ @Test
+ @WithMockUser
+ public void testWebTestClientWithApplicationContext() {
+ WebTestClient.bindToApplicationContext(context)
+ .build()
+ .get()
+ .uri("/resource")
+ .exchange()
+ .expectStatus()
+ .isOk()
+ .expectBody()
+ .jsonPath("field")
+ .isEqualTo("value");
+ }
+
+ @Test
+ public void testWebTestClientWithController() {
+ WebTestClient.bindToController(controller)
+ .build()
+ .get()
+ .uri("/resource")
+ .exchange()
+ .expectStatus()
+ .isOk()
+ .expectBody()
+ .jsonPath("field")
+ .isEqualTo("value");
}
}
diff --git a/spring-5-webflux/pom.xml b/spring-5-webflux/pom.xml
index 292e4d7ad9..48b5b823fb 100644
--- a/spring-5-webflux/pom.xml
+++ b/spring-5-webflux/pom.xml
@@ -64,4 +64,8 @@
+
+ 2.3.3.RELEASE
+
+
diff --git a/spring-5/README.md b/spring-5/README.md
index d50f9c7544..cce18bedf8 100644
--- a/spring-5/README.md
+++ b/spring-5/README.md
@@ -2,18 +2,12 @@
This module contains articles about Spring 5
-### The Course
-The "REST With Spring" Classes: http://bit.ly/restwithspring
-
### Relevant Articles
-- [Concurrent Test Execution in Spring 5](https://www.baeldung.com/spring-5-concurrent-tests)
- [Spring 5 Functional Bean Registration](https://www.baeldung.com/spring-5-functional-beans)
- [The SpringJUnitConfig and SpringJUnitWebConfig Annotations in Spring 5](https://www.baeldung.com/spring-5-junit-config)
-- [Spring 5 Testing with @EnabledIf Annotation](https://www.baeldung.com/spring-5-enabledIf)
- [Introduction to Spring REST Docs](https://www.baeldung.com/spring-rest-docs)
- [Spring ResponseStatusException](https://www.baeldung.com/spring-response-status-exception)
- [Spring Assert Statements](https://www.baeldung.com/spring-assert)
-- [Configuring a Hikari Connection Pool with Spring Boot](https://www.baeldung.com/spring-boot-hikari)
- [Difference between \ vs \](https://www.baeldung.com/spring-contextannotation-contextcomponentscan)
- [Finding the Spring Version](https://www.baeldung.com/spring-find-version)
diff --git a/spring-5/pom.xml b/spring-5/pom.xml
index eadfb5e512..e368bcacba 100644
--- a/spring-5/pom.xml
+++ b/spring-5/pom.xml
@@ -133,18 +133,7 @@
-
-
-
- org.apache.maven.plugins
- maven-surefire-plugin
- ${maven-surefire-plugin.version}
-
- methods
- true
-
-
+
diff --git a/spring-aop/src/main/java/com/baeldung/method/info/Account.java b/spring-aop/src/main/java/com/baeldung/method/info/Account.java
new file mode 100644
index 0000000000..646e403f1e
--- /dev/null
+++ b/spring-aop/src/main/java/com/baeldung/method/info/Account.java
@@ -0,0 +1,28 @@
+package com.baeldung.method.info;
+
+public class Account {
+
+ private String accountNumber;
+ private double balance;
+
+ public String getAccountNumber() {
+ return accountNumber;
+ }
+
+ public void setAccountNumber(String accountNumber) {
+ this.accountNumber = accountNumber;
+ }
+
+ public double getBalance() {
+ return balance;
+ }
+
+ public void setBalance(double balance) {
+ this.balance = balance;
+ }
+
+ @Override
+ public String toString() {
+ return "Account{" + "accountNumber='" + accountNumber + '\'' + ", balance=" + balance + '}';
+ }
+}
diff --git a/spring-aop/src/main/java/com/baeldung/method/info/AccountOperation.java b/spring-aop/src/main/java/com/baeldung/method/info/AccountOperation.java
new file mode 100644
index 0000000000..74bc60a6db
--- /dev/null
+++ b/spring-aop/src/main/java/com/baeldung/method/info/AccountOperation.java
@@ -0,0 +1,12 @@
+package com.baeldung.method.info;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+@Target(ElementType.METHOD)
+@Retention(RetentionPolicy.RUNTIME)
+public @interface AccountOperation {
+ String operation();
+}
diff --git a/spring-aop/src/main/java/com/baeldung/method/info/BankAccountAspect.java b/spring-aop/src/main/java/com/baeldung/method/info/BankAccountAspect.java
new file mode 100644
index 0000000000..f743758cd7
--- /dev/null
+++ b/spring-aop/src/main/java/com/baeldung/method/info/BankAccountAspect.java
@@ -0,0 +1,55 @@
+package com.baeldung.method.info;
+
+import org.aspectj.lang.JoinPoint;
+import org.aspectj.lang.annotation.Aspect;
+import org.aspectj.lang.annotation.Before;
+import org.aspectj.lang.reflect.MethodSignature;
+import org.springframework.stereotype.Component;
+
+import java.lang.reflect.Method;
+import java.lang.reflect.Modifier;
+import java.util.Arrays;
+
+@Aspect
+@Component
+public class BankAccountAspect {
+
+ @Before(value = "@annotation(com.baeldung.method.info.AccountOperation)")
+ public void getAccountOperationInfo(JoinPoint joinPoint) {
+
+ // Method Information
+ MethodSignature signature = (MethodSignature) joinPoint.getSignature();
+
+ System.out.println("full method description: " + signature.getMethod());
+
+ System.out.println("method name: " + signature.getMethod().getName());
+
+ System.out.println("declaring type: " + signature.getDeclaringType());
+
+ // Method args
+ System.out.println("Method args names:");
+ Arrays.stream(signature.getParameterNames())
+ .forEach(s -> System.out.println("arg name: " + s));
+
+ System.out.println("Method args types:");
+ Arrays.stream(signature.getParameterTypes())
+ .forEach(s -> System.out.println("arg type: " + s));
+
+ System.out.println("Method args values:");
+ Arrays.stream(joinPoint.getArgs())
+ .forEach(o -> System.out.println("arg value: " + o.toString()));
+
+ // Additional Information
+ System.out.println("returning type: " + signature.getReturnType());
+ System.out.println("method modifier: " + Modifier.toString(signature.getModifiers()));
+ Arrays.stream(signature.getExceptionTypes())
+ .forEach(aClass -> System.out.println("exception type: " + aClass));
+
+ // Method annotation
+ Method method = signature.getMethod();
+ AccountOperation accountOperation = method.getAnnotation(AccountOperation.class);
+ System.out.println("Account operation annotation: " + accountOperation);
+ System.out.println("Account operation value: " + accountOperation.operation());
+
+ }
+}
diff --git a/spring-aop/src/main/java/com/baeldung/method/info/BankAccountService.java b/spring-aop/src/main/java/com/baeldung/method/info/BankAccountService.java
new file mode 100644
index 0000000000..6ebab37d9e
--- /dev/null
+++ b/spring-aop/src/main/java/com/baeldung/method/info/BankAccountService.java
@@ -0,0 +1,29 @@
+package com.baeldung.method.info;
+
+import org.apache.commons.lang3.RandomUtils;
+import org.springframework.stereotype.Component;
+
+@Component
+public class BankAccountService {
+
+ @AccountOperation(operation = "deposit")
+ public void deposit(Account account, Double amount) {
+ account.setBalance(account.getBalance() + amount);
+ }
+
+ @AccountOperation(operation = "withdraw")
+ public void withdraw(Account account, Double amount) throws WithdrawLimitException {
+
+ if (amount > 500.0) {
+ throw new WithdrawLimitException("Withdraw limit exceeded.");
+ }
+
+ account.setBalance(account.getBalance() - amount);
+
+ }
+
+ public double getBalance() {
+ return RandomUtils.nextDouble();
+ }
+
+}
diff --git a/spring-aop/src/main/java/com/baeldung/method/info/WithdrawLimitException.java b/spring-aop/src/main/java/com/baeldung/method/info/WithdrawLimitException.java
new file mode 100644
index 0000000000..b29a27c94f
--- /dev/null
+++ b/spring-aop/src/main/java/com/baeldung/method/info/WithdrawLimitException.java
@@ -0,0 +1,7 @@
+package com.baeldung.method.info;
+
+public class WithdrawLimitException extends RuntimeException {
+ public WithdrawLimitException(String message) {
+ super(message);
+ }
+}
diff --git a/spring-aop/src/test/java/com/baeldung/method/info/BankAccountServiceIntegrationTest.java b/spring-aop/src/test/java/com/baeldung/method/info/BankAccountServiceIntegrationTest.java
new file mode 100644
index 0000000000..b1ba97654e
--- /dev/null
+++ b/spring-aop/src/test/java/com/baeldung/method/info/BankAccountServiceIntegrationTest.java
@@ -0,0 +1,49 @@
+package com.baeldung.method.info;
+
+import org.assertj.core.api.Assertions;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+@SpringBootTest
+class BankAccountServiceIntegrationTest {
+
+ private Account account;
+
+ @BeforeEach
+ public void setup() {
+ account = new Account();
+ account.setAccountNumber("12345");
+ account.setBalance(2000.0);
+ }
+
+ @Autowired
+ BankAccountService bankAccountService;
+
+ @Test
+ void withdraw() {
+ bankAccountService.withdraw(account, 500.0);
+ assertTrue(account.getBalance() == 1500.0);
+ }
+
+ @Test
+ void withdrawWhenLimitReached() {
+ Assertions.assertThatExceptionOfType(WithdrawLimitException.class)
+ .isThrownBy(() -> bankAccountService.withdraw(account, 600.0));
+ assertTrue(account.getBalance() == 2000.0);
+ }
+
+ @Test
+ void deposit() {
+ bankAccountService.deposit(account, 500.0);
+ assertTrue(account.getBalance() == 2500.0);
+ }
+
+ @Test
+ void getBalance() {
+ bankAccountService.getBalance();
+ }
+}
diff --git a/spring-apache-camel/README.md b/spring-apache-camel/README.md
index e89eb4fe6c..6a16e1da05 100644
--- a/spring-apache-camel/README.md
+++ b/spring-apache-camel/README.md
@@ -9,6 +9,7 @@ This module contains articles about Spring with Apache Camel
- [Introduction To Apache Camel](http://www.baeldung.com/apache-camel-intro)
- [Integration Patterns With Apache Camel](http://www.baeldung.com/camel-integration-patterns)
- [Using Apache Camel with Spring](http://www.baeldung.com/spring-apache-camel-tutorial)
+- [Unmarshalling a JSON Array Using camel-jackson](https://www.baeldung.com/java-camel-jackson-json-array)
### Framework Versions:
@@ -23,4 +24,4 @@ To build this application execute:
To run this application you can either run our main class App from your IDE or you can execute following maven command:
-`mvn exec:java -Dexec.mainClass="com.baeldung.camel.main.App"`
\ No newline at end of file
+`mvn exec:java -Dexec.mainClass="com.baeldung.camel.main.App"`
diff --git a/spring-apache-camel/pom.xml b/spring-apache-camel/pom.xml
index 2d0d632546..9c7cc14381 100644
--- a/spring-apache-camel/pom.xml
+++ b/spring-apache-camel/pom.xml
@@ -47,6 +47,17 @@
camel-spring-javaconfig
${env.camel.version}
+
+ org.apache.camel
+ camel-jackson
+ ${env.camel.version}
+
+
+ org.apache.camel
+ camel-test
+ ${env.camel.version}
+ test
+
diff --git a/spring-apache-camel/src/main/java/com/baeldung/camel/jackson/Fruit.java b/spring-apache-camel/src/main/java/com/baeldung/camel/jackson/Fruit.java
new file mode 100644
index 0000000000..1932131ddd
--- /dev/null
+++ b/spring-apache-camel/src/main/java/com/baeldung/camel/jackson/Fruit.java
@@ -0,0 +1,24 @@
+package com.baeldung.camel.jackson;
+
+public class Fruit {
+
+ private String name;
+ private int id;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public int getId() {
+ return id;
+ }
+
+ public void setId(int id) {
+ this.id = id;
+ }
+
+}
diff --git a/spring-apache-camel/src/main/java/com/baeldung/camel/jackson/FruitList.java b/spring-apache-camel/src/main/java/com/baeldung/camel/jackson/FruitList.java
new file mode 100644
index 0000000000..02f2b6feb0
--- /dev/null
+++ b/spring-apache-camel/src/main/java/com/baeldung/camel/jackson/FruitList.java
@@ -0,0 +1,17 @@
+package com.baeldung.camel.jackson;
+
+import java.util.List;
+
+public class FruitList {
+
+ private List fruits;
+
+ public List getFruits() {
+ return fruits;
+ }
+
+ public void setFruits(List fruits) {
+ this.fruits = fruits;
+ }
+
+}
diff --git a/spring-apache-camel/src/test/java/com/baeldung/camel/jackson/FruitArrayJacksonUnmarshalUnitTest.java b/spring-apache-camel/src/test/java/com/baeldung/camel/jackson/FruitArrayJacksonUnmarshalUnitTest.java
new file mode 100644
index 0000000000..4810d7370e
--- /dev/null
+++ b/spring-apache-camel/src/test/java/com/baeldung/camel/jackson/FruitArrayJacksonUnmarshalUnitTest.java
@@ -0,0 +1,60 @@
+package com.baeldung.camel.jackson;
+
+import java.io.IOException;
+import java.net.URISyntaxException;
+import java.net.URL;
+import java.nio.file.Files;
+import java.nio.file.Paths;
+import java.util.List;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.jackson.ListJacksonDataFormat;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Test;
+
+public class FruitArrayJacksonUnmarshalUnitTest extends CamelTestSupport {
+
+ @Test
+ public void givenJsonFruitArray_whenUnmarshalled_thenSuccess() throws Exception {
+ MockEndpoint mock = getMockEndpoint("mock:marshalledObject");
+ mock.expectedMessageCount(1);
+ mock.message(0).body().isInstanceOf(List.class);
+
+ String json = readJsonFromFile("/json/fruit-array.json");
+ template.sendBody("direct:jsonInput", json);
+ assertMockEndpointsSatisfied();
+
+ @SuppressWarnings("unchecked")
+ List fruitList = mock.getReceivedExchanges().get(0).getIn().getBody(List.class);
+ assertNotNull("Fruit lists should not be null", fruitList);
+
+ assertEquals("There should be two fruits", 2, fruitList.size());
+
+ Fruit fruit = fruitList.get(0);
+ assertEquals("Fruit name", "Banana", fruit.getName());
+ assertEquals("Fruit id", 100, fruit.getId());
+
+ fruit = fruitList.get(1);
+ assertEquals("Fruit name", "Apple", fruit.getName());
+ assertEquals("Fruit id", 101, fruit.getId());
+ }
+
+ @Override
+ protected RouteBuilder createRouteBuilder() throws Exception {
+ return new RouteBuilder() {
+ @Override
+ public void configure() throws Exception {
+
+ from("direct:jsonInput").unmarshal(new ListJacksonDataFormat(Fruit.class))
+ .to("mock:marshalledObject");
+ }
+ };
+ }
+
+ private String readJsonFromFile(String path) throws URISyntaxException, IOException {
+ URL resource = FruitArrayJacksonUnmarshalUnitTest.class.getResource(path);
+ return new String(Files.readAllBytes(Paths.get(resource.toURI())));
+ }
+
+}
diff --git a/spring-apache-camel/src/test/java/com/baeldung/camel/jackson/FruitListJacksonUnmarshalUnitTest.java b/spring-apache-camel/src/test/java/com/baeldung/camel/jackson/FruitListJacksonUnmarshalUnitTest.java
new file mode 100644
index 0000000000..b5647f02f9
--- /dev/null
+++ b/spring-apache-camel/src/test/java/com/baeldung/camel/jackson/FruitListJacksonUnmarshalUnitTest.java
@@ -0,0 +1,59 @@
+package com.baeldung.camel.jackson;
+
+import java.io.IOException;
+import java.net.URISyntaxException;
+import java.net.URL;
+import java.nio.file.Files;
+import java.nio.file.Paths;
+import java.util.List;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.jackson.JacksonDataFormat;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Test;
+
+public class FruitListJacksonUnmarshalUnitTest extends CamelTestSupport {
+
+ @Test
+ public void givenJsonFruitList_whenUnmarshalled_thenSuccess() throws Exception {
+ MockEndpoint mock = getMockEndpoint("mock:marshalledObject");
+ mock.expectedMessageCount(1);
+ mock.message(0).body().isInstanceOf(FruitList.class);
+
+ String json = readJsonFromFile("/json/fruit-list.json");
+ template.sendBody("direct:jsonInput", json);
+ assertMockEndpointsSatisfied();
+
+ FruitList fruitList = mock.getReceivedExchanges().get(0).getIn().getBody(FruitList.class);
+ assertNotNull("Fruit lists should not be null", fruitList);
+
+ List fruits = fruitList.getFruits();
+ assertEquals("There should be two fruits", 2, fruits.size());
+
+ Fruit fruit = fruits.get(0);
+ assertEquals("Fruit name", "Banana", fruit.getName());
+ assertEquals("Fruit id", 100, fruit.getId());
+
+ fruit = fruits.get(1);
+ assertEquals("Fruit name", "Apple", fruit.getName());
+ assertEquals("Fruit id", 101, fruit.getId());
+ }
+
+ @Override
+ protected RouteBuilder createRouteBuilder() throws Exception {
+ return new RouteBuilder() {
+ @Override
+ public void configure() throws Exception {
+ from("direct:jsonInput").unmarshal(new JacksonDataFormat(FruitList.class))
+ .to("mock:marshalledObject");
+ }
+ };
+ }
+
+ private String readJsonFromFile(String path) throws URISyntaxException, IOException {
+ URL resource = FruitListJacksonUnmarshalUnitTest.class.getResource(path);
+ return new String(Files.readAllBytes(Paths.get(resource.toURI())));
+ }
+
+}
diff --git a/spring-apache-camel/src/test/resources/json/fruit-array.json b/spring-apache-camel/src/test/resources/json/fruit-array.json
new file mode 100644
index 0000000000..0bd917c53f
--- /dev/null
+++ b/spring-apache-camel/src/test/resources/json/fruit-array.json
@@ -0,0 +1,10 @@
+[
+ {
+ "id": 100,
+ "name": "Banana"
+ },
+ {
+ "id": 101,
+ "name": "Apple"
+ }
+]
\ No newline at end of file
diff --git a/spring-apache-camel/src/test/resources/json/fruit-list.json b/spring-apache-camel/src/test/resources/json/fruit-list.json
new file mode 100644
index 0000000000..357e08f7d5
--- /dev/null
+++ b/spring-apache-camel/src/test/resources/json/fruit-list.json
@@ -0,0 +1,12 @@
+{
+ "fruits": [
+ {
+ "id": 100,
+ "name": "Banana"
+ },
+ {
+ "id": 101,
+ "name": "Apple"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/spring-batch-2/README.md b/spring-batch-2/README.md
new file mode 100644
index 0000000000..08bf1933db
--- /dev/null
+++ b/spring-batch-2/README.md
@@ -0,0 +1,3 @@
+### Relevant Articles:
+
+- [Spring Boot With Spring Batch](https://www.baeldung.com/spring-boot-spring-batch)
diff --git a/spring-batch-2/pom.xml b/spring-batch-2/pom.xml
new file mode 100644
index 0000000000..183ad610f3
--- /dev/null
+++ b/spring-batch-2/pom.xml
@@ -0,0 +1,54 @@
+
+
+ 4.0.0
+ spring-batch-2
+ 0.1-SNAPSHOT
+ spring-batch-2
+ jar
+ http://maven.apache.org
+
+
+ com.baeldung
+ parent-boot-2
+ 0.0.1-SNAPSHOT
+ ../parent-boot-2
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-batch
+
+
+ org.hsqldb
+ hsqldb
+ ${hsqldb.version}
+ runtime
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+ org.junit.vintage
+ junit-vintage-engine
+
+
+
+
+ org.springframework.batch
+ spring-batch-test
+ ${spring.batch.version}
+ test
+
+
+
+
+ 4.3.0
+ 2.5.1
+
+
+
diff --git a/spring-batch-2/src/main/java/com/baeldung/batch/BatchConfiguration.java b/spring-batch-2/src/main/java/com/baeldung/batch/BatchConfiguration.java
new file mode 100644
index 0000000000..0c053dd86c
--- /dev/null
+++ b/spring-batch-2/src/main/java/com/baeldung/batch/BatchConfiguration.java
@@ -0,0 +1,81 @@
+package com.baeldung.batch;
+
+import javax.sql.DataSource;
+
+import org.springframework.batch.core.Job;
+import org.springframework.batch.core.Step;
+import org.springframework.batch.core.configuration.annotation.EnableBatchProcessing;
+import org.springframework.batch.core.configuration.annotation.JobBuilderFactory;
+import org.springframework.batch.core.configuration.annotation.StepBuilderFactory;
+import org.springframework.batch.core.launch.support.RunIdIncrementer;
+import org.springframework.batch.item.database.BeanPropertyItemSqlParameterSourceProvider;
+import org.springframework.batch.item.database.JdbcBatchItemWriter;
+import org.springframework.batch.item.database.builder.JdbcBatchItemWriterBuilder;
+import org.springframework.batch.item.file.FlatFileItemReader;
+import org.springframework.batch.item.file.builder.FlatFileItemReaderBuilder;
+import org.springframework.batch.item.file.mapping.BeanWrapperFieldSetMapper;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.core.io.ClassPathResource;
+
+@Configuration
+@EnableBatchProcessing
+public class BatchConfiguration {
+
+ @Autowired
+ public JobBuilderFactory jobBuilderFactory;
+
+ @Autowired
+ public StepBuilderFactory stepBuilderFactory;
+
+ @Value("${file.input}")
+ private String fileInput;
+
+ @Bean
+ public FlatFileItemReader reader() {
+ return new FlatFileItemReaderBuilder().name("coffeeItemReader")
+ .resource(new ClassPathResource(fileInput))
+ .delimited()
+ .names(new String[] { "brand", "origin", "characteristics" })
+ .fieldSetMapper(new BeanWrapperFieldSetMapper() {{
+ setTargetType(Coffee.class);
+ }})
+ .build();
+ }
+
+ @Bean
+ public CoffeeItemProcessor processor() {
+ return new CoffeeItemProcessor();
+ }
+
+ @Bean
+ public JdbcBatchItemWriter writer(DataSource dataSource) {
+ return new JdbcBatchItemWriterBuilder().itemSqlParameterSourceProvider(new BeanPropertyItemSqlParameterSourceProvider<>())
+ .sql("INSERT INTO coffee (brand, origin, characteristics) VALUES (:brand, :origin, :characteristics)")
+ .dataSource(dataSource)
+ .build();
+ }
+
+ @Bean
+ public Job importUserJob(JobCompletionNotificationListener listener, Step step1) {
+ return jobBuilderFactory.get("importUserJob")
+ .incrementer(new RunIdIncrementer())
+ .listener(listener)
+ .flow(step1)
+ .end()
+ .build();
+ }
+
+ @Bean
+ public Step step1(JdbcBatchItemWriter writer) {
+ return stepBuilderFactory.get("step1")
+ . chunk(10)
+ .reader(reader())
+ .processor(processor())
+ .writer(writer)
+ .build();
+ }
+
+}
diff --git a/spring-batch-2/src/main/java/com/baeldung/batch/Coffee.java b/spring-batch-2/src/main/java/com/baeldung/batch/Coffee.java
new file mode 100644
index 0000000000..4dfcd9959c
--- /dev/null
+++ b/spring-batch-2/src/main/java/com/baeldung/batch/Coffee.java
@@ -0,0 +1,47 @@
+package com.baeldung.batch;
+
+public class Coffee {
+
+ private String brand;
+ private String origin;
+ private String characteristics;
+
+ public Coffee() {
+ }
+
+ public Coffee(String brand, String origin, String characteristics) {
+ this.brand = brand;
+ this.origin = origin;
+ this.characteristics = characteristics;
+ }
+
+ public String getBrand() {
+ return brand;
+ }
+
+ public void setBrand(String brand) {
+ this.brand = brand;
+ }
+
+ public String getOrigin() {
+ return origin;
+ }
+
+ public void setOrigin(String origin) {
+ this.origin = origin;
+ }
+
+ public String getCharacteristics() {
+ return characteristics;
+ }
+
+ public void setCharacteristics(String characteristics) {
+ this.characteristics = characteristics;
+ }
+
+ @Override
+ public String toString() {
+ return "Coffee [brand=" + getBrand() + ", origin=" + getOrigin() + ", characteristics=" + getCharacteristics() + "]";
+ }
+
+}
diff --git a/spring-batch-2/src/main/java/com/baeldung/batch/CoffeeItemProcessor.java b/spring-batch-2/src/main/java/com/baeldung/batch/CoffeeItemProcessor.java
new file mode 100644
index 0000000000..b154b80453
--- /dev/null
+++ b/spring-batch-2/src/main/java/com/baeldung/batch/CoffeeItemProcessor.java
@@ -0,0 +1,24 @@
+package com.baeldung.batch;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import org.springframework.batch.item.ItemProcessor;
+
+public class CoffeeItemProcessor implements ItemProcessor {
+
+ private static final Logger LOGGER = LoggerFactory.getLogger(CoffeeItemProcessor.class);
+
+ @Override
+ public Coffee process(final Coffee coffee) throws Exception {
+ String brand = coffee.getBrand().toUpperCase();
+ String origin = coffee.getOrigin().toUpperCase();
+ String chracteristics = coffee.getCharacteristics().toUpperCase();
+
+ Coffee transformedCoffee = new Coffee(brand, origin, chracteristics);
+ LOGGER.info("Converting ( {} ) into ( {} )", coffee, transformedCoffee);
+
+ return transformedCoffee;
+ }
+
+}
diff --git a/spring-batch-2/src/main/java/com/baeldung/batch/JobCompletionNotificationListener.java b/spring-batch-2/src/main/java/com/baeldung/batch/JobCompletionNotificationListener.java
new file mode 100644
index 0000000000..ca1de40aea
--- /dev/null
+++ b/spring-batch-2/src/main/java/com/baeldung/batch/JobCompletionNotificationListener.java
@@ -0,0 +1,34 @@
+package com.baeldung.batch;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.batch.core.BatchStatus;
+import org.springframework.batch.core.JobExecution;
+import org.springframework.batch.core.listener.JobExecutionListenerSupport;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.jdbc.core.JdbcTemplate;
+import org.springframework.stereotype.Component;
+
+@Component
+public class JobCompletionNotificationListener extends JobExecutionListenerSupport {
+
+ private static final Logger LOGGER = LoggerFactory.getLogger(JobCompletionNotificationListener.class);
+
+ private final JdbcTemplate jdbcTemplate;
+
+ @Autowired
+ public JobCompletionNotificationListener(JdbcTemplate jdbcTemplate) {
+ this.jdbcTemplate = jdbcTemplate;
+ }
+
+ @Override
+ public void afterJob(JobExecution jobExecution) {
+ if (jobExecution.getStatus() == BatchStatus.COMPLETED) {
+ LOGGER.info("!!! JOB FINISHED! Time to verify the results");
+
+ String query = "SELECT brand, origin, characteristics FROM coffee";
+ jdbcTemplate.query(query, (rs, row) -> new Coffee(rs.getString(1), rs.getString(2), rs.getString(3)))
+ .forEach(coffee -> LOGGER.info("Found < {} > in the database.", coffee));
+ }
+ }
+}
diff --git a/spring-batch-2/src/main/java/com/baeldung/batch/SpringBootBatchProcessingApplication.java b/spring-batch-2/src/main/java/com/baeldung/batch/SpringBootBatchProcessingApplication.java
new file mode 100644
index 0000000000..7682124b8d
--- /dev/null
+++ b/spring-batch-2/src/main/java/com/baeldung/batch/SpringBootBatchProcessingApplication.java
@@ -0,0 +1,13 @@
+package com.baeldung.batch;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class SpringBootBatchProcessingApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(SpringBootBatchProcessingApplication.class, args);
+ }
+
+}
diff --git a/spring-batch-2/src/main/resources/application.properties b/spring-batch-2/src/main/resources/application.properties
new file mode 100644
index 0000000000..0b8c56d3f8
--- /dev/null
+++ b/spring-batch-2/src/main/resources/application.properties
@@ -0,0 +1 @@
+file.input=coffee-list.csv
\ No newline at end of file
diff --git a/spring-batch-2/src/main/resources/coffee-list.csv b/spring-batch-2/src/main/resources/coffee-list.csv
new file mode 100644
index 0000000000..6ceef00556
--- /dev/null
+++ b/spring-batch-2/src/main/resources/coffee-list.csv
@@ -0,0 +1,3 @@
+Blue Mountain,Jamaica,Fruity
+Lavazza,Colombia,Strong
+Folgers,America,Smokey
\ No newline at end of file
diff --git a/spring-5-security-cognito/src/main/resources/logback.xml b/spring-batch-2/src/main/resources/logback.xml
similarity index 100%
rename from spring-5-security-cognito/src/main/resources/logback.xml
rename to spring-batch-2/src/main/resources/logback.xml
diff --git a/spring-batch-2/src/main/resources/schema-all.sql b/spring-batch-2/src/main/resources/schema-all.sql
new file mode 100644
index 0000000000..9f698f7d81
--- /dev/null
+++ b/spring-batch-2/src/main/resources/schema-all.sql
@@ -0,0 +1,8 @@
+DROP TABLE coffee IF EXISTS;
+
+CREATE TABLE coffee (
+ coffee_id BIGINT IDENTITY NOT NULL PRIMARY KEY,
+ brand VARCHAR(20),
+ origin VARCHAR(20),
+ characteristics VARCHAR(30)
+);
\ No newline at end of file
diff --git a/spring-batch-2/src/test/java/com/baeldung/batch/SpringBootBatchIntegrationTest.java b/spring-batch-2/src/test/java/com/baeldung/batch/SpringBootBatchIntegrationTest.java
new file mode 100644
index 0000000000..ba2b8a6a13
--- /dev/null
+++ b/spring-batch-2/src/test/java/com/baeldung/batch/SpringBootBatchIntegrationTest.java
@@ -0,0 +1,49 @@
+package com.baeldung.batch;
+
+import static org.hamcrest.Matchers.is;
+import static org.junit.Assert.assertThat;
+
+import org.junit.After;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.batch.core.ExitStatus;
+import org.springframework.batch.core.JobExecution;
+import org.springframework.batch.core.JobInstance;
+import org.springframework.batch.test.JobLauncherTestUtils;
+import org.springframework.batch.test.JobRepositoryTestUtils;
+import org.springframework.batch.test.context.SpringBatchTest;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.context.annotation.PropertySource;
+import org.springframework.test.annotation.DirtiesContext;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@SpringBatchTest
+@SpringBootTest
+@DirtiesContext
+@PropertySource("classpath:application.properties")
+@RunWith(SpringRunner.class)
+public class SpringBootBatchIntegrationTest {
+
+ @Autowired
+ private JobLauncherTestUtils jobLauncherTestUtils;
+
+ @Autowired
+ private JobRepositoryTestUtils jobRepositoryTestUtils;
+
+ @After
+ public void cleanUp() {
+ jobRepositoryTestUtils.removeJobExecutions();
+ }
+
+ @Test
+ public void givenCoffeeList_whenJobExecuted_thenSuccess() throws Exception {
+ JobExecution jobExecution = jobLauncherTestUtils.launchJob();
+ JobInstance jobInstance = jobExecution.getJobInstance();
+ ExitStatus jobExitStatus = jobExecution.getExitStatus();
+
+ assertThat(jobInstance.getJobName(), is("importUserJob"));
+ assertThat(jobExitStatus.getExitCode(), is("COMPLETED"));
+ }
+
+}
diff --git a/spring-batch/pom.xml b/spring-batch/pom.xml
index 9edf8ad3be..75ec0d4877 100644
--- a/spring-batch/pom.xml
+++ b/spring-batch/pom.xml
@@ -95,8 +95,8 @@
- 5.2.0.RELEASE
- 4.2.0.RELEASE
+ 5.3.0
+ 4.3.0
3.15.1
4.1
2.3.1
diff --git a/spring-batch/repository.sqlite b/spring-batch/repository.sqlite
index 2b549352ec..a2b87ffa00 100644
Binary files a/spring-batch/repository.sqlite and b/spring-batch/repository.sqlite differ
diff --git a/spring-batch/src/main/java/com/baeldung/batchscheduler/SpringBatchScheduler.java b/spring-batch/src/main/java/com/baeldung/batchscheduler/SpringBatchScheduler.java
index 4de3e0a4b6..cff4e96c89 100644
--- a/spring-batch/src/main/java/com/baeldung/batchscheduler/SpringBatchScheduler.java
+++ b/spring-batch/src/main/java/com/baeldung/batchscheduler/SpringBatchScheduler.java
@@ -1,12 +1,5 @@
package com.baeldung.batchscheduler;
-import java.util.Date;
-import java.util.IdentityHashMap;
-import java.util.List;
-import java.util.Map;
-import java.util.concurrent.ScheduledFuture;
-import java.util.concurrent.atomic.AtomicBoolean;
-import java.util.concurrent.atomic.AtomicInteger;
import com.baeldung.batchscheduler.model.Book;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@@ -20,7 +13,7 @@ import org.springframework.batch.core.configuration.annotation.StepBuilderFactor
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.core.launch.support.SimpleJobLauncher;
import org.springframework.batch.core.repository.JobRepository;
-import org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean;
+import org.springframework.batch.core.repository.support.JobRepositoryFactoryBean;
import org.springframework.batch.item.ItemWriter;
import org.springframework.batch.item.file.FlatFileItemReader;
import org.springframework.batch.item.file.builder.FlatFileItemReaderBuilder;
@@ -30,12 +23,22 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.ClassPathResource;
+import org.springframework.jdbc.datasource.DriverManagerDataSource;
import org.springframework.scheduling.TaskScheduler;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;
import org.springframework.scheduling.support.ScheduledMethodRunnable;
+import javax.sql.DataSource;
+import java.util.Date;
+import java.util.IdentityHashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.concurrent.ScheduledFuture;
+import java.util.concurrent.atomic.AtomicBoolean;
+import java.util.concurrent.atomic.AtomicInteger;
+
@Configuration
@EnableBatchProcessing
@EnableScheduling
@@ -122,9 +125,18 @@ public class SpringBatchScheduler {
@Bean
public JobRepository jobRepository() throws Exception {
- MapJobRepositoryFactoryBean factory = new MapJobRepositoryFactoryBean();
+ JobRepositoryFactoryBean factory = new JobRepositoryFactoryBean();
+ factory.setDataSource(dataSource());
factory.setTransactionManager(new ResourcelessTransactionManager());
- return (JobRepository) factory.getObject();
+ return factory.getObject();
+ }
+
+ @Bean
+ public DataSource dataSource() {
+ DriverManagerDataSource dataSource = new DriverManagerDataSource();
+ dataSource.setDriverClassName("org.sqlite.JDBC");
+ dataSource.setUrl("jdbc:sqlite:repository.sqlite");
+ return dataSource;
}
@Bean
diff --git a/spring-batch/src/main/java/com/baeldung/taskletsvschunks/config/ChunksConfig.java b/spring-batch/src/main/java/com/baeldung/taskletsvschunks/config/ChunksConfig.java
index 57288fb312..c8b05848f9 100644
--- a/spring-batch/src/main/java/com/baeldung/taskletsvschunks/config/ChunksConfig.java
+++ b/spring-batch/src/main/java/com/baeldung/taskletsvschunks/config/ChunksConfig.java
@@ -12,7 +12,7 @@ import org.springframework.batch.core.configuration.annotation.StepBuilderFactor
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.core.launch.support.SimpleJobLauncher;
import org.springframework.batch.core.repository.JobRepository;
-import org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean;
+import org.springframework.batch.core.repository.support.JobRepositoryFactoryBean;
import org.springframework.batch.item.ItemProcessor;
import org.springframework.batch.item.ItemReader;
import org.springframework.batch.item.ItemWriter;
@@ -21,8 +21,11 @@ import org.springframework.batch.test.JobLauncherTestUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
+import org.springframework.jdbc.datasource.DriverManagerDataSource;
import org.springframework.transaction.PlatformTransactionManager;
+import javax.sql.DataSource;
+
@Configuration
@EnableBatchProcessing
public class ChunksConfig {
@@ -38,9 +41,18 @@ public class ChunksConfig {
@Bean
public JobRepository jobRepository() throws Exception {
- MapJobRepositoryFactoryBean factory = new MapJobRepositoryFactoryBean();
+ JobRepositoryFactoryBean factory = new JobRepositoryFactoryBean();
+ factory.setDataSource(dataSource());
factory.setTransactionManager(transactionManager());
- return (JobRepository) factory.getObject();
+ return factory.getObject();
+ }
+
+ @Bean
+ public DataSource dataSource() {
+ DriverManagerDataSource dataSource = new DriverManagerDataSource();
+ dataSource.setDriverClassName("org.sqlite.JDBC");
+ dataSource.setUrl("jdbc:sqlite:repository.sqlite");
+ return dataSource;
}
@Bean
diff --git a/spring-batch/src/main/java/com/baeldung/taskletsvschunks/config/TaskletsConfig.java b/spring-batch/src/main/java/com/baeldung/taskletsvschunks/config/TaskletsConfig.java
index e7157ac520..5f2f49928c 100644
--- a/spring-batch/src/main/java/com/baeldung/taskletsvschunks/config/TaskletsConfig.java
+++ b/spring-batch/src/main/java/com/baeldung/taskletsvschunks/config/TaskletsConfig.java
@@ -11,14 +11,17 @@ import org.springframework.batch.core.configuration.annotation.StepBuilderFactor
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.core.launch.support.SimpleJobLauncher;
import org.springframework.batch.core.repository.JobRepository;
-import org.springframework.batch.core.repository.support.MapJobRepositoryFactoryBean;
+import org.springframework.batch.core.repository.support.JobRepositoryFactoryBean;
import org.springframework.batch.support.transaction.ResourcelessTransactionManager;
import org.springframework.batch.test.JobLauncherTestUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
+import org.springframework.jdbc.datasource.DriverManagerDataSource;
import org.springframework.transaction.PlatformTransactionManager;
+import javax.sql.DataSource;
+
@Configuration
@EnableBatchProcessing
public class TaskletsConfig {
@@ -34,9 +37,18 @@ public class TaskletsConfig {
@Bean
public JobRepository jobRepository() throws Exception {
- MapJobRepositoryFactoryBean factory = new MapJobRepositoryFactoryBean();
+ JobRepositoryFactoryBean factory = new JobRepositoryFactoryBean();
+ factory.setDataSource(dataSource());
factory.setTransactionManager(transactionManager());
- return (JobRepository) factory.getObject();
+ return factory.getObject();
+ }
+
+ @Bean
+ public DataSource dataSource() {
+ DriverManagerDataSource dataSource = new DriverManagerDataSource();
+ dataSource.setDriverClassName("org.sqlite.JDBC");
+ dataSource.setUrl("jdbc:sqlite:repository.sqlite");
+ return dataSource;
}
@Bean
diff --git a/spring-batch/src/test/java/com/baeldung/SpringContextTest.java b/spring-batch/src/test/java/com/baeldung/SpringContextTest.java
deleted file mode 100644
index b82bb35daf..0000000000
--- a/spring-batch/src/test/java/com/baeldung/SpringContextTest.java
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.baeldung;
-
-import com.baeldung.batch.App;
-import org.junit.Test;
-
-public class SpringContextTest {
-
- @Test
- public void testMain() throws Exception {
- App.main(null);
- }
-}
diff --git a/spring-boot-modules/pom.xml b/spring-boot-modules/pom.xml
index fa70a9f058..ee088c357a 100644
--- a/spring-boot-modules/pom.xml
+++ b/spring-boot-modules/pom.xml
@@ -24,8 +24,10 @@
spring-boot-angular
spring-boot-annotations
spring-boot-artifacts
+ spring-boot-artifacts-2
spring-boot-autoconfiguration
spring-boot-basic-customization
+ spring-boot-basic-customization-2
spring-boot-bootstrap
spring-boot-client
spring-boot-config-jpa-error
@@ -48,7 +50,6 @@
spring-boot-libraries
spring-boot-libraries-2
spring-boot-logging-log4j2
- spring-boot-kotlin
spring-boot-mvc
spring-boot-mvc-2
spring-boot-mvc-3
@@ -64,10 +65,12 @@
spring-boot-security
spring-boot-springdoc
spring-boot-swagger
+ spring-boot-swagger-jwt
spring-boot-testing
spring-boot-vue
spring-boot-xml
spring-boot-actuator
+ spring-boot-data-2
@@ -113,6 +116,5 @@
5.6.2
- 2.6
diff --git a/spring-boot-modules/spring-boot-admin/spring-boot-admin-client/src/test/java/org/baeldung/SpringContextTest.java b/spring-boot-modules/spring-boot-admin/spring-boot-admin-client/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-boot-modules/spring-boot-admin/spring-boot-admin-client/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-boot-modules/spring-boot-admin/spring-boot-admin-client/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-boot-modules/spring-boot-admin/spring-boot-admin-server/pom.xml b/spring-boot-modules/spring-boot-admin/spring-boot-admin-server/pom.xml
index 4c1dcdef6b..558aed8b26 100644
--- a/spring-boot-modules/spring-boot-admin/spring-boot-admin-server/pom.xml
+++ b/spring-boot-modules/spring-boot-admin/spring-boot-admin-server/pom.xml
@@ -86,5 +86,6 @@
2.2.2
1.5.7
2.0.4.RELEASE
+ 2.3.3.RELEASE
diff --git a/spring-boot-modules/spring-boot-admin/spring-boot-admin-server/src/test/java/org/baeldung/SpringContextTest.java b/spring-boot-modules/spring-boot-admin/spring-boot-admin-server/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-boot-modules/spring-boot-admin/spring-boot-admin-server/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-boot-modules/spring-boot-admin/spring-boot-admin-server/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-boot-modules/spring-boot-angular/src/test/java/org/baeldung/SpringContextTest.java b/spring-boot-modules/spring-boot-angular/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-boot-modules/spring-boot-angular/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-boot-modules/spring-boot-angular/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-boot-modules/spring-boot-annotations/README.md b/spring-boot-modules/spring-boot-annotations/README.md
index a721f28d55..6ead94de86 100644
--- a/spring-boot-modules/spring-boot-annotations/README.md
+++ b/spring-boot-modules/spring-boot-annotations/README.md
@@ -9,3 +9,4 @@ This module contains articles about Spring Boot annotations
- [Spring Web Annotations](https://www.baeldung.com/spring-mvc-annotations)
- [Spring Core Annotations](https://www.baeldung.com/spring-core-annotations)
- [Spring Bean Annotations](https://www.baeldung.com/spring-bean-annotations)
+- [Difference Between @ComponentScan and @EnableAutoConfiguration in Spring Boot](https://www.baeldung.com/spring-componentscan-vs-enableautoconfiguration)
diff --git a/spring-boot-modules/spring-boot-artifacts-2/README.md b/spring-boot-modules/spring-boot-artifacts-2/README.md
new file mode 100644
index 0000000000..35f9cfab32
--- /dev/null
+++ b/spring-boot-modules/spring-boot-artifacts-2/README.md
@@ -0,0 +1,7 @@
+## Spring Boot Artifacts 2
+
+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)
diff --git a/spring-boot-modules/spring-boot-artifacts-2/pom.xml b/spring-boot-modules/spring-boot-artifacts-2/pom.xml
new file mode 100644
index 0000000000..abea13151e
--- /dev/null
+++ b/spring-boot-modules/spring-boot-artifacts-2/pom.xml
@@ -0,0 +1,48 @@
+
+
+ 4.0.0
+
+
+ com.baeldung.spring-boot-modules
+ spring-boot-modules
+ 1.0.0-SNAPSHOT
+ ../
+
+
+ spring-boot-artifacts-2
+ jar
+
+ spring-boot-artifacts-2
+ Demo project for Spring Boot
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+
+ ${project.artifactId}
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+ repackage
+
+
+
+
+
+
+
+
+
+ com.baeldung.demo.DemoApplication
+
+
+
diff --git a/docker/docker-spring-boot/src/main/java/com/baeldung/docker/DemoApplication.java b/spring-boot-modules/spring-boot-artifacts-2/src/main/java/com/baeldung/demo/DemoApplication.java
similarity index 90%
rename from docker/docker-spring-boot/src/main/java/com/baeldung/docker/DemoApplication.java
rename to spring-boot-modules/spring-boot-artifacts-2/src/main/java/com/baeldung/demo/DemoApplication.java
index e0c1d57e89..177d3c834e 100644
--- a/docker/docker-spring-boot/src/main/java/com/baeldung/docker/DemoApplication.java
+++ b/spring-boot-modules/spring-boot-artifacts-2/src/main/java/com/baeldung/demo/DemoApplication.java
@@ -1,13 +1,11 @@
-package com.baeldung.docker;
+package com.baeldung.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
-
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
-
}
diff --git a/spring-boot-modules/spring-boot-artifacts-2/src/main/java/com/baeldung/demo/DemoRestController.java b/spring-boot-modules/spring-boot-artifacts-2/src/main/java/com/baeldung/demo/DemoRestController.java
new file mode 100644
index 0000000000..0869927926
--- /dev/null
+++ b/spring-boot-modules/spring-boot-artifacts-2/src/main/java/com/baeldung/demo/DemoRestController.java
@@ -0,0 +1,15 @@
+package com.baeldung.demo;
+
+import org.springframework.http.ResponseEntity;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+@RestController
+public class DemoRestController {
+
+ @GetMapping(value = "/welcome")
+ public ResponseEntity welcomeEndpoint() {
+ return ResponseEntity.ok("Welcome to Baeldung Spring Boot Demo!");
+ }
+
+}
diff --git a/spring-boot-modules/spring-boot-artifacts-2/src/main/resources/application.yml b/spring-boot-modules/spring-boot-artifacts-2/src/main/resources/application.yml
new file mode 100644
index 0000000000..3cd1d2e797
--- /dev/null
+++ b/spring-boot-modules/spring-boot-artifacts-2/src/main/resources/application.yml
@@ -0,0 +1,3 @@
+spring:
+ application:
+ name: Baeldung_SpringBoot_Demo
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-artifacts/pom.xml b/spring-boot-modules/spring-boot-artifacts/pom.xml
index 2704b71bd6..467f931559 100644
--- a/spring-boot-modules/spring-boot-artifacts/pom.xml
+++ b/spring-boot-modules/spring-boot-artifacts/pom.xml
@@ -86,12 +86,6 @@
${jquery.version}
-
- org.springframework.cloud
- spring-cloud-context
- ${springcloud.version}
-
-
org.apache.httpcomponents
httpclient
@@ -216,7 +210,6 @@
2.2.4
18.0
3.1.7
- 2.0.2.RELEASE
4.5.8
diff --git a/spring-boot-modules/spring-boot-basic-customization-2/README.md b/spring-boot-modules/spring-boot-basic-customization-2/README.md
new file mode 100644
index 0000000000..bf7e4abb76
--- /dev/null
+++ b/spring-boot-modules/spring-boot-basic-customization-2/README.md
@@ -0,0 +1,7 @@
+## Spring Boot Basic Customization 2
+
+This module contains articles about Spring Boot customization 2
+
+### Relevant Articles:
+
+ - [DispatcherServlet and web.xml in Spring Boot](https://www.baeldung.com/spring-boot-dispatcherservlet-web-xml)
diff --git a/spring-boot-modules/spring-boot-basic-customization-2/pom.xml b/spring-boot-modules/spring-boot-basic-customization-2/pom.xml
new file mode 100644
index 0000000000..3ce9266ebe
--- /dev/null
+++ b/spring-boot-modules/spring-boot-basic-customization-2/pom.xml
@@ -0,0 +1,33 @@
+
+
+ 4.0.0
+
+
+ com.baeldung.spring-boot-modules
+ spring-boot-modules
+ 1.0.0-SNAPSHOT
+ ../
+
+
+ spring-boot-basic-customization-2
+ jar
+
+ spring-boot-basic-customization-2
+ Module For Spring Boot Basic Customization 2
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/DispatchServletApplication.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/DispatchServletApplication.java
new file mode 100644
index 0000000000..4d58715d88
--- /dev/null
+++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/DispatchServletApplication.java
@@ -0,0 +1,15 @@
+package com.baeldung.dispatchservlet;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.web.servlet.ServletComponentScan;
+import org.springframework.context.annotation.Configuration;
+
+@SpringBootApplication
+public class DispatchServletApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(DispatchServletApplication.class, args);
+ }
+
+}
diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/conf/WebConf.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/conf/WebConf.java
new file mode 100644
index 0000000000..7c52b117fd
--- /dev/null
+++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/conf/WebConf.java
@@ -0,0 +1,29 @@
+package com.baeldung.dispatchservlet.conf;
+
+import com.baeldung.dispatchservlet.listener.CustomListener;
+import com.baeldung.dispatchservlet.servlet.CustomServlet;
+import org.springframework.boot.web.servlet.ServletListenerRegistrationBean;
+import org.springframework.boot.web.servlet.ServletRegistrationBean;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+
+import javax.servlet.ServletContextListener;
+
+@Configuration
+public class WebConf {
+
+ @Bean
+ public ServletRegistrationBean customServletBean() {
+ ServletRegistrationBean bean
+ = new ServletRegistrationBean(new CustomServlet(), "/servlet");
+ return bean;
+ }
+
+ @Bean
+ public ServletListenerRegistrationBean customListenerBean() {
+ ServletListenerRegistrationBean bean = new ServletListenerRegistrationBean();
+ bean.setListener(new CustomListener());
+ return bean;
+ }
+
+}
diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/controller/Controller.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/controller/Controller.java
new file mode 100644
index 0000000000..14d71c60fb
--- /dev/null
+++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/controller/Controller.java
@@ -0,0 +1,15 @@
+package com.baeldung.dispatchservlet.controller;
+
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+@RestController
+@RequestMapping(value = "/")
+public class Controller {
+
+ @GetMapping
+ public String getRequest(){
+ return "Baeldung DispatcherServlet";
+ }
+}
diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/filter/CustomFilter.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/filter/CustomFilter.java
new file mode 100644
index 0000000000..8429fc855f
--- /dev/null
+++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/filter/CustomFilter.java
@@ -0,0 +1,30 @@
+package com.baeldung.dispatchservlet.filter;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.stereotype.Component;
+
+import javax.servlet.*;
+import java.io.IOException;
+
+@Component
+public class CustomFilter implements Filter {
+
+ Logger logger = LoggerFactory.getLogger(CustomFilter.class);
+
+ @Override
+ public void init(FilterConfig filterConfig) throws ServletException {
+
+ }
+
+ @Override
+ public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
+ logger.info("CustomFilter is invoked");
+ chain.doFilter(request, response);
+ }
+
+ @Override
+ public void destroy() {
+
+ }
+}
diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/listener/CustomListener.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/listener/CustomListener.java
new file mode 100644
index 0000000000..62b316c012
--- /dev/null
+++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/listener/CustomListener.java
@@ -0,0 +1,22 @@
+package com.baeldung.dispatchservlet.listener;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import javax.servlet.ServletContextEvent;
+import javax.servlet.ServletContextListener;
+
+public class CustomListener implements ServletContextListener {
+
+ Logger logger = LoggerFactory.getLogger(CustomListener.class);
+
+ @Override
+ public void contextInitialized(ServletContextEvent sce) {
+ logger.info("CustomListener is initialized");
+ }
+
+ @Override
+ public void contextDestroyed(ServletContextEvent sce) {
+ logger.info("CustomListener is destroyed");
+ }
+}
diff --git a/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/servlet/CustomServlet.java b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/servlet/CustomServlet.java
new file mode 100644
index 0000000000..2a99e797ce
--- /dev/null
+++ b/spring-boot-modules/spring-boot-basic-customization-2/src/main/java/com/baeldung/dispatchservlet/servlet/CustomServlet.java
@@ -0,0 +1,29 @@
+package com.baeldung.dispatchservlet.servlet;
+
+import com.baeldung.dispatchservlet.filter.CustomFilter;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import javax.servlet.ServletException;
+import javax.servlet.annotation.WebServlet;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.IOException;
+
+public class CustomServlet extends HttpServlet {
+
+ Logger logger = LoggerFactory.getLogger(CustomServlet.class);
+
+ @Override
+ protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
+ logger.info("CustomServlet doGet() method is invoked");
+ super.doGet(req, resp);
+ }
+
+ @Override
+ protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
+ logger.info("CustomServlet doPost() method is invoked");
+ super.doPost(req, resp);
+ }
+}
diff --git a/spring-mvc-java-2/src/main/webapp/resources/hello.css b/spring-boot-modules/spring-boot-basic-customization-2/src/main/resources/application.properties
similarity index 100%
rename from spring-mvc-java-2/src/main/webapp/resources/hello.css
rename to spring-boot-modules/spring-boot-basic-customization-2/src/main/resources/application.properties
diff --git a/spring-boot-modules/spring-boot-crud/src/main/java/com/baeldung/crud/controllers/UserController.java b/spring-boot-modules/spring-boot-crud/src/main/java/com/baeldung/crud/controllers/UserController.java
index 8a7ef96f1e..fb86683d6b 100644
--- a/spring-boot-modules/spring-boot-crud/src/main/java/com/baeldung/crud/controllers/UserController.java
+++ b/spring-boot-modules/spring-boot-crud/src/main/java/com/baeldung/crud/controllers/UserController.java
@@ -23,6 +23,12 @@ public class UserController {
this.userRepository = userRepository;
}
+ @GetMapping("/index")
+ public String showUserList(Model model) {
+ model.addAttribute("users", userRepository.findAll());
+ return "index";
+ }
+
@GetMapping("/signup")
public String showSignUpForm(User user) {
return "add-user";
@@ -35,7 +41,6 @@ public class UserController {
}
userRepository.save(user);
- model.addAttribute("users", userRepository.findAll());
return "redirect:/index";
}
@@ -43,6 +48,7 @@ public class UserController {
public String showUpdateForm(@PathVariable("id") long id, Model model) {
User user = userRepository.findById(id).orElseThrow(() -> new IllegalArgumentException("Invalid user Id:" + id));
model.addAttribute("user", user);
+
return "update-user";
}
@@ -54,7 +60,7 @@ public class UserController {
}
userRepository.save(user);
- model.addAttribute("users", userRepository.findAll());
+
return "redirect:/index";
}
@@ -62,7 +68,7 @@ public class UserController {
public String deleteUser(@PathVariable("id") long id, Model model) {
User user = userRepository.findById(id).orElseThrow(() -> new IllegalArgumentException("Invalid user Id:" + id));
userRepository.delete(user);
- model.addAttribute("users", userRepository.findAll());
- return "index";
+
+ return "redirect:/index";
}
}
diff --git a/spring-boot-modules/spring-boot-crud/src/test/java/com/baeldung/crud/UserControllerUnitTest.java b/spring-boot-modules/spring-boot-crud/src/test/java/com/baeldung/crud/UserControllerUnitTest.java
index f1455f7a73..77d83698de 100644
--- a/spring-boot-modules/spring-boot-crud/src/test/java/com/baeldung/crud/UserControllerUnitTest.java
+++ b/spring-boot-modules/spring-boot-crud/src/test/java/com/baeldung/crud/UserControllerUnitTest.java
@@ -28,6 +28,11 @@ public class UserControllerUnitTest {
userController = new UserController(mockedUserRepository);
}
+ @Test
+ public void whenCalledIndex_thenCorrect() {
+ assertThat(userController.showUserList(mockedModel)).isEqualTo("index");
+ }
+
@Test
public void whenCalledshowSignUpForm_thenCorrect() {
User user = new User("John", "john@domain.com");
@@ -78,6 +83,6 @@ public class UserControllerUnitTest {
@Test(expected = IllegalArgumentException.class)
public void whenCalleddeleteUser_thenIllegalArgumentException() {
- assertThat(userController.deleteUser(1l, mockedModel)).isEqualTo("index");
+ assertThat(userController.deleteUser(1l, mockedModel)).isEqualTo("redirect:/index");
}
}
diff --git a/spring-boot-modules/spring-boot-ctx-fluent/src/test/java/org/baeldung/SpringContextTest.java b/spring-boot-modules/spring-boot-ctx-fluent/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-boot-modules/spring-boot-ctx-fluent/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-boot-modules/spring-boot-ctx-fluent/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-boot-modules/spring-boot-data-2/README.md b/spring-boot-modules/spring-boot-data-2/README.md
new file mode 100644
index 0000000000..c21ce02a2e
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/README.md
@@ -0,0 +1,4 @@
+### Relevant Articles:
+
+- [Spring Boot: Customize the Jackson ObjectMapper](https://www.baeldung.com/spring-boot-customize-jackson-objectmapper)
+- [Configuring a Hikari Connection Pool with Spring Boot](https://www.baeldung.com/spring-boot-hikari)
diff --git a/spring-boot-modules/spring-boot-data-2/pom.xml b/spring-boot-modules/spring-boot-data-2/pom.xml
new file mode 100644
index 0000000000..fb0d5f2053
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/pom.xml
@@ -0,0 +1,30 @@
+
+
+
+ com.baeldung.spring-boot-modules
+ spring-boot-modules
+ 1.0.0-SNAPSHOT
+ ../
+
+ 4.0.0
+
+ spring-boot-data-2
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.boot
+ spring-boot-starter-data-jpa
+
+
+ com.h2database
+ h2
+ runtime
+
+
+
+
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/app/Application.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/app/Application.java
new file mode 100644
index 0000000000..6f57a534a8
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/app/Application.java
@@ -0,0 +1,13 @@
+package com.baeldung.boot.jackson.app;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.context.annotation.ComponentScan;
+
+@SpringBootApplication
+@ComponentScan(basePackages = "com.baeldung.boot.jackson.controller")
+public class Application {
+ public static void main(String[] args) {
+ SpringApplication.run(Application.class, args);
+ }
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeConstants.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeConstants.java
new file mode 100644
index 0000000000..d1875d03d9
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeConstants.java
@@ -0,0 +1,13 @@
+package com.baeldung.boot.jackson.config;
+
+import com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer;
+
+import java.time.LocalDateTime;
+import java.time.format.DateTimeFormatter;
+
+public class CoffeeConstants {
+
+ public static final String DATETIME_FORMAT = "dd-MM-yyyy HH:mm";
+ public static final LocalDateTime FIXED_DATE = LocalDateTime.now();
+ public static LocalDateTimeSerializer LOCAL_DATETIME_SERIALIZER = new LocalDateTimeSerializer(DateTimeFormatter.ofPattern(DATETIME_FORMAT));
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeCustomizerConfig.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeCustomizerConfig.java
new file mode 100644
index 0000000000..edb2b478fc
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeCustomizerConfig.java
@@ -0,0 +1,18 @@
+package com.baeldung.boot.jackson.config;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+
+import static com.baeldung.boot.jackson.config.CoffeeConstants.LOCAL_DATETIME_SERIALIZER;
+
+@Configuration
+public class CoffeeCustomizerConfig {
+
+ @Bean
+ public Jackson2ObjectMapperBuilderCustomizer jsonCustomizer() {
+ return builder -> builder.serializationInclusion(JsonInclude.Include.NON_NULL)
+ .serializers(LOCAL_DATETIME_SERIALIZER);
+ }
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeHttpConverterConfiguration.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeHttpConverterConfiguration.java
new file mode 100644
index 0000000000..eff2b5c252
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeHttpConverterConfiguration.java
@@ -0,0 +1,21 @@
+package com.baeldung.boot.jackson.config;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder;
+import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
+
+import static com.baeldung.boot.jackson.config.CoffeeConstants.LOCAL_DATETIME_SERIALIZER;
+
+@Configuration
+public class CoffeeHttpConverterConfiguration {
+
+ @Bean
+ public MappingJackson2HttpMessageConverter mappingJackson2HttpMessageConverter() {
+ Jackson2ObjectMapperBuilder builder = new Jackson2ObjectMapperBuilder()
+ .serializers(LOCAL_DATETIME_SERIALIZER)
+ .serializationInclusion(JsonInclude.Include.NON_NULL);
+ return new MappingJackson2HttpMessageConverter(builder.build());
+ }
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeJacksonBuilderConfig.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeJacksonBuilderConfig.java
new file mode 100644
index 0000000000..8057fff3db
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeJacksonBuilderConfig.java
@@ -0,0 +1,21 @@
+package com.baeldung.boot.jackson.config;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.Primary;
+import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder;
+
+import static com.baeldung.boot.jackson.config.CoffeeConstants.LOCAL_DATETIME_SERIALIZER;
+
+@Configuration
+public class CoffeeJacksonBuilderConfig {
+
+ @Bean
+ @Primary
+ public Jackson2ObjectMapperBuilder jackson2ObjectMapperBuilder() {
+ return new Jackson2ObjectMapperBuilder()
+ .serializers(LOCAL_DATETIME_SERIALIZER)
+ .serializationInclusion(JsonInclude.Include.NON_NULL);
+ }
+}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeObjectMapperConfig.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeObjectMapperConfig.java
new file mode 100644
index 0000000000..f1ce6458ae
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeObjectMapperConfig.java
@@ -0,0 +1,23 @@
+package com.baeldung.boot.jackson.config;
+
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.Primary;
+
+import static com.baeldung.boot.jackson.config.CoffeeConstants.LOCAL_DATETIME_SERIALIZER;
+
+@Configuration
+public class CoffeeObjectMapperConfig {
+
+ @Bean
+ @Primary
+ public ObjectMapper objectMapper() {
+ JavaTimeModule module = new JavaTimeModule();
+ module.addSerializer(LOCAL_DATETIME_SERIALIZER);
+ return new ObjectMapper().setSerializationInclusion(JsonInclude.Include.NON_NULL)
+ .registerModule(module);
+ }
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeRegisterModuleConfig.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeRegisterModuleConfig.java
new file mode 100644
index 0000000000..fc157f8156
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/config/CoffeeRegisterModuleConfig.java
@@ -0,0 +1,21 @@
+package com.baeldung.boot.jackson.config;
+
+import com.fasterxml.jackson.databind.Module;
+import com.fasterxml.jackson.datatype.jsr310.JavaTimeModule;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.PropertySource;
+
+import static com.baeldung.boot.jackson.config.CoffeeConstants.LOCAL_DATETIME_SERIALIZER;
+
+@Configuration
+@PropertySource("classpath:coffee.properties")
+public class CoffeeRegisterModuleConfig {
+
+ @Bean
+ public Module javaTimeModule() {
+ JavaTimeModule module = new JavaTimeModule();
+ module.addSerializer(LOCAL_DATETIME_SERIALIZER);
+ return module;
+ }
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/controller/CoffeeController.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/controller/CoffeeController.java
new file mode 100644
index 0000000000..23749b18a2
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/controller/CoffeeController.java
@@ -0,0 +1,21 @@
+package com.baeldung.boot.jackson.controller;
+
+import com.baeldung.boot.jackson.model.Coffee;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.RestController;
+
+import static com.baeldung.boot.jackson.config.CoffeeConstants.FIXED_DATE;
+
+@RestController
+public class CoffeeController {
+
+ @GetMapping("/coffee")
+ public Coffee getCoffee(
+ @RequestParam(required = false) String brand,
+ @RequestParam(required = false) String name) {
+ return new Coffee().setBrand(brand)
+ .setDate(FIXED_DATE)
+ .setName(name);
+ }
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/model/Coffee.java b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/model/Coffee.java
new file mode 100644
index 0000000000..4df6b4bd6d
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/main/java/com/baeldung/boot/jackson/model/Coffee.java
@@ -0,0 +1,39 @@
+package com.baeldung.boot.jackson.model;
+
+import java.time.LocalDateTime;
+
+public class Coffee {
+
+ private String name;
+
+ private String brand;
+
+ private LocalDateTime date;
+
+ public String getName() {
+ return name;
+ }
+
+ public Coffee setName(String name) {
+ this.name = name;
+ return this;
+ }
+
+ public String getBrand() {
+ return brand;
+ }
+
+ public Coffee setBrand(String brand) {
+ this.brand = brand;
+ return this;
+ }
+
+ public LocalDateTime getDate() {
+ return date;
+ }
+
+ public Coffee setDate(LocalDateTime date) {
+ this.date = date;
+ return this;
+ }
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/main/resources/coffee.properties b/spring-boot-modules/spring-boot-data-2/src/main/resources/coffee.properties
new file mode 100644
index 0000000000..269845cbf1
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/main/resources/coffee.properties
@@ -0,0 +1 @@
+spring.jackson.default-property-inclusion=non_null
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/AbstractCoffeeIntegrationTest.java b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/AbstractCoffeeIntegrationTest.java
new file mode 100644
index 0000000000..f1bc35a8ce
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/AbstractCoffeeIntegrationTest.java
@@ -0,0 +1,33 @@
+package com.baeldung.boot.jackson.app;
+
+import com.baeldung.boot.jackson.config.CoffeeConstants;
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.web.client.TestRestTemplate;
+
+import java.time.format.DateTimeFormatter;
+
+import static com.baeldung.boot.jackson.config.CoffeeConstants.FIXED_DATE;
+import static org.assertj.core.api.Assertions.assertThat;
+
+@SpringBootTest(classes = Application.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
+public abstract class AbstractCoffeeIntegrationTest {
+
+ @Autowired
+ protected TestRestTemplate restTemplate;
+
+ @Test
+ public void whenGetCoffee_thenSerializedWithDateAndNonNull() {
+ String formattedDate = DateTimeFormatter.ofPattern(CoffeeConstants.DATETIME_FORMAT)
+ .format(FIXED_DATE);
+
+ String brand = "Lavazza";
+ String url = "/coffee?brand=" + brand;
+
+ String response = restTemplate.getForObject(url, String.class);
+
+ assertThat(response).isEqualTo(
+ "{\"brand\":\"" + brand + "\",\"date\":\"" + formattedDate + "\"}");
+ }
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeCustomizerIntegrationTest.java b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeCustomizerIntegrationTest.java
new file mode 100644
index 0000000000..d690de1b9c
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeCustomizerIntegrationTest.java
@@ -0,0 +1,8 @@
+package com.baeldung.boot.jackson.app;
+
+import com.baeldung.boot.jackson.config.CoffeeCustomizerConfig;
+import org.springframework.context.annotation.Import;
+
+@Import(CoffeeCustomizerConfig.class)
+public class CoffeeCustomizerIntegrationTest extends AbstractCoffeeIntegrationTest {
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeHttpConverterIntegrationTest.java b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeHttpConverterIntegrationTest.java
new file mode 100644
index 0000000000..62b1d42152
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeHttpConverterIntegrationTest.java
@@ -0,0 +1,8 @@
+package com.baeldung.boot.jackson.app;
+
+import com.baeldung.boot.jackson.config.CoffeeHttpConverterConfiguration;
+import org.springframework.context.annotation.Import;
+
+@Import(CoffeeHttpConverterConfiguration.class)
+public class CoffeeHttpConverterIntegrationTest extends AbstractCoffeeIntegrationTest {
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeJacksonBuilderIntegrationTest.java b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeJacksonBuilderIntegrationTest.java
new file mode 100644
index 0000000000..52a55394c0
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeJacksonBuilderIntegrationTest.java
@@ -0,0 +1,8 @@
+package com.baeldung.boot.jackson.app;
+
+import com.baeldung.boot.jackson.config.CoffeeJacksonBuilderConfig;
+import org.springframework.context.annotation.Import;
+
+@Import(CoffeeJacksonBuilderConfig.class)
+public class CoffeeJacksonBuilderIntegrationTest extends AbstractCoffeeIntegrationTest {
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeObjectMapperIntegrationTest.java b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeObjectMapperIntegrationTest.java
new file mode 100644
index 0000000000..34743ceba5
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeObjectMapperIntegrationTest.java
@@ -0,0 +1,8 @@
+package com.baeldung.boot.jackson.app;
+
+import com.baeldung.boot.jackson.config.CoffeeObjectMapperConfig;
+import org.springframework.context.annotation.Import;
+
+@Import(CoffeeObjectMapperConfig.class)
+public class CoffeeObjectMapperIntegrationTest extends AbstractCoffeeIntegrationTest {
+}
diff --git a/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeRegisterModuleIntegrationTest.java b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeRegisterModuleIntegrationTest.java
new file mode 100644
index 0000000000..69bbd5be2a
--- /dev/null
+++ b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/boot/jackson/app/CoffeeRegisterModuleIntegrationTest.java
@@ -0,0 +1,8 @@
+package com.baeldung.boot.jackson.app;
+
+import com.baeldung.boot.jackson.config.CoffeeRegisterModuleConfig;
+import org.springframework.context.annotation.Import;
+
+@Import(CoffeeRegisterModuleConfig.class)
+public class CoffeeRegisterModuleIntegrationTest extends AbstractCoffeeIntegrationTest {
+}
diff --git a/spring-5/src/test/java/com/baeldung/hikari/ApplicationWithHikariConnectionPool.java b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/hikari/ApplicationWithHikariConnectionPool.java
similarity index 100%
rename from spring-5/src/test/java/com/baeldung/hikari/ApplicationWithHikariConnectionPool.java
rename to spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/hikari/ApplicationWithHikariConnectionPool.java
diff --git a/spring-5/src/test/java/com/baeldung/hikari/HikariIntegrationTest.java b/spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/hikari/HikariIntegrationTest.java
similarity index 100%
rename from spring-5/src/test/java/com/baeldung/hikari/HikariIntegrationTest.java
rename to spring-boot-modules/spring-boot-data-2/src/test/java/com/baeldung/hikari/HikariIntegrationTest.java
diff --git a/spring-boot-modules/spring-boot-data/README.md b/spring-boot-modules/spring-boot-data/README.md
index 98589cf2d2..f72864e6d9 100644
--- a/spring-boot-modules/spring-boot-data/README.md
+++ b/spring-boot-modules/spring-boot-data/README.md
@@ -10,4 +10,5 @@ This module contains articles about Spring Boot with Spring Data
- [Repositories with Multiple Spring Data Modules](https://www.baeldung.com/spring-multiple-data-modules)
- [Spring Custom Property Editor](https://www.baeldung.com/spring-mvc-custom-property-editor)
- [Using @JsonComponent in Spring Boot](https://www.baeldung.com/spring-boot-jsoncomponent)
-- [Running Setup Data on Startup in Spring](https://www.baeldung.com/running-setup-logic-on-startup-in-spring)
+- [Guide To Running Logic on Startup in Spring](https://www.baeldung.com/running-setup-logic-on-startup-in-spring)
+- [Using JaVers for Data Model Auditing in Spring Data](https://www.baeldung.com/spring-data-javers-audit)
diff --git a/spring-boot-modules/spring-boot-data/pom.xml b/spring-boot-modules/spring-boot-data/pom.xml
index fe64b07379..06f09c70fe 100644
--- a/spring-boot-modules/spring-boot-data/pom.xml
+++ b/spring-boot-modules/spring-boot-data/pom.xml
@@ -168,7 +168,7 @@
- 5.6.3
+ 5.14.0
2.2.4
1.8
1.8
diff --git a/spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/javers/README.md b/spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/javers/README.md
deleted file mode 100644
index 4f8dd4abff..0000000000
--- a/spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/javers/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-### Relevant Articles
-
-- [Using JaVers for Data Model Auditing in Spring Data](https://www.baeldung.com/spring-data-javers-audit)
diff --git a/spring-boot-modules/spring-boot/src/main/java/com/baeldung/startup/AppStartupRunner.java b/spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/startup/AppStartupRunner.java
similarity index 99%
rename from spring-boot-modules/spring-boot/src/main/java/com/baeldung/startup/AppStartupRunner.java
rename to spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/startup/AppStartupRunner.java
index 0495473704..0ba719d32b 100644
--- a/spring-boot-modules/spring-boot/src/main/java/com/baeldung/startup/AppStartupRunner.java
+++ b/spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/startup/AppStartupRunner.java
@@ -8,6 +8,7 @@ import org.springframework.stereotype.Component;
@Component
public class AppStartupRunner implements ApplicationRunner {
+
private static final Logger LOG = LoggerFactory.getLogger(AppStartupRunner.class);
public static int counter;
diff --git a/spring-boot-modules/spring-boot/src/main/java/com/baeldung/startup/CommandLineAppStartupRunner.java b/spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/startup/CommandLineAppStartupRunner.java
similarity index 99%
rename from spring-boot-modules/spring-boot/src/main/java/com/baeldung/startup/CommandLineAppStartupRunner.java
rename to spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/startup/CommandLineAppStartupRunner.java
index 48c5225cf1..bdedbbe94c 100644
--- a/spring-boot-modules/spring-boot/src/main/java/com/baeldung/startup/CommandLineAppStartupRunner.java
+++ b/spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/startup/CommandLineAppStartupRunner.java
@@ -7,6 +7,7 @@ import org.springframework.stereotype.Component;
@Component
public class CommandLineAppStartupRunner implements CommandLineRunner {
+
private static final Logger LOG = LoggerFactory.getLogger(CommandLineAppStartupRunner.class);
public static int counter;
@@ -15,4 +16,4 @@ public class CommandLineAppStartupRunner implements CommandLineRunner {
LOG.info("Increment counter");
counter++;
}
-}
\ No newline at end of file
+}
diff --git a/spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/startup/SpringStartupConfig.java b/spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/startup/SpringStartupConfig.java
index ad6492dadc..27c903955a 100644
--- a/spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/startup/SpringStartupConfig.java
+++ b/spring-boot-modules/spring-boot-data/src/main/java/com/baeldung/startup/SpringStartupConfig.java
@@ -1,9 +1,15 @@
package com.baeldung.startup;
+import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@ComponentScan("com.baeldung.startup")
public class SpringStartupConfig {
+
+ @Bean(initMethod="init")
+ public InitMethodExampleBean initMethodExampleBean() {
+ return new InitMethodExampleBean();
+ }
}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-data/src/test/java/com/baeldung/startup/SpringStartupIntegrationTest.java b/spring-boot-modules/spring-boot-data/src/test/java/com/baeldung/startup/SpringStartupIntegrationTest.java
index b58c093c31..ac2b98da6f 100644
--- a/spring-boot-modules/spring-boot-data/src/test/java/com/baeldung/startup/SpringStartupIntegrationTest.java
+++ b/spring-boot-modules/spring-boot-data/src/test/java/com/baeldung/startup/SpringStartupIntegrationTest.java
@@ -37,6 +37,11 @@ public class SpringStartupIntegrationTest {
ctx.getBean(InitializingBeanExampleBean.class);
}
+ @Test
+ public void whenInitMethod_shouldLogEnv() throws Exception {
+ ctx.getBean(InitMethodExampleBean.class);
+ }
+
@Test
public void whenApplicationListener_shouldRunOnce() throws Exception {
Assertions.assertThat(StartupApplicationListenerExample.counter).isEqualTo(1);
diff --git a/spring-boot-modules/spring-boot-data/src/test/java/com/baeldung/startup/SpringStartupXMLConfigIntegrationTest.java b/spring-boot-modules/spring-boot-data/src/test/java/com/baeldung/startup/SpringStartupXMLConfigIntegrationTest.java
index 3dfd4835df..67b430fced 100644
--- a/spring-boot-modules/spring-boot-data/src/test/java/com/baeldung/startup/SpringStartupXMLConfigIntegrationTest.java
+++ b/spring-boot-modules/spring-boot-data/src/test/java/com/baeldung/startup/SpringStartupXMLConfigIntegrationTest.java
@@ -15,7 +15,7 @@ public class SpringStartupXMLConfigIntegrationTest {
private ApplicationContext ctx;
@Test
- public void whenPostConstruct_shouldLogEnv() throws Exception {
+ public void whenInitMethod_shouldLogEnv() throws Exception {
ctx.getBean(InitMethodExampleBean.class);
}
diff --git a/spring-boot-modules/spring-boot-deployment/README.md b/spring-boot-modules/spring-boot-deployment/README.md
index b6aa468098..85f288d33b 100644
--- a/spring-boot-modules/spring-boot-deployment/README.md
+++ b/spring-boot-modules/spring-boot-deployment/README.md
@@ -5,6 +5,5 @@ This module contains articles about deployment of a Spring Boot Application
### Relevant Articles:
- [Deploy a Spring Boot WAR into a Tomcat Server](https://www.baeldung.com/spring-boot-war-tomcat-deploy)
- [Spring Boot Console Application](https://www.baeldung.com/spring-boot-console-app)
- - [How to Configure Spring Boot Tomcat](https://www.baeldung.com/spring-boot-configure-tomcat)
- [Comparing Embedded Servlet Containers in Spring Boot](https://www.baeldung.com/spring-boot-servlet-containers)
- [Graceful Shutdown of a Spring Boot Application](https://www.baeldung.com/spring-boot-graceful-shutdown)
diff --git a/spring-boot-modules/spring-boot-deployment/pom.xml b/spring-boot-modules/spring-boot-deployment/pom.xml
index 6b5e75bd62..94a4018103 100644
--- a/spring-boot-modules/spring-boot-deployment/pom.xml
+++ b/spring-boot-modules/spring-boot-deployment/pom.xml
@@ -197,6 +197,7 @@
3.1.7
2.0.2.RELEASE
4.5.8
+ 2.3.3.RELEASE
diff --git a/spring-boot-modules/spring-boot-environment/additional.properties b/spring-boot-modules/spring-boot-environment/additional.properties
new file mode 100644
index 0000000000..676536efa5
--- /dev/null
+++ b/spring-boot-modules/spring-boot-environment/additional.properties
@@ -0,0 +1 @@
+bael.property1=value1
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-environment/pom.xml b/spring-boot-modules/spring-boot-environment/pom.xml
index 694e17fd72..a3aab63a2d 100644
--- a/spring-boot-modules/spring-boot-environment/pom.xml
+++ b/spring-boot-modules/spring-boot-environment/pom.xml
@@ -1,6 +1,7 @@
-
+
4.0.0
@@ -33,6 +34,17 @@
spring-boot-starter-test
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
+
+ org.hamcrest
+ hamcrest-core
+
+
+
org.springframework.boot
@@ -77,7 +89,6 @@
org.springframework.cloud
spring-cloud-context
- ${springcloud.version}
@@ -88,6 +99,18 @@
+
+
+
+ org.springframework.cloud
+ spring-cloud-dependencies
+ ${spring.cloud-version}
+ pom
+ import
+
+
+
+
${project.artifactId}
@@ -142,8 +165,8 @@
2.2
18.0
3.1.7
- 2.0.2.RELEASE
4.5.8
+ 2020.0.0
diff --git a/spring-boot-modules/spring-boot-environment/src/main/resources/application.properties b/spring-boot-modules/spring-boot-environment/src/main/resources/application.properties
index 27b7915cff..3d6f37230c 100644
--- a/spring-boot-modules/spring-boot-environment/src/main/resources/application.properties
+++ b/spring-boot-modules/spring-boot-environment/src/main/resources/application.properties
@@ -2,6 +2,7 @@ management.endpoints.web.exposure.include=*
management.metrics.enable.root=true
management.metrics.enable.jvm=true
management.endpoint.restart.enabled=true
-spring.datasource.jmx-enabled=false
+spring.datasource.tomcat.jmx-enabled=false
spring.main.allow-bean-definition-overriding=true
-management.endpoint.shutdown.enabled=true
\ No newline at end of file
+management.endpoint.shutdown.enabled=true
+spring.config.import=file:./additional.properties,optional:file:/Users/home/config/jdbc.properties
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-environment/src/test/java/com/baeldung/properties/ApplicationPropertyImportExternalFileIntegrationTest.java b/spring-boot-modules/spring-boot-environment/src/test/java/com/baeldung/properties/ApplicationPropertyImportExternalFileIntegrationTest.java
new file mode 100644
index 0000000000..04f5445639
--- /dev/null
+++ b/spring-boot-modules/spring-boot-environment/src/test/java/com/baeldung/properties/ApplicationPropertyImportExternalFileIntegrationTest.java
@@ -0,0 +1,22 @@
+package com.baeldung.properties;
+
+import static org.junit.Assert.assertEquals;
+
+import java.io.IOException;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+
+@SpringBootTest
+public class ApplicationPropertyImportExternalFileIntegrationTest {
+
+ @Value("${bael.property1}")
+ String baelProperty;
+
+ @Test
+ public void whenExternalisedPropertiesLoadedUsinApplicationProperties_thenReadValues() throws IOException {
+ assertEquals(baelProperty, "value1");
+ }
+
+}
diff --git a/spring-boot-modules/spring-boot-jasypt/src/test/java/org/baeldung/SpringContextTest.java b/spring-boot-modules/spring-boot-jasypt/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-boot-modules/spring-boot-jasypt/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-boot-modules/spring-boot-jasypt/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-boot-modules/spring-boot-keycloak/README.md b/spring-boot-modules/spring-boot-keycloak/README.md
index 74fbbb6f09..2aff4664a6 100644
--- a/spring-boot-modules/spring-boot-keycloak/README.md
+++ b/spring-boot-modules/spring-boot-keycloak/README.md
@@ -5,3 +5,7 @@ This module contains articles about Keycloak in Spring Boot projects.
## Relevant articles:
- [A Quick Guide to Using Keycloak with Spring Boot](https://www.baeldung.com/spring-boot-keycloak)
- [Custom User Attributes with Keycloak](https://www.baeldung.com/keycloak-custom-user-attributes)
+- [Customizing the Login Page for Keycloak](https://www.baeldung.com/keycloak-custom-login-page)
+- [Keycloak User Self-Registration](https://www.baeldung.com/keycloak-user-registration)
+- [Customizing Themes for Keycloak](https://www.baeldung.com/spring-keycloak-custom-themes)
+
diff --git a/spring-boot-modules/spring-boot-kotlin/README.md b/spring-boot-modules/spring-boot-kotlin/README.md
deleted file mode 100644
index fb91fdee15..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-## Spring Boot Kotlin
-
-This module contains articles about Kotlin in Spring Boot projects.
-
-### Relevant Articles:
-- [Non-blocking Spring Boot with Kotlin Coroutines](https://www.baeldung.com/spring-boot-kotlin-coroutines)
diff --git a/spring-boot-modules/spring-boot-kotlin/pom.xml b/spring-boot-modules/spring-boot-kotlin/pom.xml
deleted file mode 100644
index 7ee048546a..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/pom.xml
+++ /dev/null
@@ -1,119 +0,0 @@
-
-
- 4.0.0
- spring-boot-kotlin
- spring-boot-kotlin
- jar
- Demo project showing how to use non-blocking in Kotlin with Spring Boot
-
-
- com.baeldung
- parent-kotlin
- 1.0.0-SNAPSHOT
- ../../parent-kotlin
-
-
-
-
- org.jetbrains.kotlin
- kotlin-reflect
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
-
-
- org.jetbrains.kotlinx
- kotlinx-coroutines-core
- ${kotlinx-coroutines.version}
-
-
- org.jetbrains.kotlinx
- kotlinx-coroutines-reactor
- ${kotlinx-coroutines.version}
-
-
- org.springframework.boot
- spring-boot-starter-webflux
-
-
- com.fasterxml.jackson.module
- jackson-module-kotlin
-
-
- org.springframework.data
- spring-data-r2dbc
- ${r2dbc.version}
-
-
- io.r2dbc
- r2dbc-h2
- ${h2-r2dbc.version}
-
-
- io.r2dbc
- r2dbc-spi
- ${r2dbc-spi.version}
-
-
- org.springframework.boot
- spring-boot-starter-test
- test
-
-
- junit
- junit
-
-
-
-
- org.junit.jupiter
- junit-jupiter-api
- test
-
-
- org.junit.jupiter
- junit-jupiter-engine
- test
-
-
- io.projectreactor
- reactor-test
- test
-
-
-
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-plugin
-
-
- -Xjsr305=strict
-
-
- spring
-
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-allopen
- ${kotlin.version}
-
-
-
-
-
-
-
- 1.3.31
- 1.0.0.RELEASE
- 0.8.2.RELEASE
- 0.8.4.RELEASE
- 1.2.1
-
-
-
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/SpringApplication.kt b/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/SpringApplication.kt
deleted file mode 100644
index 23af4fe90b..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/SpringApplication.kt
+++ /dev/null
@@ -1,11 +0,0 @@
-package com.baeldung.nonblockingcoroutines
-
-import org.springframework.boot.SpringApplication.run
-import org.springframework.boot.autoconfigure.SpringBootApplication
-
-@SpringBootApplication
-class SpringApplication
-
-fun main(args: Array) {
- run(SpringApplication::class.java, *args)
-}
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/config/DatastoreConfig.kt b/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/config/DatastoreConfig.kt
deleted file mode 100644
index 52ef8a708b..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/config/DatastoreConfig.kt
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.baeldung.nonblockingcoroutines.config
-
-import io.r2dbc.h2.H2ConnectionConfiguration
-import io.r2dbc.h2.H2ConnectionFactory
-import io.r2dbc.spi.ConnectionFactory
-import org.springframework.beans.factory.annotation.Value
-import org.springframework.context.annotation.Bean
-import org.springframework.context.annotation.Configuration
-import org.springframework.data.r2dbc.config.AbstractR2dbcConfiguration
-import org.springframework.data.r2dbc.repository.config.EnableR2dbcRepositories
-
-@Configuration
-@EnableR2dbcRepositories
-class DatastoreConfig : AbstractR2dbcConfiguration() {
- @Value("\${spring.datasource.username}")
- private val userName: String = ""
-
- @Value("\${spring.datasource.password}")
- private val password: String = ""
-
- @Value("\${spring.datasource.dbname}")
- private val dbName: String = ""
-
- @Bean
- override fun connectionFactory(): ConnectionFactory {
- return H2ConnectionFactory(H2ConnectionConfiguration.builder()
- .inMemory(dbName)
- .username(userName)
- .password(password)
- .build())
- }
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/config/RouterConfiguration.kt b/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/config/RouterConfiguration.kt
deleted file mode 100644
index bda1d26278..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/config/RouterConfiguration.kt
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.baeldung.nonblockingcoroutines.config
-
-import com.baeldung.nonblockingcoroutines.handlers.ProductsHandler
-import kotlinx.coroutines.FlowPreview
-import org.springframework.context.annotation.Bean
-import org.springframework.context.annotation.Configuration
-import org.springframework.web.reactive.function.server.coRouter
-
-@Configuration
-class RouterConfiguration {
-
- @FlowPreview
- @Bean
- fun productRoutes(productsHandler: ProductsHandler) = coRouter {
- GET("/", productsHandler::findAll)
- GET("/{id}", productsHandler::findOne)
- GET("/{id}/stock", productsHandler::findOneInStock)
- }
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/config/WebClientConfiguration.kt b/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/config/WebClientConfiguration.kt
deleted file mode 100644
index 85938b8be2..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/config/WebClientConfiguration.kt
+++ /dev/null
@@ -1,12 +0,0 @@
-package com.baeldung.nonblockingcoroutines.config
-
-import org.springframework.context.annotation.Bean
-import org.springframework.context.annotation.Configuration
-import org.springframework.web.reactive.function.client.WebClient
-
-@Configuration
-class WebClientConfiguration {
-
- @Bean
- fun webClient() = WebClient.builder().baseUrl("http://localhost:8080").build()
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/controller/ProductController.kt b/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/controller/ProductController.kt
deleted file mode 100644
index 91b091859a..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/controller/ProductController.kt
+++ /dev/null
@@ -1,49 +0,0 @@
-package com.baeldung.nonblockingcoroutines.controller
-
-import com.baeldung.nonblockingcoroutines.model.Product
-import com.baeldung.nonblockingcoroutines.repository.ProductRepository
-import org.springframework.beans.factory.annotation.Autowired
-import org.springframework.http.MediaType
-import org.springframework.web.bind.annotation.GetMapping
-import org.springframework.web.bind.annotation.PathVariable
-import org.springframework.web.reactive.function.client.WebClient
-import org.springframework.web.reactive.function.client.bodyToMono
-import reactor.core.publisher.Flux
-import reactor.core.publisher.Mono
-
-class ProductController {
- @Autowired
- lateinit var webClient: WebClient
- @Autowired
- lateinit var productRepository: ProductRepository
-
- @GetMapping("/{id}")
- fun findOne(@PathVariable id: Int): Mono {
- return productRepository
- .getProductById(id)
- }
-
- @GetMapping("/{id}/stock")
- fun findOneInStock(@PathVariable id: Int): Mono {
- val product = productRepository.getProductById(id)
-
- val stockQuantity = webClient.get()
- .uri("/stock-service/product/$id/quantity")
- .accept(MediaType.APPLICATION_JSON)
- .retrieve()
- .bodyToMono()
- return product.zipWith(stockQuantity) { productInStock, stockQty ->
- ProductStockView(productInStock, stockQty)
- }
- }
-
- @GetMapping("/stock-service/product/{id}/quantity")
- fun getStockQuantity(): Mono {
- return Mono.just(2)
- }
-
- @GetMapping("/")
- fun findAll(): Flux {
- return productRepository.getAllProducts()
- }
-}
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/controller/ProductControllerCoroutines.kt b/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/controller/ProductControllerCoroutines.kt
deleted file mode 100644
index 464ed2773a..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/controller/ProductControllerCoroutines.kt
+++ /dev/null
@@ -1,49 +0,0 @@
-package com.baeldung.nonblockingcoroutines.controller
-
-import com.baeldung.nonblockingcoroutines.model.Product
-import com.baeldung.nonblockingcoroutines.repository.ProductRepositoryCoroutines
-import kotlinx.coroutines.CoroutineStart
-import kotlinx.coroutines.Deferred
-import kotlinx.coroutines.FlowPreview
-import kotlinx.coroutines.async
-import kotlinx.coroutines.coroutineScope
-import kotlinx.coroutines.flow.Flow
-import org.springframework.beans.factory.annotation.Autowired
-import org.springframework.http.MediaType.APPLICATION_JSON
-import org.springframework.web.bind.annotation.GetMapping
-import org.springframework.web.bind.annotation.PathVariable
-import org.springframework.web.reactive.function.client.WebClient
-import org.springframework.web.reactive.function.client.awaitBody
-
-class ProductControllerCoroutines {
- @Autowired
- lateinit var webClient: WebClient
-
- @Autowired
- lateinit var productRepository: ProductRepositoryCoroutines
-
- @GetMapping("/{id}")
- suspend fun findOne(@PathVariable id: Int): Product? {
- return productRepository.getProductById(id)
- }
-
- @GetMapping("/{id}/stock")
- suspend fun findOneInStock(@PathVariable id: Int): ProductStockView = coroutineScope {
- val product: Deferred = async(start = CoroutineStart.LAZY) {
- productRepository.getProductById(id)
- }
- val quantity: Deferred = async(start = CoroutineStart.LAZY) {
- webClient.get()
- .uri("/stock-service/product/$id/quantity")
- .accept(APPLICATION_JSON)
- .retrieve().awaitBody()
- }
- ProductStockView(product.await()!!, quantity.await())
- }
-
- @FlowPreview
- @GetMapping("/")
- fun findAll(): Flow {
- return productRepository.getAllProducts()
- }
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/controller/ProductStockView.kt b/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/controller/ProductStockView.kt
deleted file mode 100644
index 44611fd1de..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/controller/ProductStockView.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.baeldung.nonblockingcoroutines.controller
-
-import com.baeldung.nonblockingcoroutines.model.Product
-
-class ProductStockView(product: Product, var stockQuantity: Int) {
- var id: Int = 0
- var name: String = ""
- var price: Float = 0.0f
-
- init {
- this.id = product.id
- this.name = product.name
- this.price = product.price
- }
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/handlers/ProductsHandler.kt b/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/handlers/ProductsHandler.kt
deleted file mode 100644
index e05b718e64..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/handlers/ProductsHandler.kt
+++ /dev/null
@@ -1,48 +0,0 @@
-package com.baeldung.nonblockingcoroutines.handlers
-
-import com.baeldung.nonblockingcoroutines.controller.ProductStockView
-import com.baeldung.nonblockingcoroutines.model.Product
-import com.baeldung.nonblockingcoroutines.repository.ProductRepositoryCoroutines
-import kotlinx.coroutines.Deferred
-import kotlinx.coroutines.FlowPreview
-import kotlinx.coroutines.GlobalScope
-import kotlinx.coroutines.async
-import org.springframework.beans.factory.annotation.Autowired
-import org.springframework.http.MediaType
-import org.springframework.stereotype.Component
-import org.springframework.web.reactive.function.client.WebClient
-import org.springframework.web.reactive.function.client.awaitBody
-import org.springframework.web.reactive.function.server.ServerRequest
-import org.springframework.web.reactive.function.server.ServerResponse
-import org.springframework.web.reactive.function.server.bodyAndAwait
-import org.springframework.web.reactive.function.server.json
-
-@Component
-class ProductsHandler(
- @Autowired var webClient: WebClient,
- @Autowired var productRepository: ProductRepositoryCoroutines) {
-
- @FlowPreview
- suspend fun findAll(request: ServerRequest): ServerResponse =
- ServerResponse.ok().json().bodyAndAwait(productRepository.getAllProducts())
-
- suspend fun findOneInStock(request: ServerRequest): ServerResponse {
- val id = request.pathVariable("id").toInt()
-
- val product: Deferred = GlobalScope.async {
- productRepository.getProductById(id)
- }
- val quantity: Deferred = GlobalScope.async {
- webClient.get()
- .uri("/stock-service/product/$id/quantity")
- .accept(MediaType.APPLICATION_JSON)
- .retrieve().awaitBody()
- }
- return ServerResponse.ok().json().bodyAndAwait(ProductStockView(product.await()!!, quantity.await()))
- }
-
- suspend fun findOne(request: ServerRequest): ServerResponse {
- val id = request.pathVariable("id").toInt()
- return ServerResponse.ok().json().bodyAndAwait(productRepository.getProductById(id)!!)
- }
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/model/Product.kt b/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/model/Product.kt
deleted file mode 100644
index c6dcbdc9c4..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/model/Product.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package com.baeldung.nonblockingcoroutines.model
-
-data class Product(
- var id: Int = 0,
- var name: String = "",
- var price: Float = 0.0f
-)
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/repository/ProductRepository.kt b/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/repository/ProductRepository.kt
deleted file mode 100644
index 64ffd014ad..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/repository/ProductRepository.kt
+++ /dev/null
@@ -1,33 +0,0 @@
-package com.baeldung.nonblockingcoroutines.repository
-
-import com.baeldung.nonblockingcoroutines.model.Product
-import org.springframework.data.r2dbc.core.DatabaseClient
-import org.springframework.stereotype.Repository
-import reactor.core.publisher.Flux
-import reactor.core.publisher.Mono
-
-@Repository
-class ProductRepository(private val client: DatabaseClient) {
-
- fun getProductById(id: Int): Mono {
- return client.execute("SELECT * FROM products WHERE id = $1")
- .bind(0, id)
- .`as`(Product::class.java)
- .fetch()
- .one()
- }
-
- fun addNewProduct(name: String, price: Float): Mono {
- return client.execute("INSERT INTO products (name, price) VALUES($1, $2)")
- .bind(0, name)
- .bind(1, price)
- .then()
- }
-
- fun getAllProducts(): Flux {
- return client.select().from("products")
- .`as`(Product::class.java)
- .fetch()
- .all()
- }
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/repository/ProductRepositoryCoroutines.kt b/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/repository/ProductRepositoryCoroutines.kt
deleted file mode 100644
index f2667ec033..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/kotlin/com/baeldung/nonblockingcoroutines/repository/ProductRepositoryCoroutines.kt
+++ /dev/null
@@ -1,39 +0,0 @@
-package com.baeldung.nonblockingcoroutines.repository
-
-
-import com.baeldung.nonblockingcoroutines.model.Product
-import kotlinx.coroutines.FlowPreview
-import kotlinx.coroutines.flow.Flow
-import kotlinx.coroutines.reactive.awaitFirstOrNull
-import kotlinx.coroutines.reactive.flow.asFlow
-import org.springframework.data.r2dbc.core.DatabaseClient
-import org.springframework.stereotype.Repository
-
-@Repository
-class ProductRepositoryCoroutines(private val client: DatabaseClient) {
-
- suspend fun getProductById(id: Int): Product? =
- client.execute("SELECT * FROM products WHERE id = $1")
- .bind(0, id)
- .`as`(Product::class.java)
- .fetch()
- .one()
- .awaitFirstOrNull()
-
- suspend fun addNewProduct(name: String, price: Float) =
- client.execute("INSERT INTO products (name, price) VALUES($1, $2)")
- .bind(0, name)
- .bind(1, price)
- .then()
- .awaitFirstOrNull()
-
- @FlowPreview
- fun getAllProducts(): Flow =
- client.select()
- .from("products")
- .`as`(Product::class.java)
- .fetch()
- .all()
- .log()
- .asFlow()
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/resources/application.properties b/spring-boot-modules/spring-boot-kotlin/src/main/resources/application.properties
deleted file mode 100644
index 0f84ff2d75..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/main/resources/application.properties
+++ /dev/null
@@ -1,8 +0,0 @@
-logging.level.org.springframework.data.r2dbc=DEBUG
-logging.level.org.springframework.web.reactive.function.client.ExchangeFunctions=TRACE
-spring.http.log-request-details=true
-spring.h2.console.enabled=true
-spring.datasource.username=sa
-spring.datasource.url=jdbc:h2:mem:testdb
-spring.datasource.password=
-spring.datasource.dbname=testdb
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-kotlin/src/test/kotlin/com/baeldung/nonblockingcoroutines/ProductHandlerTest.kt b/spring-boot-modules/spring-boot-kotlin/src/test/kotlin/com/baeldung/nonblockingcoroutines/ProductHandlerTest.kt
deleted file mode 100644
index 53b1d50f21..0000000000
--- a/spring-boot-modules/spring-boot-kotlin/src/test/kotlin/com/baeldung/nonblockingcoroutines/ProductHandlerTest.kt
+++ /dev/null
@@ -1,58 +0,0 @@
-package com.baeldung.nonblockingcoroutines
-
-import com.baeldung.nonblockingcoroutines.config.RouterConfiguration
-import com.baeldung.nonblockingcoroutines.handlers.ProductsHandler
-import com.baeldung.nonblockingcoroutines.model.Product
-import com.baeldung.nonblockingcoroutines.repository.ProductRepositoryCoroutines
-import kotlinx.coroutines.FlowPreview
-import kotlinx.coroutines.reactive.flow.asFlow
-import org.junit.Test
-import org.junit.runner.RunWith
-import org.mockito.BDDMockito.given
-import org.springframework.beans.factory.annotation.Autowired
-import org.springframework.boot.autoconfigure.security.reactive.ReactiveSecurityAutoConfiguration
-import org.springframework.boot.autoconfigure.security.reactive.ReactiveUserDetailsServiceAutoConfiguration
-import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
-import org.springframework.boot.test.mock.mockito.MockBean
-import org.springframework.test.context.junit4.SpringRunner
-import org.springframework.test.web.reactive.server.WebTestClient
-import org.springframework.test.web.reactive.server.expectBodyList
-import org.springframework.web.reactive.function.client.WebClient
-import reactor.core.publisher.Flux
-import org.springframework.test.context.ContextConfiguration
-
-@WebFluxTest(
- excludeAutoConfiguration = [ReactiveUserDetailsServiceAutoConfiguration::class, ReactiveSecurityAutoConfiguration::class]
-)
-@RunWith(SpringRunner::class)
-@ContextConfiguration(classes = [ProductsHandler::class, RouterConfiguration::class])
-class ProductHandlerTest {
-
- @Autowired
- private lateinit var client: WebTestClient
-
- @MockBean
- private lateinit var webClient: WebClient
-
- @MockBean
- private lateinit var productsRepository: ProductRepositoryCoroutines
-
-
- @FlowPreview
- @Test
- public fun `get all products`() {
- val productsFlow = Flux.just(
- Product(1, "product1", 1000.0F),
- Product(2, "product2", 2000.0F),
- Product(3, "product3", 3000.0F)
- ).asFlow()
- given(productsRepository.getAllProducts()).willReturn(productsFlow)
- client.get()
- .uri("/")
- .exchange()
- .expectStatus()
- .isOk
- .expectBodyList()
- }
-
-}
diff --git a/spring-boot-modules/spring-boot-libraries-2/pom.xml b/spring-boot-modules/spring-boot-libraries-2/pom.xml
index 2633c8fad3..35dec54450 100644
--- a/spring-boot-modules/spring-boot-libraries-2/pom.xml
+++ b/spring-boot-modules/spring-boot-libraries-2/pom.xml
@@ -39,8 +39,8 @@
- 1.0.0
+ 1.1.0
4.0.3
-
\ No newline at end of file
+
diff --git a/spring-boot-modules/spring-boot-libraries-2/src/main/resources/application.properties b/spring-boot-modules/spring-boot-libraries-2/src/main/resources/application.properties
index 69f5a7356e..bb2a31f1d9 100644
--- a/spring-boot-modules/spring-boot-libraries-2/src/main/resources/application.properties
+++ b/spring-boot-modules/spring-boot-libraries-2/src/main/resources/application.properties
@@ -1,2 +1,2 @@
-org.jobrunr.background_job_server=true
-org.jobrunr.dashboard=true
+org.jobrunr.background-job-server.enabled=true
+org.jobrunr.dashboard.enabled=true
diff --git a/spring-boot-modules/spring-boot-libraries/README.md b/spring-boot-modules/spring-boot-libraries/README.md
index 10c56ca576..6976435866 100644
--- a/spring-boot-modules/spring-boot-libraries/README.md
+++ b/spring-boot-modules/spring-boot-libraries/README.md
@@ -15,3 +15,21 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
- [Spring Boot and Togglz Aspect](https://www.baeldung.com/spring-togglz)
- [Getting Started with GraphQL and Spring Boot](https://www.baeldung.com/spring-graphql)
- [An Introduction to Kong](https://www.baeldung.com/kong)
+
+### GraphQL sample queries
+
+Query
+```shell script
+curl \
+--request POST 'localhost:8081/graphql' \
+--header 'Content-Type: application/json' \
+--data-raw '{"query":"query {\n recentPosts(count: 2, offset: 0) {\n id\n title\n author {\n id\n posts {\n id\n }\n }\n }\n}"}'
+```
+
+Mutation
+```shell script
+curl \
+--request POST 'localhost:8081/graphql' \
+--header 'Content-Type: application/json' \
+--data-raw '{"query":"mutation {\n writePost(title: \"New Title\", author: \"Author2\", text: \"New Text\") {\n id\n category\n author {\n id\n name\n }\n }\n}"}'
+```
diff --git a/spring-boot-modules/spring-boot-libraries/pom.xml b/spring-boot-modules/spring-boot-libraries/pom.xml
index 3913babaa8..c96a881573 100644
--- a/spring-boot-modules/spring-boot-libraries/pom.xml
+++ b/spring-boot-modules/spring-boot-libraries/pom.xml
@@ -6,7 +6,6 @@
spring-boot-libraries
spring-boot-libraries
war
- This is simple boot application for Spring boot actuator test
com.baeldung.spring-boot-modules
@@ -240,7 +239,7 @@
- com.baeldung.intro.App
+ com.baeldung.graphql.DemoApplication
8.5.11
2.4.1.Final
1.9.0
diff --git a/spring-boot-modules/spring-boot-libraries/src/main/java/com/baeldung/demo/DemoApplication.java b/spring-boot-modules/spring-boot-libraries/src/main/java/com/baeldung/graphql/DemoApplication.java
similarity index 65%
rename from spring-boot-modules/spring-boot-libraries/src/main/java/com/baeldung/demo/DemoApplication.java
rename to spring-boot-modules/spring-boot-libraries/src/main/java/com/baeldung/graphql/DemoApplication.java
index eb091b4695..1fd93af3b7 100644
--- a/spring-boot-modules/spring-boot-libraries/src/main/java/com/baeldung/demo/DemoApplication.java
+++ b/spring-boot-modules/spring-boot-libraries/src/main/java/com/baeldung/graphql/DemoApplication.java
@@ -1,13 +1,15 @@
-package com.baeldung.demo;
+package com.baeldung.graphql;
import com.baeldung.graphql.GraphqlConfiguration;
import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.SpringBootApplication;
-
+import org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration;
import org.springframework.context.annotation.Import;
@SpringBootApplication
@Import(GraphqlConfiguration.class)
+@EnableAutoConfiguration(exclude = {SecurityAutoConfiguration.class})
public class DemoApplication {
public static void main(String[] args) {
diff --git a/spring-boot-modules/spring-boot-libraries/src/main/java/com/baeldung/graphql/PostResolver.java b/spring-boot-modules/spring-boot-libraries/src/main/java/com/baeldung/graphql/PostResolver.java
index dbfde330ea..329d1f469a 100644
--- a/spring-boot-modules/spring-boot-libraries/src/main/java/com/baeldung/graphql/PostResolver.java
+++ b/spring-boot-modules/spring-boot-libraries/src/main/java/com/baeldung/graphql/PostResolver.java
@@ -1,7 +1,5 @@
package com.baeldung.graphql;
-import java.util.Optional;
-
import com.coxautodev.graphql.tools.GraphQLResolver;
public class PostResolver implements GraphQLResolver {
@@ -11,7 +9,7 @@ public class PostResolver implements GraphQLResolver {
this.authorDao = authorDao;
}
- public Optional getAuthor(Post post) {
- return authorDao.getAuthor(post.getAuthorId());
+ public Author getAuthor(Post post) {
+ return authorDao.getAuthor(post.getAuthorId()).orElseThrow(RuntimeException::new);
}
}
diff --git a/spring-boot-modules/spring-boot-libraries/src/main/resources/demo.yml b/spring-boot-modules/spring-boot-libraries/src/main/resources/demo.yml
new file mode 100644
index 0000000000..11e54c5449
--- /dev/null
+++ b/spring-boot-modules/spring-boot-libraries/src/main/resources/demo.yml
@@ -0,0 +1,2 @@
+server:
+ port: 8081
diff --git a/spring-boot-modules/spring-boot/src/main/resources/graphql/blog.graphqls b/spring-boot-modules/spring-boot-libraries/src/main/resources/graphql/post.graphqls
similarity index 95%
rename from spring-boot-modules/spring-boot/src/main/resources/graphql/blog.graphqls
rename to spring-boot-modules/spring-boot-libraries/src/main/resources/graphql/post.graphqls
index aa0c8757e9..0e42f7255c 100644
--- a/spring-boot-modules/spring-boot/src/main/resources/graphql/blog.graphqls
+++ b/spring-boot-modules/spring-boot-libraries/src/main/resources/graphql/post.graphqls
@@ -3,7 +3,7 @@ type Post {
title: String!
text: String!
category: String
- author: Author
+ author: Author!
}
type Author {
diff --git a/spring-boot-modules/spring-boot-logging-log4j2/src/test/java/org/baeldung/SpringContextTest.java b/spring-boot-modules/spring-boot-logging-log4j2/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-boot-modules/spring-boot-logging-log4j2/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-boot-modules/spring-boot-logging-log4j2/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-boot-modules/spring-boot-mvc-3/pom.xml b/spring-boot-modules/spring-boot-mvc-3/pom.xml
index 1290b0432f..5a5d4c3cd8 100644
--- a/spring-boot-modules/spring-boot-mvc-3/pom.xml
+++ b/spring-boot-modules/spring-boot-mvc-3/pom.xml
@@ -37,8 +37,4 @@
-
- 2.7
-
-
diff --git a/spring-boot-modules/spring-boot-properties-2/src/main/java/com/baeldung/properties/value/defaults/ValuesWithDefaultsApp.java b/spring-boot-modules/spring-boot-properties-2/src/main/java/com/baeldung/properties/value/defaults/ValuesWithDefaultsApp.java
index 72fa0e03c0..2a2b535be7 100644
--- a/spring-boot-modules/spring-boot-properties-2/src/main/java/com/baeldung/properties/value/defaults/ValuesWithDefaultsApp.java
+++ b/spring-boot-modules/spring-boot-properties-2/src/main/java/com/baeldung/properties/value/defaults/ValuesWithDefaultsApp.java
@@ -51,21 +51,21 @@ public class ValuesWithDefaultsApp {
@PostConstruct
public void afterInitialize() {
// strings
- Assert.isTrue(stringWithDefaultValue.equals("my default value"));
- Assert.isTrue(stringWithBlankDefaultValue.equals(""));
+ Assert.isTrue(stringWithDefaultValue.equals("my default value"), "unexpected value for stringWithDefaultValue");
+ Assert.isTrue(stringWithBlankDefaultValue.equals(""), "unexpected value for stringWithBlankDefaultValue");
// other primitives
- Assert.isTrue(booleanWithDefaultValue);
- Assert.isTrue(intWithDefaultValue == 42);
+ Assert.isTrue(booleanWithDefaultValue, "unexpected value for booleanWithDefaultValue");
+ Assert.isTrue(intWithDefaultValue == 42, "unexpected value for intWithDefaultValue");
// arrays
List stringListValues = Arrays.asList("one", "two", "three");
- Assert.isTrue(Arrays.asList(stringArrayWithDefaults).containsAll(stringListValues));
+ Assert.isTrue(Arrays.asList(stringArrayWithDefaults).containsAll(stringListValues), "unexpected value for stringArrayWithDefaults");
List intListValues = Arrays.asList(1, 2, 3);
- Assert.isTrue(Arrays.asList(ArrayUtils.toObject(intArrayWithDefaults)).containsAll(intListValues));
+ Assert.isTrue(Arrays.asList(ArrayUtils.toObject(intArrayWithDefaults)).containsAll(intListValues), "unexpected value for intArrayWithDefaults");
// SpEL
- Assert.isTrue(spelWithDefaultValue.equals("my default system property value"));
+ Assert.isTrue(spelWithDefaultValue.equals("my default system property value"), "unexpected value for spelWithDefaultValue");
}
}
diff --git a/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/lists/ListsPropertiesUnitTest.java b/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/lists/ListsPropertiesUnitTest.java
index 60ba4cc108..1abb643d75 100644
--- a/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/lists/ListsPropertiesUnitTest.java
+++ b/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/lists/ListsPropertiesUnitTest.java
@@ -13,6 +13,7 @@ import java.util.Collections;
import java.util.List;
import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertArrayEquals;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = SpringListPropertiesApplication.class)
@@ -47,7 +48,7 @@ public class ListsPropertiesUnitTest {
@Test
public void whenContextIsInitialized_thenInjectedArrayContainsExpectedValues() {
- assertEquals(new String[] {"Baeldung", "dot", "com"}, arrayOfStrings);
+ assertArrayEquals(new String[] {"Baeldung", "dot", "com"}, arrayOfStrings);
}
@Test
@@ -82,7 +83,7 @@ public class ListsPropertiesUnitTest {
String[] arrayOfStrings = environment.getProperty("arrayOfStrings", String[].class);
List listOfStrings = (List)environment.getProperty("arrayOfStrings", List.class);
- assertEquals(new String[] {"Baeldung", "dot", "com"}, arrayOfStrings);
+ assertArrayEquals(new String[] {"Baeldung", "dot", "com"}, arrayOfStrings);
assertEquals(Arrays.asList("Baeldung", "dot", "com"), listOfStrings);
}
}
diff --git a/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/yamllist/YamlComplexListsUnitTest.java b/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/yamllist/YamlComplexListsUnitTest.java
index 6dc5d61d09..ce9ec38551 100644
--- a/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/yamllist/YamlComplexListsUnitTest.java
+++ b/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/yamllist/YamlComplexListsUnitTest.java
@@ -6,14 +6,14 @@ import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.boot.test.context.ConfigFileApplicationContextInitializer;
+import org.springframework.boot.test.context.ConfigDataApplicationContextInitializer;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import com.baeldung.properties.yamllist.pojo.ApplicationProps;
@ExtendWith(SpringExtension.class)
-@ContextConfiguration(initializers = ConfigFileApplicationContextInitializer.class)
+@ContextConfiguration(initializers = ConfigDataApplicationContextInitializer.class)
@EnableConfigurationProperties(value = ApplicationProps.class)
class YamlComplexListsUnitTest {
diff --git a/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/yamllist/YamlSimpleListUnitTest.java b/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/yamllist/YamlSimpleListUnitTest.java
index 475a73c7d7..5315c7b9bc 100644
--- a/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/yamllist/YamlSimpleListUnitTest.java
+++ b/spring-boot-modules/spring-boot-properties-2/src/test/java/com/baeldung/properties/yamllist/YamlSimpleListUnitTest.java
@@ -6,14 +6,14 @@ import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.boot.test.context.ConfigFileApplicationContextInitializer;
+import org.springframework.boot.test.context.ConfigDataApplicationContextInitializer;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import com.baeldung.properties.yamllist.pojo.ApplicationProps;
@ExtendWith(SpringExtension.class)
-@ContextConfiguration(initializers = ConfigFileApplicationContextInitializer.class)
+@ContextConfiguration(initializers = ConfigDataApplicationContextInitializer.class)
@EnableConfigurationProperties(value = ApplicationProps.class)
class YamlSimpleListUnitTest {
diff --git a/spring-boot-modules/spring-boot-properties-3/pom.xml b/spring-boot-modules/spring-boot-properties-3/pom.xml
index 44e2ef52ac..809fd6e2d4 100644
--- a/spring-boot-modules/spring-boot-properties-3/pom.xml
+++ b/spring-boot-modules/spring-boot-properties-3/pom.xml
@@ -26,12 +26,6 @@
org.springframework.boot
spring-boot-starter-test
test
-
-
- org.junit.vintage
- junit-vintage-engine
-
-
org.springframework.boot
diff --git a/spring-boot-modules/spring-boot-properties-3/src/main/resources/application-multidocument-integration.properties b/spring-boot-modules/spring-boot-properties-3/src/main/resources/application-multidocument-integration.properties
new file mode 100644
index 0000000000..f3bac4c614
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties-3/src/main/resources/application-multidocument-integration.properties
@@ -0,0 +1,4 @@
+spring.datasource.password=password
+spring.datasource.url=jdbc:mysql://localhost:3306/db_integration
+spring.datasource.username=user
+bael.property=integrationValue
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties-3/src/main/resources/application.properties b/spring-boot-modules/spring-boot-properties-3/src/main/resources/application.properties
index eace1f0e46..a079837942 100644
--- a/spring-boot-modules/spring-boot-properties-3/src/main/resources/application.properties
+++ b/spring-boot-modules/spring-boot-properties-3/src/main/resources/application.properties
@@ -8,4 +8,22 @@ spring.datasource.url=jdbc:h2:dev
spring.datasource.username=SA
spring.datasource.password=password
app.name=MyApp
-app.description=${app.name} is a Spring Boot application
\ No newline at end of file
+app.description=${app.name} is a Spring Boot application
+logging.file.name=myapplication.log
+bael.property=defaultValue
+bael.otherProperty=defaultOtherValue
+#---
+spring.config.activate.on-profile=multidocument-dev
+spring.datasource.password=password
+spring.datasource.url=jdbc:h2:dev
+spring.datasource.username=SA
+bael.property=devValue
+#---
+spring.config.activate.on-profile=multidocument-integration-extension
+bael.otherProperty=integrationExtensionOtherValue
+#---
+spring.config.activate.on-profile=multidocument-prod
+spring.datasource.password=password
+spring.datasource.url=jdbc:h2:prod
+spring.datasource.username=prodUser
+bael.property=prodValue
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties-3/src/main/resources/application.yml b/spring-boot-modules/spring-boot-properties-3/src/main/resources/application.yml
index 00baeade9c..10570bb738 100644
--- a/spring-boot-modules/spring-boot-properties-3/src/main/resources/application.yml
+++ b/spring-boot-modules/spring-boot-properties-3/src/main/resources/application.yml
@@ -1,17 +1,21 @@
-logging:
- file:
- name: myapplication.log
+bael:
+ root-level-property: defaultRootLevelValue
spring:
- datasource:
- password: 'password'
- url: jdbc:h2:dev
- username: SA
+ profiles:
+ group:
+ multidocument-integration: multidocument-integration-extension
---
spring:
+ config:
+ activate:
+ on-profile: multidocument-staging
datasource:
password: 'password'
- url: jdbc:mysql://localhost:3306/db_production
- username: user
+ url: jdbc:h2:staging
+ username: SA
+bael:
+ property: stagingValue
+---
application:
servers:
- ip: '127.0.0.1'
diff --git a/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/DefaultMultidocumentFilesIntegrationTest.java b/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/DefaultMultidocumentFilesIntegrationTest.java
new file mode 100644
index 0000000000..af1f7f705f
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/DefaultMultidocumentFilesIntegrationTest.java
@@ -0,0 +1,26 @@
+package com.baeldung.boot.properties.multidocument;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
+
+import com.baeldung.boot.properties.DemoApplication;
+
+@SpringBootTest(classes = { DemoApplication.class }, webEnvironment = WebEnvironment.MOCK)
+public class DefaultMultidocumentFilesIntegrationTest {
+
+ @Value("${bael.property}")
+ private String baelCustomProperty;
+
+ @Value("${bael.root-level-property}")
+ private String baelRootProperty;
+
+ @Test
+ public void givenDefaultProfileActive_whenApplicationStarts_thenDefaultPropertiesUser() {
+ assertThat(baelCustomProperty).isEqualTo("defaultValue");
+ assertThat(baelRootProperty).isEqualTo("defaultRootLevelValue");
+ }
+}
diff --git a/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/DevMultidocumentFilesIntegrationTest.java b/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/DevMultidocumentFilesIntegrationTest.java
new file mode 100644
index 0000000000..54188595c0
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/DevMultidocumentFilesIntegrationTest.java
@@ -0,0 +1,28 @@
+package com.baeldung.boot.properties.multidocument;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
+import org.springframework.test.context.ActiveProfiles;
+
+import com.baeldung.boot.properties.DemoApplication;
+
+@SpringBootTest(classes = { DemoApplication.class }, webEnvironment = WebEnvironment.MOCK)
+@ActiveProfiles("multidocument-dev")
+public class DevMultidocumentFilesIntegrationTest {
+
+ @Value("${bael.property}")
+ private String baelCustomProperty;
+
+ @Value("${bael.root-level-property}")
+ private String baelRootProperty;
+
+ @Test
+ public void givenDefaultProfileActive_whenApplicationStarts_thenDefaultPropertiesUser() {
+ assertThat(baelCustomProperty).isEqualTo("devValue");
+ assertThat(baelRootProperty).isEqualTo("defaultRootLevelValue");
+ }
+}
diff --git a/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/IntegrationMultidocumentFilesIntegrationTest.java b/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/IntegrationMultidocumentFilesIntegrationTest.java
new file mode 100644
index 0000000000..e0727154d0
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/IntegrationMultidocumentFilesIntegrationTest.java
@@ -0,0 +1,32 @@
+package com.baeldung.boot.properties.multidocument;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
+import org.springframework.test.context.ActiveProfiles;
+
+import com.baeldung.boot.properties.DemoApplication;
+
+@SpringBootTest(classes = { DemoApplication.class }, webEnvironment = WebEnvironment.MOCK)
+@ActiveProfiles("multidocument-integration")
+public class IntegrationMultidocumentFilesIntegrationTest {
+
+ @Value("${bael.property}")
+ private String baelCustomProperty;
+
+ @Value("${bael.otherProperty}")
+ private String baelCustomOtherProperty;
+
+ @Value("${bael.root-level-property}")
+ private String baelRootProperty;
+
+ @Test
+ public void givenProductionProfileActive_whenApplicationStarts_thenDefaultPropertiesUser() {
+ assertThat(baelCustomProperty).isEqualTo("integrationValue");
+ assertThat(baelCustomOtherProperty).isEqualTo("integrationExtensionOtherValue");
+ assertThat(baelRootProperty).isEqualTo("defaultRootLevelValue");
+ }
+}
diff --git a/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/ProdMultidocumentFilesIntegrationTest.java b/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/ProdMultidocumentFilesIntegrationTest.java
new file mode 100644
index 0000000000..9270995da0
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/ProdMultidocumentFilesIntegrationTest.java
@@ -0,0 +1,28 @@
+package com.baeldung.boot.properties.multidocument;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
+import org.springframework.test.context.ActiveProfiles;
+
+import com.baeldung.boot.properties.DemoApplication;
+
+@SpringBootTest(classes = { DemoApplication.class }, webEnvironment = WebEnvironment.MOCK)
+@ActiveProfiles("multidocument-prod")
+public class ProdMultidocumentFilesIntegrationTest {
+
+ @Value("${bael.property}")
+ private String baelCustomProperty;
+
+ @Value("${bael.root-level-property}")
+ private String baelRootProperty;
+
+ @Test
+ public void givenProductionProfileActive_whenApplicationStarts_thenDefaultPropertiesUser() {
+ assertThat(baelCustomProperty).isEqualTo("prodValue");
+ assertThat(baelRootProperty).isEqualTo("defaultRootLevelValue");
+ }
+}
diff --git a/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/StagingMultidocumentFilesIntegrationTest.java b/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/StagingMultidocumentFilesIntegrationTest.java
new file mode 100644
index 0000000000..8040c93ee0
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties-3/src/test/java/com/baeldung/boot/properties/multidocument/StagingMultidocumentFilesIntegrationTest.java
@@ -0,0 +1,28 @@
+package com.baeldung.boot.properties.multidocument;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
+import org.springframework.test.context.ActiveProfiles;
+
+import com.baeldung.boot.properties.DemoApplication;
+
+@SpringBootTest(classes = { DemoApplication.class }, webEnvironment = WebEnvironment.MOCK)
+@ActiveProfiles("multidocument-staging")
+public class StagingMultidocumentFilesIntegrationTest {
+
+ @Value("${bael.property}")
+ private String baelCustomProperty;
+
+ @Value("${bael.root-level-property}")
+ private String baelRootProperty;
+
+ @Test
+ public void givenProductionProfileActive_whenApplicationStarts_thenDefaultPropertiesUser() {
+ assertThat(baelCustomProperty).isEqualTo("stagingValue");
+ assertThat(baelRootProperty).isEqualTo("defaultRootLevelValue");
+ }
+}
diff --git a/spring-boot-modules/spring-boot-properties/pom.xml b/spring-boot-modules/spring-boot-properties/pom.xml
index cfdc71b8d6..40668f47fd 100644
--- a/spring-boot-modules/spring-boot-properties/pom.xml
+++ b/spring-boot-modules/spring-boot-properties/pom.xml
@@ -1,6 +1,7 @@
-
+
4.0.0
@@ -47,12 +48,10 @@
org.apache.httpcomponents
httpcore
- ${httpcore.version}
org.springframework.boot
spring-boot-configuration-processor
- ${configuration-processor.version}
true
@@ -126,15 +125,21 @@
+
+
+ spring-milestones
+ Spring Milestones
+ https://repo.spring.io/milestone
+
+
+
1.8
- Greenwich.SR1
+ 2020.0.0-M5
1.10
20.0
- 4.4.11
@
- 2.2.4.RELEASE
-
+
com.baeldung.yaml.MyApplication
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/configurationproperties/ConfigurationScanDemoApplication.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/configurationproperties/ConfigurationScanDemoApplication.java
new file mode 100644
index 0000000000..b2339b9980
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/configurationproperties/ConfigurationScanDemoApplication.java
@@ -0,0 +1,14 @@
+package com.baeldung.configurationproperties;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
+
+@SpringBootApplication
+@ConfigurationPropertiesScan("com.baeldung.configurationproperties")
+public class ConfigurationScanDemoApplication{
+
+ public static void main(String[] args) {
+ SpringApplication.run(ConfigurationScanDemoApplication.class, args);
+ }
+}
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/configurationproperties/EnableConfigurationDemoApplication.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/configurationproperties/EnableConfigurationDemoApplication.java
new file mode 100644
index 0000000000..69b8c2802b
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/configurationproperties/EnableConfigurationDemoApplication.java
@@ -0,0 +1,13 @@
+package com.baeldung.configurationproperties;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+
+@SpringBootApplication
+@EnableConfigurationProperties(ConfigProperties.class)
+public class EnableConfigurationDemoApplication {
+ public static void main(String[] args) {
+ SpringApplication.run(EnableConfigurationDemoApplication.class, args);
+ }
+}
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/ConfigPropertiesDemoApplication.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/ConfigPropertiesDemoApplication.java
index 1e5e88921a..c435f9e320 100644
--- a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/ConfigPropertiesDemoApplication.java
+++ b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/ConfigPropertiesDemoApplication.java
@@ -1,13 +1,10 @@
package com.baeldung.properties;
-import com.baeldung.buildproperties.Application;
+import com.baeldung.configurationproperties.ConfigProperties;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.context.annotation.ComponentScan;
-import com.baeldung.configurationproperties.ConfigProperties;
-
@SpringBootApplication
@ComponentScan(basePackageClasses = {ConfigProperties.class, AdditionalProperties.class})
public class ConfigPropertiesDemoApplication {
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/core/ComponentInXmlUsingProperties.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/core/ComponentInXmlUsingProperties.java
deleted file mode 100644
index 675c72e642..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/core/ComponentInXmlUsingProperties.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package com.baeldung.properties.core;
-
-import org.springframework.beans.factory.InitializingBean;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.core.env.Environment;
-
-public class ComponentInXmlUsingProperties implements InitializingBean {
-
- @Autowired
- private Environment env;
-
- @Value("${key.something}")
- private String injectedProperty;
-
- public ComponentInXmlUsingProperties(final String propertyValue) {
- super();
-
- System.out.println("Constructor Injection - Property Value resolved to: " + propertyValue);
- }
-
- //
-
- @Override
- public void afterPropertiesSet() throws Exception {
- System.out.println("in afterPropertiesSet via @Value: " + injectedProperty);
- System.out.println("in afterPropertiesSet Environment: " + env.getProperty("key.something"));
- }
-
-}
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/external/ExternalPropertiesWithXmlConfig.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/external/ExternalPropertiesWithXmlConfig.java
deleted file mode 100644
index 9080e3d0ba..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/external/ExternalPropertiesWithXmlConfig.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.baeldung.properties.external;
-
-import org.springframework.context.annotation.ComponentScan;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.ImportResource;
-
-@Configuration
-@ImportResource("classpath:configForProperties.xml")
-@ComponentScan("com.baeldung.core")
-public class ExternalPropertiesWithXmlConfig {
-
- public ExternalPropertiesWithXmlConfig() {
- super();
- }
-
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/external/ExternalPropertiesWithXmlConfigOne.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/external/ExternalPropertiesWithXmlConfigOne.java
deleted file mode 100644
index f45f5b6a03..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/external/ExternalPropertiesWithXmlConfigOne.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.baeldung.properties.external;
-
-import org.springframework.context.annotation.ComponentScan;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.ImportResource;
-
-@Configuration
-@ImportResource("classpath:configForPropertiesOne.xml")
-@ComponentScan("com.baeldung.core")
-public class ExternalPropertiesWithXmlConfigOne {
-
- public ExternalPropertiesWithXmlConfigOne() {
- super();
- }
-
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/external/ExternalPropertiesWithXmlConfigTwo.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/external/ExternalPropertiesWithXmlConfigTwo.java
deleted file mode 100644
index 38ecdd2aae..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/external/ExternalPropertiesWithXmlConfigTwo.java
+++ /dev/null
@@ -1,14 +0,0 @@
-package com.baeldung.properties.external;
-
-import org.springframework.context.annotation.Configuration;
-import org.springframework.context.annotation.ImportResource;
-
-@Configuration
-@ImportResource("classpath:basicConfigForPropertiesTwo.xml")
-public class ExternalPropertiesWithXmlConfigTwo {
-
- public ExternalPropertiesWithXmlConfigTwo() {
- super();
- }
-
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/reloading/configs/ReloadablePropertySource.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/reloading/configs/ReloadablePropertySource.java
index 6d76a2e1e2..e63dc1eb54 100644
--- a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/reloading/configs/ReloadablePropertySource.java
+++ b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/reloading/configs/ReloadablePropertySource.java
@@ -15,7 +15,7 @@ public class ReloadablePropertySource extends PropertySource {
}
public ReloadablePropertySource(String name, String path) {
- super(StringUtils.isEmpty(name) ? path : name);
+ super(!StringUtils.hasText(name) ? path : name);
try {
this.propertiesConfiguration = new PropertiesConfiguration(path);
FileChangedReloadingStrategy strategy = new FileChangedReloadingStrategy();
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/spring/PropertiesWithPlaceHolderConfigurer.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/spring/PropertiesWithPlaceHolderConfigurer.java
deleted file mode 100644
index 512ecda266..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/spring/PropertiesWithPlaceHolderConfigurer.java
+++ /dev/null
@@ -1,21 +0,0 @@
-package com.baeldung.properties.spring;
-
-import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-
-@Configuration
-public class PropertiesWithPlaceHolderConfigurer {
-
- public PropertiesWithPlaceHolderConfigurer() {
- super();
- }
-
- @Bean
- public PropertyPlaceholderConfigurer propertyConfigurer() {
- final PropertyPlaceholderConfigurer props = new PropertyPlaceholderConfigurer();
- props.setSystemPropertiesMode(PropertyPlaceholderConfigurer.SYSTEM_PROPERTIES_MODE_FALLBACK);
- return props;
- }
-
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/spring/PropertyPlaceholderConfig.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/spring/PropertyPlaceholderConfig.java
deleted file mode 100644
index 0d1eb4ccf7..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/properties/spring/PropertyPlaceholderConfig.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package com.baeldung.properties.spring;
-
-import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.core.io.*;
-
-@Configuration
-public class PropertyPlaceholderConfig {
-
- public PropertyPlaceholderConfig(){
- super();
- }
-
- @Bean
- public static PropertyPlaceholderConfigurer properties() {
- PropertyPlaceholderConfigurer ppc = new PropertyPlaceholderConfigurer();
- Resource[] resources = new ClassPathResource[]{ new ClassPathResource("foo.properties") };
- ppc.setLocations( resources );
- ppc.setIgnoreUnresolvablePlaceholders( true );
- return ppc;
- }
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/yaml/MyApplication.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/yaml/MyApplication.java
index f3cfff57b7..27195911bd 100644
--- a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/yaml/MyApplication.java
+++ b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/yaml/MyApplication.java
@@ -5,15 +5,13 @@
*/
package com.baeldung.yaml;
-import java.util.Collections;
+import com.baeldung.yaml.YAMLConfig.Idm;
+import com.baeldung.yaml.YAMLConfig.Service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
-import com.baeldung.yaml.YAMLConfig.Idm;
-import com.baeldung.yaml.YAMLConfig.Service;
-
@SpringBootApplication
public class MyApplication implements CommandLineRunner {
@@ -28,6 +26,7 @@ public class MyApplication implements CommandLineRunner {
public void run(String... args) throws Exception {
System.out.println("using environment:" + myConfig.getEnvironment());
System.out.println("name:" + myConfig.getName());
+ System.out.println("enabled:" + myConfig.isEnabled());
System.out.println("servers:" + myConfig.getServers());
if ("testing".equalsIgnoreCase(myConfig.getEnvironment())) {
diff --git a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/yaml/YAMLConfig.java b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/yaml/YAMLConfig.java
index 83c083734c..4099ded1aa 100644
--- a/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/yaml/YAMLConfig.java
+++ b/spring-boot-modules/spring-boot-properties/src/main/java/com/baeldung/yaml/YAMLConfig.java
@@ -15,6 +15,7 @@ import org.springframework.context.annotation.Configuration;
public class YAMLConfig {
private String name;
private String environment;
+ private boolean enabled;
private List servers = new ArrayList();
private List external = new ArrayList();
private Map map = new HashMap();
@@ -43,7 +44,15 @@ public class YAMLConfig {
public void setEnvironment(String environment) {
this.environment = environment;
}
-
+
+ public boolean isEnabled() {
+ return enabled;
+ }
+
+ public void setEnabled(boolean enabled) {
+ this.enabled = enabled;
+ }
+
public Component getComponent() {
return component;
}
diff --git a/spring-boot-modules/spring-boot-properties/src/main/resources/application.yml b/spring-boot-modules/spring-boot-properties/src/main/resources/application.yml
index 30e64f9d35..61d462bb5a 100644
--- a/spring-boot-modules/spring-boot-properties/src/main/resources/application.yml
+++ b/spring-boot-modules/spring-boot-properties/src/main/resources/application.yml
@@ -6,9 +6,12 @@ spring:
---
spring:
- profiles: test
+ config:
+ activate:
+ on-profile: test
name: test-YAML
environment: testing
+enabled: false
servers:
- www.abc.test.com
- www.xyz.test.com
@@ -36,9 +39,12 @@ component:
---
spring:
- profiles: prod
+ config:
+ activate:
+ on-profile: prod
name: prod-YAML
environment: production
+enabled: true
servers:
- www.abc.com
- www.xyz.com
@@ -46,9 +52,12 @@ servers:
---
spring:
- profiles: dev
+ config:
+ activate:
+ on-profile: dev
name: ${DEV_NAME:dev-YAML}
environment: development
+enabled: true
servers:
- www.abc.dev.com
- www.xyz.dev.com
diff --git a/spring-boot-modules/spring-boot-properties/src/main/resources/basicConfigForProperties.xml b/spring-boot-modules/spring-boot-properties/src/main/resources/basicConfigForProperties.xml
deleted file mode 100644
index e50de084f0..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/resources/basicConfigForProperties.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/main/resources/basicConfigForPropertiesOne.xml b/spring-boot-modules/spring-boot-properties/src/main/resources/basicConfigForPropertiesOne.xml
deleted file mode 100644
index 01b297d437..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/resources/basicConfigForPropertiesOne.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/main/resources/basicConfigForPropertiesTwo.xml b/spring-boot-modules/spring-boot-properties/src/main/resources/basicConfigForPropertiesTwo.xml
deleted file mode 100644
index 1d470c4340..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/resources/basicConfigForPropertiesTwo.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/main/resources/configForDbProperties.xml b/spring-boot-modules/spring-boot-properties/src/main/resources/configForDbProperties.xml
deleted file mode 100644
index 00fd5f0508..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/resources/configForDbProperties.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/main/resources/configForProperties.xml b/spring-boot-modules/spring-boot-properties/src/main/resources/configForProperties.xml
deleted file mode 100644
index 16db00ace3..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/resources/configForProperties.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/main/resources/configForPropertiesOne.xml b/spring-boot-modules/spring-boot-properties/src/main/resources/configForPropertiesOne.xml
deleted file mode 100644
index 53072d89bb..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/resources/configForPropertiesOne.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/main/resources/configForPropertyPlaceholderBeans.xml b/spring-boot-modules/spring-boot-properties/src/main/resources/configForPropertyPlaceholderBeans.xml
deleted file mode 100644
index a296cf5169..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/main/resources/configForPropertyPlaceholderBeans.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
- classpath:foo.properties
-
-
-
-
-
-
-
-
- classpath:foo.properties
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/configurationproperties/ConfigPropertiesIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/configurationproperties/ConfigPropertiesIntegrationTest.java
index 3b80fa66fe..7f239cbcff 100644
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/configurationproperties/ConfigPropertiesIntegrationTest.java
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/configurationproperties/ConfigPropertiesIntegrationTest.java
@@ -4,12 +4,10 @@ import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.junit4.SpringRunner;
-import com.baeldung.configurationproperties.ConfigProperties;
import com.baeldung.properties.AdditionalProperties;
import com.baeldung.properties.ConfigPropertiesDemoApplication;
@@ -19,34 +17,34 @@ import com.baeldung.properties.ConfigPropertiesDemoApplication;
public class ConfigPropertiesIntegrationTest {
@Autowired
- private ConfigProperties properties;
+ private ConfigProperties configProperties;
@Autowired
private AdditionalProperties additionalProperties;
@Test
public void whenSimplePropertyQueriedthenReturnsProperty() throws Exception {
- Assert.assertTrue("From address is read as null!", properties.getFrom() != null);
+ Assert.assertTrue("From address is read as null!", configProperties.getFrom() != null);
}
@Test
public void whenListPropertyQueriedthenReturnsProperty() throws Exception {
- Assert.assertTrue("Couldn't bind list property!", properties.getDefaultRecipients().size() == 2);
- Assert.assertTrue("Incorrectly bound list property. Expected 2 entries!", properties.getDefaultRecipients().size() == 2);
+ Assert.assertTrue("Couldn't bind list property!", configProperties.getDefaultRecipients().size() == 2);
+ Assert.assertTrue("Incorrectly bound list property. Expected 2 entries!", configProperties.getDefaultRecipients().size() == 2);
}
@Test
public void whenMapPropertyQueriedthenReturnsProperty() throws Exception {
- Assert.assertTrue("Couldn't bind map property!", properties.getAdditionalHeaders() != null);
- Assert.assertTrue("Incorrectly bound map property. Expected 3 Entries!", properties.getAdditionalHeaders().size() == 3);
+ Assert.assertTrue("Couldn't bind map property!", configProperties.getAdditionalHeaders() != null);
+ Assert.assertTrue("Incorrectly bound map property. Expected 3 Entries!", configProperties.getAdditionalHeaders().size() == 3);
}
@Test
public void whenObjectPropertyQueriedthenReturnsProperty() throws Exception {
- Assert.assertTrue("Couldn't bind map property!", properties.getCredentials() != null);
- Assert.assertTrue("Incorrectly bound object property!", properties.getCredentials().getAuthMethod().equals("SHA1"));
- Assert.assertTrue("Incorrectly bound object property!", properties.getCredentials().getUsername().equals("john"));
- Assert.assertTrue("Incorrectly bound object property!", properties.getCredentials().getPassword().equals("password"));
+ Assert.assertTrue("Couldn't bind map property!", configProperties.getCredentials() != null);
+ Assert.assertTrue("Incorrectly bound object property!", configProperties.getCredentials().getAuthMethod().equals("SHA1"));
+ Assert.assertTrue("Incorrectly bound object property!", configProperties.getCredentials().getUsername().equals("john"));
+ Assert.assertTrue("Incorrectly bound object property!", configProperties.getCredentials().getPassword().equals("password"));
}
@Test
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/additionalproperties/AdditionalPropertiesFilesIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/additionalproperties/AdditionalPropertiesFilesIntegrationTest.java
new file mode 100644
index 0000000000..0f1f4e0b13
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/additionalproperties/AdditionalPropertiesFilesIntegrationTest.java
@@ -0,0 +1,29 @@
+package com.baeldung.properties.additionalproperties;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import org.junit.jupiter.api.Test;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.ActiveProfiles;
+
+@ActiveProfiles("default")
+@SpringBootTest(classes = { AdditionalPropertiesTestConfig.class })
+public class AdditionalPropertiesFilesIntegrationTest {
+
+ Logger logger = LoggerFactory.getLogger(AdditionalPropertiesFilesIntegrationTest.class);
+
+ @Value("${baeldung.additionalProperty}")
+ private String additionalProperty;
+
+ @Value("${baeldung.otherProperty}")
+ private String otherProperty;
+
+ @Test
+ public void givenMultidocumentPropertiesFileWhenBootContextLoadedThenDocumentProcessedCorrectly() {
+ assertThat(additionalProperty).isEqualTo("additionalValue2");
+ assertThat(otherProperty).isEqualTo("latterValue");
+ }
+}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/additionalproperties/AdditionalPropertiesTestConfig.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/additionalproperties/AdditionalPropertiesTestConfig.java
new file mode 100644
index 0000000000..9b3483a6c1
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/additionalproperties/AdditionalPropertiesTestConfig.java
@@ -0,0 +1,10 @@
+package com.baeldung.properties.additionalproperties;
+
+import org.springframework.context.annotation.ComponentScan;
+import org.springframework.context.annotation.Configuration;
+
+@Configuration
+@ComponentScan("com.baeldung.properties.additionalproperties")
+public class AdditionalPropertiesTestConfig {
+
+}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/basic/PropertiesWithMultipleXmlsIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/basic/PropertiesWithMultipleXmlsIntegrationTest.java
deleted file mode 100644
index c3af2dc1d8..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/basic/PropertiesWithMultipleXmlsIntegrationTest.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.baeldung.properties.basic;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.core.env.Environment;
-import org.springframework.test.context.ContextConfiguration;
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
-
-@RunWith(SpringJUnit4ClassRunner.class)
-@ContextConfiguration(locations = { "classpath:basicConfigForPropertiesOne.xml", "classpath:basicConfigForPropertiesTwo.xml" })
-public class PropertiesWithMultipleXmlsIntegrationTest {
-
- @Autowired
- private Environment env;
-
- @Value("${key.something}")
- private String injectedProperty;
-
- @Test
- public final void givenContextIsInitialized_thenNoException() {
- System.out.println("in test via @Value: " + injectedProperty);
- System.out.println("in test Environment: " + env.getProperty("key.something"));
- }
-
-}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/basic/PropertiesWithXmlIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/basic/PropertiesWithXmlIntegrationTest.java
deleted file mode 100644
index 85c4ac34e2..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/basic/PropertiesWithXmlIntegrationTest.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.baeldung.properties.basic;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.core.env.Environment;
-import org.springframework.test.context.ContextConfiguration;
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
-
-@RunWith(SpringJUnit4ClassRunner.class)
-@ContextConfiguration(locations = "classpath:basicConfigForProperties.xml")
-public class PropertiesWithXmlIntegrationTest {
-
- @Autowired
- private Environment env;
-
- @Value("${key.something}")
- private String injectedProperty;
-
- @Test
- public final void givenContextIsInitialized_thenNoException() {
- System.out.println("in test via @Value: " + injectedProperty);
- System.out.println("in test Environment: " + env.getProperty("key.something"));
- }
-
-}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/external/ExternalPropertiesWithMultipleXmlsIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/external/ExternalPropertiesWithMultipleXmlsIntegrationTest.java
deleted file mode 100644
index 018c655ec2..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/external/ExternalPropertiesWithMultipleXmlsIntegrationTest.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package com.baeldung.properties.external;
-
-import org.junit.Ignore;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.core.env.Environment;
-import org.springframework.test.context.ContextConfiguration;
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
-import org.springframework.test.context.support.AnnotationConfigContextLoader;
-
-import com.baeldung.properties.external.ExternalPropertiesWithXmlConfigOne;
-import com.baeldung.properties.external.ExternalPropertiesWithXmlConfigTwo;
-
-@RunWith(SpringJUnit4ClassRunner.class)
-@ContextConfiguration(classes = { ExternalPropertiesWithXmlConfigOne.class, ExternalPropertiesWithXmlConfigTwo.class }, loader = AnnotationConfigContextLoader.class)
-@Ignore("manual only")
-public class ExternalPropertiesWithMultipleXmlsIntegrationTest {
-
- @Autowired
- private Environment env;
-
- @Value("${key.something}")
- private String injectedProperty;
-
- @Value("${external.something}")
- private String injectedExternalProperty;
-
- @Test
- public final void givenContextIsInitialized_thenNoException() {
- System.out.println("in test via @Value: " + injectedProperty);
- System.out.println("in test Environment: " + env.getProperty("key.something"));
-
- System.out.println("in test via @Value - external: " + injectedExternalProperty);
- System.out.println("in test Environment - external: " + env.getProperty("external.something"));
- }
-
-}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/external/ExternalPropertiesWithXmlManualTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/external/ExternalPropertiesWithXmlManualTest.java
deleted file mode 100644
index 4f0abbc12c..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/external/ExternalPropertiesWithXmlManualTest.java
+++ /dev/null
@@ -1,38 +0,0 @@
-package com.baeldung.properties.external;
-
-import org.junit.Ignore;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.core.env.Environment;
-import org.springframework.test.context.ContextConfiguration;
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
-import org.springframework.test.context.support.AnnotationConfigContextLoader;
-
-import com.baeldung.properties.external.ExternalPropertiesWithXmlConfig;
-
-@RunWith(SpringJUnit4ClassRunner.class)
-@ContextConfiguration(classes = { ExternalPropertiesWithXmlConfig.class }, loader = AnnotationConfigContextLoader.class)
-@Ignore("manual only")
-public class ExternalPropertiesWithXmlManualTest {
-
- @Autowired
- private Environment env;
-
- @Value("${key.something}")
- private String injectedProperty;
-
- @Value("${external.something}")
- private String injectedExternalProperty;
-
- @Test
- public final void givenContextIsInitialized_thenNoException() {
- System.out.println("in test via @Value: " + injectedProperty);
- System.out.println("in test Environment: " + env.getProperty("key.something"));
-
- System.out.println("in test via @Value - external: " + injectedExternalProperty);
- System.out.println("in test Environment - external: " + env.getProperty("external.something"));
- }
-
-}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentPropertiesFileIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentPropertiesFileIntegrationTest.java
new file mode 100644
index 0000000000..683b0b86ab
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentPropertiesFileIntegrationTest.java
@@ -0,0 +1,25 @@
+package com.baeldung.properties.multidocument;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import org.junit.jupiter.api.Test;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.ActiveProfiles;
+
+@ActiveProfiles("default")
+@SpringBootTest(classes = { MultidocumentTestConfig.class })
+public class MultidocumentPropertiesFileIntegrationTest {
+
+ Logger logger = LoggerFactory.getLogger(MultidocumentPropertiesFileIntegrationTest.class);
+
+ @Value("${baeldung.customProperty}")
+ private String customProperty;
+
+ @Test
+ public void givenMultidocumentPropertiesFileWhenBootContextLoadedThenDocumentProcessedCorrectly() {
+ assertThat(customProperty).isEqualTo("valueDefault");
+ }
+}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentPropertiesFileWithDevProfileIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentPropertiesFileWithDevProfileIntegrationTest.java
new file mode 100644
index 0000000000..3771bdb1c7
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentPropertiesFileWithDevProfileIntegrationTest.java
@@ -0,0 +1,25 @@
+package com.baeldung.properties.multidocument;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import org.junit.jupiter.api.Test;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.ActiveProfiles;
+
+@ActiveProfiles("test")
+@SpringBootTest(classes = { MultidocumentTestConfig.class })
+public class MultidocumentPropertiesFileWithDevProfileIntegrationTest {
+
+ Logger logger = LoggerFactory.getLogger(MultidocumentPropertiesFileWithDevProfileIntegrationTest.class);
+
+ @Value("${baeldung.customProperty}")
+ private String customProperty;
+
+ @Test
+ public void givenMultidocumentPropertiesFileWhenBootContextLoadedThenDocumentProcessedCorrectly() {
+ assertThat(customProperty).isEqualTo("valueTest");
+ }
+}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentPropertiesFileWithTestProfileIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentPropertiesFileWithTestProfileIntegrationTest.java
new file mode 100644
index 0000000000..b00dda19b7
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentPropertiesFileWithTestProfileIntegrationTest.java
@@ -0,0 +1,25 @@
+package com.baeldung.properties.multidocument;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+import org.junit.jupiter.api.Test;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.ActiveProfiles;
+
+@ActiveProfiles("dev")
+@SpringBootTest(classes = { MultidocumentTestConfig.class })
+public class MultidocumentPropertiesFileWithTestProfileIntegrationTest {
+
+ Logger logger = LoggerFactory.getLogger(MultidocumentPropertiesFileWithTestProfileIntegrationTest.class);
+
+ @Value("${baeldung.customProperty}")
+ private String customProperty;
+
+ @Test
+ public void givenMultidocumentPropertiesFileWhenBootContextLoadedThenDocumentProcessedCorrectly() {
+ assertThat(customProperty).isEqualTo("valueDev");
+ }
+}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentTestConfig.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentTestConfig.java
new file mode 100644
index 0000000000..6f80cb70e7
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multidocument/MultidocumentTestConfig.java
@@ -0,0 +1,10 @@
+package com.baeldung.properties.multidocument;
+
+import org.springframework.context.annotation.ComponentScan;
+import org.springframework.context.annotation.Configuration;
+
+@Configuration
+@ComponentScan("com.baeldung.properties.multidocument")
+public class MultidocumentTestConfig {
+
+}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multiple/MultiplePlaceholdersJavaConfigIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multiple/MultiplePlaceholdersJavaConfigIntegrationTest.java
index 8ebda90321..6c88623ab7 100644
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multiple/MultiplePlaceholdersJavaConfigIntegrationTest.java
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multiple/MultiplePlaceholdersJavaConfigIntegrationTest.java
@@ -4,12 +4,11 @@ import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.test.context.junit.jupiter.SpringJUnitConfig;
-import com.baeldung.properties.spring.PropertyPlaceholderConfig;
import com.baeldung.properties.spring.PropertySourcesPlaceholderConfig;
import static org.assertj.core.api.Assertions.assertThat;
-@SpringJUnitConfig({PropertyPlaceholderConfig.class, PropertySourcesPlaceholderConfig.class})
+@SpringJUnitConfig({PropertySourcesPlaceholderConfig.class})
public class MultiplePlaceholdersJavaConfigIntegrationTest {
@Value("${key.something}")
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multiple/MultiplePlaceholdersXmlConfigIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multiple/MultiplePlaceholdersXmlConfigIntegrationTest.java
deleted file mode 100644
index b863e2e080..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multiple/MultiplePlaceholdersXmlConfigIntegrationTest.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package com.baeldung.properties.multiple;
-
-import org.junit.jupiter.api.Test;
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.test.context.junit.jupiter.SpringJUnitConfig;
-
-import static org.assertj.core.api.Assertions.assertThat;
-
-
-@SpringJUnitConfig(locations = "classpath:configForPropertyPlaceholderBeans.xml")
-public class MultiplePlaceholdersXmlConfigIntegrationTest {
-
- @Value("${foo}")
- private String something;
-
- @Value("${key.something}")
- private String something2;
-
-
- @Test
- public void whenReadInjectedValues_thenGetCorrectValues() {
- assertThat(something).isEqualTo("bar");
- assertThat(something2).isEqualTo("val");
- }
-}
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multiple/MultiplePropertiesXmlConfigIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multiple/MultiplePropertiesXmlConfigIntegrationTest.java
deleted file mode 100644
index 2150d4b3ec..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/multiple/MultiplePropertiesXmlConfigIntegrationTest.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.baeldung.properties.multiple;
-
-import org.junit.jupiter.api.Test;
-import org.springframework.beans.factory.annotation.Value;
-import org.springframework.test.context.junit.jupiter.SpringJUnitConfig;
-
-import static org.assertj.core.api.Assertions.assertThat;
-
-@SpringJUnitConfig(locations = {"classpath:configForProperties.xml", "classpath:configForDbProperties.xml"})
-public class MultiplePropertiesXmlConfigIntegrationTest {
-
- @Value("${key.something}") private String something;
-
- @Value("${key.something2}") private String something2;
-
- @Value("${jdbc.url}") private String jdbcUrl;
-
- @Test
- public void whenReadInjectedValues_thenGetCorrectValues() {
- assertThat(something).isEqualTo("val");
- assertThat(something2).isEqualTo("val2");
- assertThat(jdbcUrl).isEqualTo("jdbc:postgresql:/localhost:5432");
- }
-}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/parentchild/ParentChildPropertyPlaceHolderPropertiesIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/parentchild/ParentChildPropertyPlaceHolderPropertiesIntegrationTest.java
deleted file mode 100644
index 374a502e5c..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/parentchild/ParentChildPropertyPlaceHolderPropertiesIntegrationTest.java
+++ /dev/null
@@ -1,51 +0,0 @@
-package com.baeldung.properties.parentchild;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNull;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.core.env.Environment;
-import org.springframework.test.context.ContextConfiguration;
-import org.springframework.test.context.ContextHierarchy;
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
-import org.springframework.test.context.web.WebAppConfiguration;
-import org.springframework.web.context.WebApplicationContext;
-
-import com.baeldung.properties.parentchild.config.ChildConfig2;
-import com.baeldung.properties.parentchild.config.ParentConfig2;
-
-@RunWith(SpringJUnit4ClassRunner.class)
-@WebAppConfiguration
-@ContextHierarchy({ @ContextConfiguration(classes = ParentConfig2.class), @ContextConfiguration(classes = ChildConfig2.class) })
-public class ParentChildPropertyPlaceHolderPropertiesIntegrationTest {
-
- @Autowired
- private WebApplicationContext wac;
-
- @Test
- public void givenPropertyPlaceHolder_whenGetPropertyUsingEnv_thenCorrect() {
- final Environment childEnv = wac.getEnvironment();
- final Environment parentEnv = wac.getParent().getEnvironment();
-
- assertNull(parentEnv.getProperty("parent.name"));
- assertNull(parentEnv.getProperty("child.name"));
-
- assertNull(childEnv.getProperty("parent.name"));
- assertNull(childEnv.getProperty("child.name"));
- }
-
- @Test
- public void givenPropertyPlaceHolder_whenGetPropertyUsingValueAnnotation_thenCorrect() {
- final ChildValueHolder childValueHolder = wac.getBean(ChildValueHolder.class);
- final ParentValueHolder parentValueHolder = wac.getParent().getBean(ParentValueHolder.class);
-
- assertEquals(parentValueHolder.getParentName(), "parent");
- assertEquals(parentValueHolder.getChildName(), "-");
-
- assertEquals(childValueHolder.getParentName(), "-");
- assertEquals(childValueHolder.getChildName(), "child");
- }
-
-}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/parentchild/config/ChildConfig2.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/parentchild/config/ChildConfig2.java
deleted file mode 100644
index a506060d1c..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/parentchild/config/ChildConfig2.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.baeldung.properties.parentchild.config;
-
-import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.core.io.ClassPathResource;
-
-import com.baeldung.properties.parentchild.ChildValueHolder;
-
-@Configuration
-public class ChildConfig2 {
-
- @Bean
- public ChildValueHolder childValueHolder() {
- return new ChildValueHolder();
- }
-
- @Bean
- public static PropertyPlaceholderConfigurer properties() {
- final PropertyPlaceholderConfigurer ppc = new PropertyPlaceholderConfigurer();
- ppc.setLocations(new ClassPathResource("child.properties"));
- return ppc;
- }
-}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/parentchild/config/ParentConfig2.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/parentchild/config/ParentConfig2.java
deleted file mode 100644
index f5376e0c8e..0000000000
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/properties/parentchild/config/ParentConfig2.java
+++ /dev/null
@@ -1,24 +0,0 @@
-package com.baeldung.properties.parentchild.config;
-
-import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.core.io.ClassPathResource;
-
-import com.baeldung.properties.parentchild.ParentValueHolder;
-
-@Configuration
-public class ParentConfig2 {
-
- @Bean
- public ParentValueHolder parentValueHolder() {
- return new ParentValueHolder();
- }
-
- @Bean
- public static PropertyPlaceholderConfigurer properties() {
- final PropertyPlaceholderConfigurer ppc = new PropertyPlaceholderConfigurer();
- ppc.setLocations(new ClassPathResource("parent.properties"));
- return ppc;
- }
-}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/test/IntegrationTestSuite.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/test/IntegrationTestSuite.java
index 0e0f8f6230..9a1eccb439 100644
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/test/IntegrationTestSuite.java
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/test/IntegrationTestSuite.java
@@ -5,22 +5,12 @@ import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
import com.baeldung.properties.basic.ExtendedPropertiesWithJavaIntegrationTest;
-import com.baeldung.properties.basic.PropertiesWithMultipleXmlsIntegrationTest;
-import com.baeldung.properties.basic.PropertiesWithXmlIntegrationTest;
import com.baeldung.properties.external.ExternalPropertiesWithJavaIntegrationTest;
-import com.baeldung.properties.external.ExternalPropertiesWithMultipleXmlsIntegrationTest;
-import com.baeldung.properties.external.ExternalPropertiesWithXmlManualTest;
-import com.baeldung.properties.multiple.MultiplePropertiesXmlConfigIntegrationTest;
-import com.baeldung.properties.multiple.MultiplePlaceholdersXmlConfigIntegrationTest;
@RunWith(Suite.class)
@SuiteClasses({ //@formatter:off
- PropertiesWithXmlIntegrationTest.class,
ExternalPropertiesWithJavaIntegrationTest.class,
- ExternalPropertiesWithMultipleXmlsIntegrationTest.class,
- ExternalPropertiesWithXmlManualTest.class,
- ExtendedPropertiesWithJavaIntegrationTest.class, MultiplePropertiesXmlConfigIntegrationTest.class,
- PropertiesWithMultipleXmlsIntegrationTest.class, MultiplePlaceholdersXmlConfigIntegrationTest.class
+ ExtendedPropertiesWithJavaIntegrationTest.class,
})// @formatter:on
public final class IntegrationTestSuite {
//
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/yaml/YAMLDevIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/yaml/YAMLDevIntegrationTest.java
index 8dfc4c2208..5e6ebf6d81 100644
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/yaml/YAMLDevIntegrationTest.java
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/yaml/YAMLDevIntegrationTest.java
@@ -21,5 +21,6 @@ class YAMLDevIntegrationTest {
void whenProfileTest_thenNameTesting() {
assertTrue("development".equalsIgnoreCase(config.getEnvironment()));
assertTrue("dev-YAML".equalsIgnoreCase(config.getName()));
+ assertTrue(config.isEnabled());
}
}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/yaml/YAMLIntegrationTest.java b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/yaml/YAMLIntegrationTest.java
index 19412c91f5..278307504b 100644
--- a/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/yaml/YAMLIntegrationTest.java
+++ b/spring-boot-modules/spring-boot-properties/src/test/java/com/baeldung/yaml/YAMLIntegrationTest.java
@@ -1,5 +1,6 @@
package com.baeldung.yaml;
+import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.junit.jupiter.api.Test;
@@ -22,5 +23,6 @@ class YAMLIntegrationTest {
assertTrue("testing".equalsIgnoreCase(config.getEnvironment()));
assertTrue("test-YAML".equalsIgnoreCase(config.getName()));
assertTrue("myurl".equalsIgnoreCase(config.getComponent().getIdm().getUrl()));
+ assertFalse(config.isEnabled());
}
}
diff --git a/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application b/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application
new file mode 100644
index 0000000000..46f3c2b1a3
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application
@@ -0,0 +1,7 @@
+baeldung:
+ additionalProperty: additionalValue
+ otherProperty: otherValue
+
+spring:
+ config:
+ import: classpath:additional-application2.properties
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application-properties/application.properties b/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application-properties/application.properties
new file mode 100644
index 0000000000..b547d16eff
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application-properties/application.properties
@@ -0,0 +1 @@
+baeldung.otherProperty=latterValue
diff --git a/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application.properties b/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application.properties
new file mode 100644
index 0000000000..2edbe692de
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application.properties
@@ -0,0 +1,5 @@
+spring.config.activate.on-profile=test
+baeldung.customProperty=valueTest
+#---
+spring.config.activate.on-profile=prod
+baeldung.customProperty=valueProd
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application2.properties b/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application2.properties
new file mode 100644
index 0000000000..c6cb95ec5b
--- /dev/null
+++ b/spring-boot-modules/spring-boot-properties/src/test/resources/additional-application2.properties
@@ -0,0 +1 @@
+baeldung.additionalProperty=additionalValue2
\ No newline at end of file
diff --git a/spring-boot-modules/spring-boot-properties/src/test/resources/application.properties b/spring-boot-modules/spring-boot-properties/src/test/resources/application.properties
index af38556f81..3f6c678b97 100644
--- a/spring-boot-modules/spring-boot-properties/src/test/resources/application.properties
+++ b/spring-boot-modules/spring-boot-properties/src/test/resources/application.properties
@@ -2,4 +2,10 @@ management.endpoints.web.exposure.include=refresh
spring.properties.refreshDelay=1000
spring.config.location=file:extra.properties
spring.main.allow-bean-definition-overriding=true
+spring.config.import=classpath:additional-application.properties,classpath:additional-application[.yml],optional:file:./external.properties,classpath:additional-application-properties/
+baeldung.customProperty=valueDefault
+#---
+spring.config.activate.on-profile=dev
+baeldung.customProperty=valueDev
+
diff --git a/spring-boot-modules/spring-boot-runtime/README.md b/spring-boot-modules/spring-boot-runtime/README.md
index 62727ecc76..271093421c 100644
--- a/spring-boot-modules/spring-boot-runtime/README.md
+++ b/spring-boot-modules/spring-boot-runtime/README.md
@@ -10,4 +10,5 @@ This module contains articles about administering a Spring Boot runtime
- [Spring Boot Embedded Tomcat Logs](https://www.baeldung.com/spring-boot-embedded-tomcat-logs)
- [Project Configuration with Spring](https://www.baeldung.com/project-configuration-with-spring)
- [CORS with Spring](https://www.baeldung.com/spring-cors)
- - [Spring – Log Incoming Requests](https://www.baeldung.com/spring-http-logging)
\ No newline at end of file
+ - [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)
diff --git a/spring-boot-modules/spring-boot-runtime/src/main/resources/application-tomcat.properties b/spring-boot-modules/spring-boot-runtime/src/main/resources/application-tomcat.properties
index 42d03a066e..ba91c5f3b2 100644
--- a/spring-boot-modules/spring-boot-runtime/src/main/resources/application-tomcat.properties
+++ b/spring-boot-modules/spring-boot-runtime/src/main/resources/application-tomcat.properties
@@ -9,7 +9,7 @@ server.error.include-exception=true
server.error.include-stacktrace=always
## Server connections configuration
-server.tomcat.max-threads=200
+server.tomcat.threads.max=200
server.connection-timeout=5s
server.max-http-header-size=8KB
server.tomcat.max-swallow-size=2MB
diff --git a/spring-boot-modules/spring-boot-security/README.md b/spring-boot-modules/spring-boot-security/README.md
index 7229ba0f4a..2c9d37eac0 100644
--- a/spring-boot-modules/spring-boot-security/README.md
+++ b/spring-boot-modules/spring-boot-security/README.md
@@ -8,6 +8,8 @@ This module contains articles about Spring Boot Security
- [Spring Security for Spring Boot Integration Tests](https://www.baeldung.com/spring-security-integration-tests)
- [Introduction to Spring Security Taglibs](https://www.baeldung.com/spring-security-taglibs)
- [Guide to @CurrentSecurityContext in Spring Security](https://www.baeldung.com/spring-currentsecuritycontext)
+- [Disable Security for a Profile in Spring Boot](https://www.baeldung.com/spring-security-disable-profile)
+
### Spring Boot Security Auto-Configuration
diff --git a/spring-5-security/src/main/java/com/baeldung/securityprofile/Application.java b/spring-boot-modules/spring-boot-security/src/main/java/com/baeldung/securityprofile/Application.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/securityprofile/Application.java
rename to spring-boot-modules/spring-boot-security/src/main/java/com/baeldung/securityprofile/Application.java
diff --git a/spring-5-security/src/main/java/com/baeldung/securityprofile/ApplicationNoSecurity.java b/spring-boot-modules/spring-boot-security/src/main/java/com/baeldung/securityprofile/ApplicationNoSecurity.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/securityprofile/ApplicationNoSecurity.java
rename to spring-boot-modules/spring-boot-security/src/main/java/com/baeldung/securityprofile/ApplicationNoSecurity.java
diff --git a/spring-5-security/src/main/java/com/baeldung/securityprofile/ApplicationSecurity.java b/spring-boot-modules/spring-boot-security/src/main/java/com/baeldung/securityprofile/ApplicationSecurity.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/securityprofile/ApplicationSecurity.java
rename to spring-boot-modules/spring-boot-security/src/main/java/com/baeldung/securityprofile/ApplicationSecurity.java
diff --git a/spring-5-security/src/main/java/com/baeldung/securityprofile/EmployeeController.java b/spring-boot-modules/spring-boot-security/src/main/java/com/baeldung/securityprofile/EmployeeController.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/securityprofile/EmployeeController.java
rename to spring-boot-modules/spring-boot-security/src/main/java/com/baeldung/securityprofile/EmployeeController.java
diff --git a/spring-5-security/src/test/java/com/baeldung/securityprofile/EmployeeControllerNoSecurityUnitTest.java b/spring-boot-modules/spring-boot-security/src/test/java/com/baeldung/securityprofile/EmployeeControllerNoSecurityUnitTest.java
similarity index 100%
rename from spring-5-security/src/test/java/com/baeldung/securityprofile/EmployeeControllerNoSecurityUnitTest.java
rename to spring-boot-modules/spring-boot-security/src/test/java/com/baeldung/securityprofile/EmployeeControllerNoSecurityUnitTest.java
diff --git a/spring-5-security/src/test/java/com/baeldung/securityprofile/EmployeeControllerUnitTest.java b/spring-boot-modules/spring-boot-security/src/test/java/com/baeldung/securityprofile/EmployeeControllerUnitTest.java
similarity index 100%
rename from spring-5-security/src/test/java/com/baeldung/securityprofile/EmployeeControllerUnitTest.java
rename to spring-boot-modules/spring-boot-security/src/test/java/com/baeldung/securityprofile/EmployeeControllerUnitTest.java
diff --git a/spring-boot-modules/spring-boot-springdoc/pom.xml b/spring-boot-modules/spring-boot-springdoc/pom.xml
index ed272200da..259383a1d2 100644
--- a/spring-boot-modules/spring-boot-springdoc/pom.xml
+++ b/spring-boot-modules/spring-boot-springdoc/pom.xml
@@ -81,7 +81,7 @@
org.jetbrains.kotlin
- kotlin-stdlib-jre8
+ kotlin-stdlib-jdk8
${kotlin.version}
@@ -171,9 +171,9 @@
1.8
5.2.10.Final
- 1.2.32
+ 1.5.2
1.5.6
- 1.2.71
+ 1.4.0
${project.build.directory}/generated-snippets
@@ -185,7 +185,7 @@
org.springframework.boot
spring-boot-maven-plugin
- 2.2.2.RELEASE
+ ${spring-boot.version}
pre-integration-test
diff --git a/spring-boot-modules/spring-boot-springdoc/src/main/java/com/baeldung/springdoc/controller/BookController.java b/spring-boot-modules/spring-boot-springdoc/src/main/java/com/baeldung/springdoc/controller/BookController.java
index 326a97149b..f2355a2ec3 100644
--- a/spring-boot-modules/spring-boot-springdoc/src/main/java/com/baeldung/springdoc/controller/BookController.java
+++ b/spring-boot-modules/spring-boot-springdoc/src/main/java/com/baeldung/springdoc/controller/BookController.java
@@ -5,6 +5,17 @@ import java.util.Collection;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
+import com.baeldung.springdoc.exception.BookNotFoundException;
+import com.baeldung.springdoc.model.Book;
+import com.baeldung.springdoc.repository.BookRepository;
+import io.swagger.v3.oas.annotations.Operation;
+import io.swagger.v3.oas.annotations.Parameter;
+import io.swagger.v3.oas.annotations.media.Content;
+import io.swagger.v3.oas.annotations.media.Schema;
+import io.swagger.v3.oas.annotations.responses.ApiResponse;
+import io.swagger.v3.oas.annotations.responses.ApiResponses;
+import org.springdoc.api.annotations.ParameterObject;
+
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
@@ -21,17 +32,6 @@ import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
-import com.baeldung.springdoc.exception.BookNotFoundException;
-import com.baeldung.springdoc.model.Book;
-import com.baeldung.springdoc.repository.BookRepository;
-
-import io.swagger.v3.oas.annotations.Operation;
-import io.swagger.v3.oas.annotations.Parameter;
-import io.swagger.v3.oas.annotations.media.Content;
-import io.swagger.v3.oas.annotations.media.Schema;
-import io.swagger.v3.oas.annotations.responses.ApiResponse;
-import io.swagger.v3.oas.annotations.responses.ApiResponses;
-
@RestController
@RequestMapping("/api/book")
public class BookController {
@@ -58,7 +58,7 @@ public class BookController {
}
@GetMapping("/filter")
- public Page filterBooks(Pageable pageable) {
+ public Page filterBooks(@ParameterObject Pageable pageable) {
return repository.getBooks(pageable);
}
diff --git a/spring-boot-modules/spring-boot-swagger-jwt/README.md b/spring-boot-modules/spring-boot-swagger-jwt/README.md
new file mode 100644
index 0000000000..f04dd5957a
--- /dev/null
+++ b/spring-boot-modules/spring-boot-swagger-jwt/README.md
@@ -0,0 +1,3 @@
+## Relevant Articles:
+
+- [Set JWT with Spring Boot and Swagger UI](https://www.baeldung.com/spring-boot-swagger-jwt)
diff --git a/spring-boot-modules/spring-boot-swagger-jwt/pom.xml b/spring-boot-modules/spring-boot-swagger-jwt/pom.xml
new file mode 100644
index 0000000000..d71d7342ce
--- /dev/null
+++ b/spring-boot-modules/spring-boot-swagger-jwt/pom.xml
@@ -0,0 +1,41 @@
+
+
+ 4.0.0
+
+
+ com.baeldung.spring-boot-modules
+ spring-boot-modules
+ 1.0.0-SNAPSHOT
+ ../
+
+
+ spring-boot-swagger-jwt
+ 0.1.0-SNAPSHOT
+ spring-boot-swagger-jwt
+ jar
+
+ Module For Spring Boot Swagger UI
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ io.springfox
+ springfox-boot-starter
+ 3.0.0
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
diff --git a/spring-boot-modules/spring-boot-swagger-jwt/src/main/java/com/baeldung/swaggerjwt/SpringBootSwaggerUIApplication.java b/spring-boot-modules/spring-boot-swagger-jwt/src/main/java/com/baeldung/swaggerjwt/SpringBootSwaggerUIApplication.java
new file mode 100644
index 0000000000..e9e5d24b54
--- /dev/null
+++ b/spring-boot-modules/spring-boot-swagger-jwt/src/main/java/com/baeldung/swaggerjwt/SpringBootSwaggerUIApplication.java
@@ -0,0 +1,13 @@
+package com.baeldung.swaggerjwt;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class SpringBootSwaggerUIApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(SpringBootSwaggerUIApplication.class, args);
+ }
+
+}
diff --git a/spring-boot-modules/spring-boot-swagger-jwt/src/main/java/com/baeldung/swaggerjwt/configuration/SwaggerConfiguration.java b/spring-boot-modules/spring-boot-swagger-jwt/src/main/java/com/baeldung/swaggerjwt/configuration/SwaggerConfiguration.java
new file mode 100644
index 0000000000..240a21cd21
--- /dev/null
+++ b/spring-boot-modules/spring-boot-swagger-jwt/src/main/java/com/baeldung/swaggerjwt/configuration/SwaggerConfiguration.java
@@ -0,0 +1,62 @@
+package com.baeldung.swaggerjwt.configuration;
+
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import springfox.documentation.builders.PathSelectors;
+import springfox.documentation.builders.RequestHandlerSelectors;
+import springfox.documentation.service.*;
+import springfox.documentation.spi.DocumentationType;
+import springfox.documentation.spi.service.contexts.SecurityContext;
+import springfox.documentation.spring.web.plugins.Docket;
+
+import java.util.Arrays;
+import java.util.Collections;
+import java.util.List;
+
+@Configuration
+public class SwaggerConfiguration {
+
+ public static final String AUTHORIZATION_HEADER = "Authorization";
+
+ private ApiInfo apiInfo() {
+ return new ApiInfo("My REST API",
+ "Some custom description of API.",
+ "1.0",
+ "Terms of service",
+ new Contact("Sallo Szrajbman", "www.baeldung.com", "salloszraj@gmail.com"),
+ "License of API",
+ "API license URL",
+ Collections.emptyList());
+ }
+
+ @Bean
+ public Docket api() {
+ return new Docket(DocumentationType.SWAGGER_2)
+ .apiInfo(apiInfo())
+ .securityContexts(Arrays.asList(securityContext()))
+ .securitySchemes(Arrays.asList(apiKey()))
+ .select()
+ .apis(RequestHandlerSelectors.any())
+ .paths(PathSelectors.any())
+ .build();
+ }
+
+ private ApiKey apiKey() {
+ return new ApiKey("JWT", AUTHORIZATION_HEADER, "header");
+ }
+
+ private SecurityContext securityContext() {
+ return SecurityContext.builder()
+ .securityReferences(defaultAuth())
+ .build();
+ }
+
+ List defaultAuth() {
+ AuthorizationScope authorizationScope
+ = new AuthorizationScope("global", "accessEverything");
+ AuthorizationScope[] authorizationScopes = new AuthorizationScope[1];
+ authorizationScopes[0] = authorizationScope;
+ return Arrays.asList(new SecurityReference("JWT", authorizationScopes));
+ }
+
+}
diff --git a/spring-boot-modules/spring-boot-swagger-jwt/src/main/java/com/baeldung/swaggerjwt/controller/ClientsRestController.java b/spring-boot-modules/spring-boot-swagger-jwt/src/main/java/com/baeldung/swaggerjwt/controller/ClientsRestController.java
new file mode 100644
index 0000000000..f60ba2448a
--- /dev/null
+++ b/spring-boot-modules/spring-boot-swagger-jwt/src/main/java/com/baeldung/swaggerjwt/controller/ClientsRestController.java
@@ -0,0 +1,25 @@
+package com.baeldung.swaggerjwt.controller;
+
+import java.util.Arrays;
+import java.util.List;
+
+import com.baeldung.swaggerjwt.configuration.SwaggerConfiguration;
+import io.swagger.annotations.Api;
+import org.springframework.http.HttpHeaders;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestHeader;
+import org.springframework.web.bind.annotation.RestController;
+
+import io.swagger.annotations.ApiOperation;
+
+@RestController(value = "/clients")
+@Api( tags = "Clients")
+public class ClientsRestController {
+
+ @ApiOperation(value = "This method is used to get the clients.")
+ @GetMapping
+ public List getClients() {
+ return Arrays.asList("First Client", "Second Client");
+ }
+
+}
diff --git a/spring-boot-modules/spring-boot-swagger-jwt/src/main/resources/application.properties b/spring-boot-modules/spring-boot-swagger-jwt/src/main/resources/application.properties
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/spring-boot-modules/spring-boot-testing/pom.xml b/spring-boot-modules/spring-boot-testing/pom.xml
index 5bf626f165..50a1ace2fa 100644
--- a/spring-boot-modules/spring-boot-testing/pom.xml
+++ b/spring-boot-modules/spring-boot-testing/pom.xml
@@ -51,6 +51,17 @@
spring-boot-starter-test
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
+
+ org.hamcrest
+ hamcrest-core
+
+
+
diff --git a/spring-boot-modules/spring-boot-testing/src/test/java/com/baeldung/boot/configurationproperties/BindingYMLPropertiesUnitTest.java b/spring-boot-modules/spring-boot-testing/src/test/java/com/baeldung/boot/configurationproperties/BindingYMLPropertiesUnitTest.java
index 5543f5e9e8..99c128997e 100644
--- a/spring-boot-modules/spring-boot-testing/src/test/java/com/baeldung/boot/configurationproperties/BindingYMLPropertiesUnitTest.java
+++ b/spring-boot-modules/spring-boot-testing/src/test/java/com/baeldung/boot/configurationproperties/BindingYMLPropertiesUnitTest.java
@@ -7,13 +7,13 @@ import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
-import org.springframework.boot.test.context.ConfigFileApplicationContextInitializer;
+import org.springframework.boot.test.context.ConfigDataApplicationContextInitializer;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit.jupiter.SpringExtension;
@ExtendWith(SpringExtension.class)
-@ContextConfiguration(initializers = ConfigFileApplicationContextInitializer.class)
+@ContextConfiguration(initializers = ConfigDataApplicationContextInitializer.class)
@EnableConfigurationProperties(value = ServerConfig.class)
@ActiveProfiles("test")
public class BindingYMLPropertiesUnitTest {
diff --git a/spring-boot-modules/spring-boot-testing/src/test/java/com/baeldung/prevent/commandline/application/runner/execution/LoadSpringContextIntegrationTest.java b/spring-boot-modules/spring-boot-testing/src/test/java/com/baeldung/prevent/commandline/application/runner/execution/LoadSpringContextIntegrationTest.java
index 6698094550..483c67b7a2 100644
--- a/spring-boot-modules/spring-boot-testing/src/test/java/com/baeldung/prevent/commandline/application/runner/execution/LoadSpringContextIntegrationTest.java
+++ b/spring-boot-modules/spring-boot-testing/src/test/java/com/baeldung/prevent/commandline/application/runner/execution/LoadSpringContextIntegrationTest.java
@@ -4,7 +4,7 @@ import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.boot.ApplicationRunner;
import org.springframework.boot.CommandLineRunner;
-import org.springframework.boot.test.context.ConfigFileApplicationContextInitializer;
+import org.springframework.boot.test.context.ConfigDataApplicationContextInitializer;
import org.springframework.boot.test.mock.mockito.SpyBean;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit.jupiter.SpringExtension;
@@ -19,7 +19,7 @@ import static org.mockito.Mockito.verify;
@ExtendWith(SpringExtension.class)
@ContextConfiguration(classes = { ApplicationCommandLineRunnerApp.class },
- initializers = ConfigFileApplicationContextInitializer.class)
+ initializers = ConfigDataApplicationContextInitializer.class)
public class LoadSpringContextIntegrationTest {
@SpyBean
TaskService taskService;
diff --git a/spring-boot-modules/spring-boot-testing/src/test/resources/application.yml b/spring-boot-modules/spring-boot-testing/src/test/resources/application.yml
index 1b46b0f1ff..056b5baffc 100644
--- a/spring-boot-modules/spring-boot-testing/src/test/resources/application.yml
+++ b/spring-boot-modules/spring-boot-testing/src/test/resources/application.yml
@@ -1,5 +1,7 @@
spring:
- profiles: test
+ config:
+ activate:
+ on-profile: test
server:
address:
ip: 192.168.0.4
@@ -7,7 +9,9 @@ server:
imgs: /etc/test/imgs
---
spring:
- profiles: dev
+ config:
+ activate:
+ on-profile: dev
server:
address:
ip: 192.168.0.5
diff --git a/spring-boot-modules/spring-boot-vue/src/test/java/org/baeldung/SpringContextTest.java b/spring-boot-modules/spring-boot-vue/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-boot-modules/spring-boot-vue/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-boot-modules/spring-boot-vue/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-boot-modules/spring-boot/pom.xml b/spring-boot-modules/spring-boot/pom.xml
index c1f1ea3072..9023ae92f3 100644
--- a/spring-boot-modules/spring-boot/pom.xml
+++ b/spring-boot-modules/spring-boot/pom.xml
@@ -1,7 +1,7 @@
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
@@ -58,6 +58,17 @@
spring-boot-starter-test
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
+
+ org.hamcrest
+ hamcrest-core
+
+
+
io.dropwizard.metrics
diff --git a/spring-boot-modules/spring-boot/src/test/resources/GraphQL collection.postman_collection.json b/spring-boot-modules/spring-boot/src/test/resources/GraphQL collection.postman_collection.json
deleted file mode 100644
index f19bc1febb..0000000000
--- a/spring-boot-modules/spring-boot/src/test/resources/GraphQL collection.postman_collection.json
+++ /dev/null
@@ -1,169 +0,0 @@
-{
- "info": {
- "_postman_id": "910d9690-f629-4491-bbbd-adb30982a386",
- "name": "GraphQL collection",
- "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
- },
- "item": [
- {
- "name": "mutations",
- "item": [
- {
- "name": "writePost",
- "request": {
- "method": "POST",
- "header": [],
- "body": {
- "mode": "graphql",
- "graphql": {
- "query": "mutation writePost ($title: String!, $text: String!, $category: String) {\n writePost (title: $title, text: $text, category: $category) {\n id\n title\n text\n category\n }\n}",
- "variables": "{\n \"title\": \"\",\n \"text\": \"\",\n \"category\": \"\"\n}"
- },
- "options": {
- "graphql": {}
- }
- },
- "url": {
- "raw": "http://localhost:9090/springbootapp/graphql",
- "protocol": "http",
- "host": [
- "localhost"
- ],
- "port": "9090",
- "path": [
- "springbootapp",
- "graphql"
- ]
- }
- },
- "response": []
- }
- ],
- "protocolProfileBehavior": {}
- },
- {
- "name": "queries",
- "item": [
- {
- "name": "get recent posts",
- "request": {
- "method": "POST",
- "header": [],
- "body": {
- "mode": "graphql",
- "graphql": {
- "query": "{\r\n recentPosts(count: 10, offset: 0) {\r\n id\r\n title\r\n category\r\n text\r\n author {\r\n id\r\n name\r\n thumbnail\r\n }\r\n }\r\n}",
- "variables": ""
- }
- },
- "url": {
- "raw": "http://localhost:9090/springbootapp/graphql",
- "protocol": "http",
- "host": [
- "localhost"
- ],
- "port": "9090",
- "path": [
- "springbootapp",
- "graphql"
- ]
- }
- },
- "response": []
- },
- {
- "name": "recentPosts - variables",
- "request": {
- "method": "POST",
- "header": [],
- "body": {
- "mode": "graphql",
- "graphql": {
- "query": "query recentPosts ($count: Int, $offset: Int) {\n recentPosts (count: $count, offset: $offset) {\n id\n title\n text\n category\n }\n}",
- "variables": "{\n \"count\": 1,\n \"offset\": 0\n}"
- },
- "options": {
- "graphql": {}
- }
- },
- "url": {
- "raw": "http://localhost:9090/springbootapp/graphql",
- "protocol": "http",
- "host": [
- "localhost"
- ],
- "port": "9090",
- "path": [
- "springbootapp",
- "graphql"
- ]
- }
- },
- "response": []
- },
- {
- "name": "get recent posts - raw",
- "request": {
- "method": "POST",
- "header": [
- {
- "key": "Content-Type",
- "value": "application/graphql",
- "type": "text"
- }
- ],
- "body": {
- "mode": "raw",
- "raw": "query {\r\n recentPosts(count: 10, offset: 0) {\r\n id\r\n title\r\n category\r\n author {\r\n id\r\n name\r\n thumbnail\r\n }\r\n }\r\n}"
- },
- "url": {
- "raw": "http://localhost:9090/springbootapp/graphql",
- "protocol": "http",
- "host": [
- "localhost"
- ],
- "port": "9090",
- "path": [
- "springbootapp",
- "graphql"
- ]
- }
- },
- "response": []
- }
- ],
- "protocolProfileBehavior": {}
- }
- ],
- "event": [
- {
- "listen": "prerequest",
- "script": {
- "id": "b54f267b-c450-4f2d-8105-2f23bab4c922",
- "type": "text/javascript",
- "exec": [
- ""
- ]
- }
- },
- {
- "listen": "test",
- "script": {
- "id": "00b575be-03d4-4b29-b137-733ead139638",
- "type": "text/javascript",
- "exec": [
- ""
- ]
- }
- }
- ],
- "variable": [
- {
- "id": "20a274e5-6d51-40d6-81cb-af9eb115b21b",
- "key": "url",
- "value": "",
- "type": "string"
- }
- ],
- "protocolProfileBehavior": {}
-}
\ No newline at end of file
diff --git a/spring-cloud-bus/pom.xml b/spring-cloud-bus/pom.xml
index ec56e23ac7..15eed8dcf0 100644
--- a/spring-cloud-bus/pom.xml
+++ b/spring-cloud-bus/pom.xml
@@ -35,6 +35,7 @@
Hoxton.SR4
+ 2.3.3.RELEASE
diff --git a/spring-cloud/spring-cloud-config/client/pom.xml b/spring-cloud/spring-cloud-config/client/pom.xml
index 805a50bfdb..2400520d2b 100644
--- a/spring-cloud/spring-cloud-config/client/pom.xml
+++ b/spring-cloud/spring-cloud-config/client/pom.xml
@@ -1,7 +1,7 @@
+ xmlns="http://maven.apache.org/POM/4.0.0"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
client
client
@@ -26,6 +26,17 @@
spring-boot-starter-test
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
+
+ org.hamcrest
+ hamcrest-core
+
+
+
diff --git a/spring-cloud/spring-cloud-config/pom.xml b/spring-cloud/spring-cloud-config/pom.xml
index 7fb0c1fd68..bfe17044e0 100644
--- a/spring-cloud/spring-cloud-config/pom.xml
+++ b/spring-cloud/spring-cloud-config/pom.xml
@@ -33,8 +33,7 @@
- Hoxton.SR4
-
+ 2020.0.0
diff --git a/spring-cloud/spring-cloud-config/server/pom.xml b/spring-cloud/spring-cloud-config/server/pom.xml
index e32a473cd6..f0f1e43612 100644
--- a/spring-cloud/spring-cloud-config/server/pom.xml
+++ b/spring-cloud/spring-cloud-config/server/pom.xml
@@ -1,11 +1,11 @@
+ xmlns="http://maven.apache.org/POM/4.0.0"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
server
server
-
+
com.baeldung.spring.cloud
spring-cloud-config
@@ -30,6 +30,17 @@
spring-boot-starter-test
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
+
+ org.hamcrest
+ hamcrest-core
+
+
+
diff --git a/spring-cloud/spring-cloud-eureka/README.md b/spring-cloud/spring-cloud-eureka/README.md
index badf4c8d50..5fc96256f4 100644
--- a/spring-cloud/spring-cloud-eureka/README.md
+++ b/spring-cloud/spring-cloud-eureka/README.md
@@ -1,2 +1,3 @@
### Relevant Articles:
- [Introduction to Spring Cloud Netflix – Eureka](http://www.baeldung.com/spring-cloud-netflix-eureka)
+- [Integration Tests With Spring Cloud Netflix and Feign](https://www.baeldung.com/spring-cloud-feign-integration-tests)
diff --git a/spring-cloud/spring-cloud-eureka/pom.xml b/spring-cloud/spring-cloud-eureka/pom.xml
index 7af0c15352..9d7350e774 100644
--- a/spring-cloud/spring-cloud-eureka/pom.xml
+++ b/spring-cloud/spring-cloud-eureka/pom.xml
@@ -19,6 +19,7 @@
spring-cloud-eureka-server
spring-cloud-eureka-client
spring-cloud-eureka-feign-client
+ spring-cloud-eureka-feign-client-integration-test
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/pom.xml b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/pom.xml
new file mode 100644
index 0000000000..95b1275e2c
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/pom.xml
@@ -0,0 +1,97 @@
+
+
+ 4.0.0
+ spring-cloud-eureka-feign-client-integration-test
+ 1.0.0-SNAPSHOT
+ spring-cloud-eureka-feign-client-integration-test
+ jar
+ Spring Cloud Eureka - Feign Client Integration Tests
+
+
+ com.baeldung.spring.cloud
+ spring-cloud-eureka
+ 1.0.0-SNAPSHOT
+
+
+
+
+
+ org.junit
+ junit-bom
+ ${junit-jupiter.version}
+ pom
+ import
+
+
+ org.springframework.cloud
+ spring-cloud-starter-parent
+ ${spring-cloud-dependencies.version}
+ pom
+ import
+
+
+
+
+
+
+ org.springframework.cloud
+ spring-cloud-starter-openfeign
+
+
+
+ org.springframework.cloud
+ spring-cloud-starter-netflix-ribbon
+
+
+
+ org.springframework.cloud
+ spring-cloud-starter-netflix-eureka-client
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+ com.github.tomakehurst
+ wiremock
+ 2.27.2
+ test
+
+
+
+ org.projectlombok
+ lombok
+
+
+
+ org.testcontainers
+ testcontainers
+ 1.14.3
+ test
+
+
+
+ org.awaitility
+ awaitility
+ 4.0.3
+ test
+
+
+
+
+
+
+
+ maven-surefire-plugin
+
+ 1
+ false
+
+
+
+
+
+
diff --git a/persistence-modules/spring-data-jpa-query-2/src/main/java/com/baeldung/spring/data/jpa/query/datetime/Application.java b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/main/java/com/baeldung/spring/cloud/Application.java
similarity index 70%
rename from persistence-modules/spring-data-jpa-query-2/src/main/java/com/baeldung/spring/data/jpa/query/datetime/Application.java
rename to spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/main/java/com/baeldung/spring/cloud/Application.java
index 81e5a2f790..342e7e163b 100644
--- a/persistence-modules/spring-data-jpa-query-2/src/main/java/com/baeldung/spring/data/jpa/query/datetime/Application.java
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/main/java/com/baeldung/spring/cloud/Application.java
@@ -1,13 +1,15 @@
-package com.baeldung.spring.data.jpa.query.datetime;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-
-@SpringBootApplication
-public class Application {
-
- public static void main(String[] args) {
- SpringApplication.run(Application.class, args);
- }
-
-}
+package com.baeldung.spring.cloud;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.cloud.openfeign.EnableFeignClients;
+
+@EnableFeignClients
+@SpringBootApplication
+public class Application {
+
+ public static void main(String[] args) {
+ SpringApplication.run(Application.class, args);
+ }
+
+}
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/main/java/com/baeldung/spring/cloud/client/BooksClient.java b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/main/java/com/baeldung/spring/cloud/client/BooksClient.java
new file mode 100644
index 0000000000..a263624b28
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/main/java/com/baeldung/spring/cloud/client/BooksClient.java
@@ -0,0 +1,16 @@
+package com.baeldung.spring.cloud.client;
+
+import com.baeldung.spring.cloud.model.Book;
+import org.springframework.cloud.openfeign.FeignClient;
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import java.util.List;
+
+@FeignClient("books-service")
+//@FeignClient(value="simple-books-client", url="${book.service.url}")
+public interface BooksClient {
+
+ @RequestMapping("/books")
+ List getBooks();
+
+}
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/main/java/com/baeldung/spring/cloud/model/Book.java b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/main/java/com/baeldung/spring/cloud/model/Book.java
new file mode 100644
index 0000000000..64492f678d
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/main/java/com/baeldung/spring/cloud/model/Book.java
@@ -0,0 +1,15 @@
+package com.baeldung.spring.cloud.model;
+
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+@Data
+@NoArgsConstructor
+@AllArgsConstructor
+public class Book {
+
+ private String title;
+ private String author;
+
+}
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/BookMocks.java b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/BookMocks.java
new file mode 100644
index 0000000000..2cce72e6cb
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/BookMocks.java
@@ -0,0 +1,27 @@
+package com.baeldung.spring.cloud.client;
+
+import com.github.tomakehurst.wiremock.WireMockServer;
+import com.github.tomakehurst.wiremock.client.WireMock;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.MediaType;
+
+import java.io.IOException;
+
+import static java.nio.charset.Charset.defaultCharset;
+import static org.springframework.util.StreamUtils.copyToString;
+
+public class BookMocks {
+
+ public static void setupMockBooksResponse(WireMockServer mockService) throws IOException {
+ mockService.stubFor(WireMock.get(WireMock.urlEqualTo("/books"))
+ .willReturn(
+ WireMock.aResponse()
+ .withStatus(HttpStatus.OK.value())
+ .withHeader("Content-Type", MediaType.APPLICATION_JSON_VALUE)
+ .withBody(
+ copyToString(
+ BookMocks.class.getClassLoader().getResourceAsStream("payload/get-books-response.json"),
+ defaultCharset()))));
+ }
+
+}
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/BooksClientIntegrationTest.java b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/BooksClientIntegrationTest.java
new file mode 100644
index 0000000000..2842eef435
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/BooksClientIntegrationTest.java
@@ -0,0 +1,53 @@
+package com.baeldung.spring.cloud.client;
+
+import com.baeldung.spring.cloud.model.Book;
+import com.github.tomakehurst.wiremock.WireMockServer;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.ActiveProfiles;
+import org.springframework.test.context.ContextConfiguration;
+import org.springframework.test.context.junit.jupiter.SpringExtension;
+
+import java.io.IOException;
+
+import static com.baeldung.spring.cloud.client.BookMocks.setupMockBooksResponse;
+import static java.util.Arrays.asList;
+import static org.junit.Assert.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+@SpringBootTest
+@ActiveProfiles("test")
+@EnableConfigurationProperties
+@ExtendWith(SpringExtension.class)
+@ContextConfiguration(classes = { WireMockConfig.class })
+class BooksClientIntegrationTest {
+
+ @Autowired
+ private WireMockServer mockBooksService;
+
+ @Autowired
+ private BooksClient booksClient;
+
+ @BeforeEach
+ void setUp() throws IOException {
+ setupMockBooksResponse(mockBooksService);
+ }
+
+ @Test
+ public void whenGetBooks_thenBooksShouldBeReturned() {
+ assertFalse(booksClient.getBooks().isEmpty());
+ }
+
+ @Test
+ public void whenGetBooks_thenTheCorrectBooksShouldBeReturned() {
+ assertTrue(booksClient.getBooks()
+ .containsAll(asList(
+ new Book("Dune", "Frank Herbert"),
+ new Book("Foundation", "Isaac Asimov"))));
+ }
+
+}
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/EurekaContainerConfig.java b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/EurekaContainerConfig.java
new file mode 100644
index 0000000000..6747d14b88
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/EurekaContainerConfig.java
@@ -0,0 +1,39 @@
+package com.baeldung.spring.cloud.client;
+
+import org.jetbrains.annotations.NotNull;
+import org.springframework.boot.test.context.TestConfiguration;
+import org.springframework.boot.test.util.TestPropertyValues;
+import org.springframework.context.ApplicationContextInitializer;
+import org.springframework.context.ConfigurableApplicationContext;
+import org.springframework.test.context.ActiveProfiles;
+import org.testcontainers.containers.GenericContainer;
+import org.testcontainers.lifecycle.Startables;
+
+import java.util.stream.Stream;
+
+@TestConfiguration
+@ActiveProfiles("eureka-test")
+public class EurekaContainerConfig {
+
+ public static class Initializer implements ApplicationContextInitializer {
+
+ public static GenericContainer eurekaServer
+ = new GenericContainer("springcloud/eureka")
+ .withExposedPorts(8761);
+
+ @Override
+ public void initialize(@NotNull ConfigurableApplicationContext configurableApplicationContext) {
+
+ Startables.deepStart(Stream.of(eurekaServer)).join();
+
+ TestPropertyValues
+ .of("eureka.client.serviceUrl.defaultZone=http://localhost:"
+ + eurekaServer.getFirstMappedPort().toString()
+ + "/eureka")
+ .applyTo(configurableApplicationContext);
+
+ }
+
+ }
+
+}
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/LoadBalancerBooksClientIntegrationTest.java b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/LoadBalancerBooksClientIntegrationTest.java
new file mode 100644
index 0000000000..f05df11ba3
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/LoadBalancerBooksClientIntegrationTest.java
@@ -0,0 +1,65 @@
+package com.baeldung.spring.cloud.client;
+
+import com.baeldung.spring.cloud.model.Book;
+import com.github.tomakehurst.wiremock.WireMockServer;
+import com.github.tomakehurst.wiremock.client.WireMock;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.ActiveProfiles;
+import org.springframework.test.context.ContextConfiguration;
+import org.springframework.test.context.junit.jupiter.SpringExtension;
+
+import java.io.IOException;
+
+import static com.baeldung.spring.cloud.client.BookMocks.setupMockBooksResponse;
+import static com.github.tomakehurst.wiremock.client.WireMock.getRequestedFor;
+import static com.github.tomakehurst.wiremock.client.WireMock.moreThan;
+import static java.util.Arrays.asList;
+import static org.junit.jupiter.api.Assertions.assertTrue;
+
+@SpringBootTest
+@ActiveProfiles("ribbon-test")
+@EnableConfigurationProperties
+@ExtendWith(SpringExtension.class)
+@ContextConfiguration(classes = { RibbonTestConfig.class })
+class LoadBalancerBooksClientIntegrationTest {
+
+ @Autowired
+ private WireMockServer mockBooksService;
+
+ @Autowired
+ private WireMockServer secondMockBooksService;
+
+ @Autowired
+ private BooksClient booksClient;
+
+ @BeforeEach
+ void setUp() throws IOException {
+ setupMockBooksResponse(mockBooksService);
+ setupMockBooksResponse(secondMockBooksService);
+ }
+
+ @Test
+ void whenGetBooks_thenRequestsAreLoadBalanced() {
+ for (int k = 0; k < 10; k++) {
+ booksClient.getBooks();
+ }
+
+ mockBooksService.verify(
+ moreThan(0), getRequestedFor(WireMock.urlEqualTo("/books")));
+ secondMockBooksService.verify(
+ moreThan(0), getRequestedFor(WireMock.urlEqualTo("/books")));
+ }
+
+ @Test
+ public void whenGetBooks_thenTheCorrectBooksShouldBeReturned() {
+ assertTrue(booksClient.getBooks()
+ .containsAll(asList(
+ new Book("Dune", "Frank Herbert"),
+ new Book("Foundation", "Isaac Asimov"))));
+ }
+}
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/MockBookServiceConfig.java b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/MockBookServiceConfig.java
new file mode 100644
index 0000000000..1fff2ec9c0
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/MockBookServiceConfig.java
@@ -0,0 +1,22 @@
+package com.baeldung.spring.cloud.client;
+
+import com.baeldung.spring.cloud.model.Book;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.test.context.ActiveProfiles;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+
+import java.util.Collections;
+import java.util.List;
+
+@Configuration
+@RestController
+@ActiveProfiles("eureka-test")
+public class MockBookServiceConfig {
+
+ @RequestMapping("/books")
+ public List getBooks() {
+ return Collections.singletonList(new Book("Hitchhiker's guide to the galaxy", "Douglas Adams"));
+ }
+
+}
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/RibbonTestConfig.java b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/RibbonTestConfig.java
new file mode 100644
index 0000000000..273ba182b1
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/RibbonTestConfig.java
@@ -0,0 +1,41 @@
+package com.baeldung.spring.cloud.client;
+
+import com.github.tomakehurst.wiremock.WireMockServer;
+import com.netflix.loadbalancer.Server;
+import com.netflix.loadbalancer.ServerList;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.TestConfiguration;
+import org.springframework.cloud.netflix.ribbon.StaticServerList;
+import org.springframework.context.annotation.Bean;
+import org.springframework.test.context.ActiveProfiles;
+
+import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.options;
+
+@TestConfiguration
+@ActiveProfiles("ribbon-test")
+public class RibbonTestConfig {
+
+ @Autowired
+ private WireMockServer mockBooksService;
+
+ @Autowired
+ private WireMockServer secondMockBooksService;
+
+ @Bean(initMethod = "start", destroyMethod = "stop")
+ public WireMockServer mockBooksService() {
+ return new WireMockServer(options().dynamicPort());
+ }
+
+ @Bean(name="secondMockBooksService", initMethod = "start", destroyMethod = "stop")
+ public WireMockServer secondBooksMockService() {
+ return new WireMockServer(options().dynamicPort());
+ }
+
+ @Bean
+ public ServerList ribbonServerList() {
+ return new StaticServerList<>(
+ new Server("localhost", mockBooksService.port()),
+ new Server("localhost", secondMockBooksService.port()));
+ }
+
+}
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/ServiceDiscoveryBooksClientLiveTest.java b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/ServiceDiscoveryBooksClientLiveTest.java
new file mode 100644
index 0000000000..3ac067b8f8
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/ServiceDiscoveryBooksClientLiveTest.java
@@ -0,0 +1,52 @@
+package com.baeldung.spring.cloud.client;
+
+import com.baeldung.spring.cloud.Application;
+import com.baeldung.spring.cloud.model.Book;
+import com.netflix.discovery.EurekaClient;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.context.annotation.Lazy;
+import org.springframework.test.context.ActiveProfiles;
+import org.springframework.test.context.ContextConfiguration;
+import org.springframework.test.context.junit.jupiter.SpringExtension;
+
+import java.util.List;
+
+import static java.util.concurrent.TimeUnit.SECONDS;
+import static org.awaitility.Awaitility.await;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
+@ActiveProfiles("eureka-test")
+@EnableConfigurationProperties
+@ExtendWith(SpringExtension.class)
+@SpringBootTest(classes = Application.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
+@ContextConfiguration(classes = { MockBookServiceConfig.class }, initializers = { EurekaContainerConfig.Initializer.class })
+class ServiceDiscoveryBooksClientLiveTest {
+
+ @Autowired
+ private BooksClient booksClient;
+
+ @Lazy
+ @Autowired
+ private EurekaClient eurekaClient;
+
+ @BeforeEach
+ void setUp() {
+ await().atMost(60, SECONDS).until(() -> eurekaClient.getApplications().size() > 0);
+ }
+
+ @Test
+ public void whenGetBooks_thenTheCorrectBooksAreReturned() {
+ List books = booksClient.getBooks();
+
+ assertEquals(1, books.size());
+ assertEquals(
+ new Book("Hitchhiker's guide to the galaxy", "Douglas Adams"),
+ books.stream().findFirst().get());
+ }
+
+}
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/WireMockConfig.java b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/WireMockConfig.java
new file mode 100644
index 0000000000..82b7cddede
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/java/com/baeldung/spring/cloud/client/WireMockConfig.java
@@ -0,0 +1,17 @@
+package com.baeldung.spring.cloud.client;
+
+import com.github.tomakehurst.wiremock.WireMockServer;
+import org.springframework.boot.test.context.TestConfiguration;
+import org.springframework.context.annotation.Bean;
+import org.springframework.test.context.ActiveProfiles;
+
+@TestConfiguration
+@ActiveProfiles("test")
+public class WireMockConfig {
+
+ @Bean(initMethod = "start", destroyMethod = "stop")
+ public WireMockServer mockBooksService() {
+ return new WireMockServer(9561);
+ }
+
+}
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/application-eureka-test.yml b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/application-eureka-test.yml
new file mode 100644
index 0000000000..6f6af6a080
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/application-eureka-test.yml
@@ -0,0 +1,3 @@
+spring:
+ application:
+ name: books-service
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/application-ribbon-test.yml b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/application-ribbon-test.yml
new file mode 100644
index 0000000000..84a78d0ec7
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/application-ribbon-test.yml
@@ -0,0 +1,3 @@
+eureka:
+ client:
+ enabled: false
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/application-test.yml b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/application-test.yml
new file mode 100644
index 0000000000..dce11adf69
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/application-test.yml
@@ -0,0 +1,11 @@
+#book:
+# service:
+# url: http://localhost:9561
+
+books-service:
+ ribbon:
+ listOfServers: http://localhost:9561
+
+eureka:
+ client:
+ enabled: false
diff --git a/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/payload/get-books-response.json b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/payload/get-books-response.json
new file mode 100644
index 0000000000..b4223ff8f2
--- /dev/null
+++ b/spring-cloud/spring-cloud-eureka/spring-cloud-eureka-feign-client-integration-test/src/test/resources/payload/get-books-response.json
@@ -0,0 +1,10 @@
+[
+ {
+ "title": "Dune",
+ "author": "Frank Herbert"
+ },
+ {
+ "title": "Foundation",
+ "author": "Isaac Asimov"
+ }
+]
diff --git a/spring-cloud/spring-cloud-kubernetes/pom.xml b/spring-cloud/spring-cloud-kubernetes/pom.xml
index a3669d2d55..44c429d8f5 100644
--- a/spring-cloud/spring-cloud-kubernetes/pom.xml
+++ b/spring-cloud/spring-cloud-kubernetes/pom.xml
@@ -25,5 +25,6 @@
+ 2.3.3.RELEASE
\ No newline at end of file
diff --git a/spring-cloud/spring-cloud-ribbon-client/pom.xml b/spring-cloud/spring-cloud-ribbon-client/pom.xml
index fa9cee29a2..7bc7b51d51 100644
--- a/spring-cloud/spring-cloud-ribbon-client/pom.xml
+++ b/spring-cloud/spring-cloud-ribbon-client/pom.xml
@@ -46,6 +46,7 @@
Hoxton.SR4
+ 2.3.3.RELEASE
\ No newline at end of file
diff --git a/spring-cloud/spring-cloud-security/pom.xml b/spring-cloud/spring-cloud-security/pom.xml
index 3a007c8df1..f861b892c0 100644
--- a/spring-cloud/spring-cloud-security/pom.xml
+++ b/spring-cloud/spring-cloud-security/pom.xml
@@ -21,5 +21,6 @@
+ 2.3.3.RELEASE
diff --git a/spring-cloud/spring-cloud-zookeeper/pom.xml b/spring-cloud/spring-cloud-zookeeper/pom.xml
index 244ccbd957..e3241da02c 100644
--- a/spring-cloud/spring-cloud-zookeeper/pom.xml
+++ b/spring-cloud/spring-cloud-zookeeper/pom.xml
@@ -20,6 +20,7 @@
5.2.7.RELEASE
1.0.3.RELEASE
+ 2.3.3.RELEASE
\ No newline at end of file
diff --git a/spring-cloud/spring-cloud-zuul/pom.xml b/spring-cloud/spring-cloud-zuul/pom.xml
index b8db1f2fc7..6035ba7e59 100644
--- a/spring-cloud/spring-cloud-zuul/pom.xml
+++ b/spring-cloud/spring-cloud-zuul/pom.xml
@@ -80,7 +80,7 @@
Hoxton.SR4
-
+ 2.3.3.RELEASE
diff --git a/spring-cloud/spring-cloud-zuul/spring-zuul-rate-limiting/src/test/java/com/baeldung/spring/cloud/zuulratelimitdemo/controller/GreetingControllerUnitTest.java b/spring-cloud/spring-cloud-zuul/spring-zuul-rate-limiting/src/test/java/com/baeldung/spring/cloud/zuulratelimitdemo/controller/GreetingControllerIntegrationTest.java
similarity index 88%
rename from spring-cloud/spring-cloud-zuul/spring-zuul-rate-limiting/src/test/java/com/baeldung/spring/cloud/zuulratelimitdemo/controller/GreetingControllerUnitTest.java
rename to spring-cloud/spring-cloud-zuul/spring-zuul-rate-limiting/src/test/java/com/baeldung/spring/cloud/zuulratelimitdemo/controller/GreetingControllerIntegrationTest.java
index d23ec836f9..7fdc723305 100644
--- a/spring-cloud/spring-cloud-zuul/spring-zuul-rate-limiting/src/test/java/com/baeldung/spring/cloud/zuulratelimitdemo/controller/GreetingControllerUnitTest.java
+++ b/spring-cloud/spring-cloud-zuul/spring-zuul-rate-limiting/src/test/java/com/baeldung/spring/cloud/zuulratelimitdemo/controller/GreetingControllerIntegrationTest.java
@@ -5,14 +5,21 @@ import static com.marcosbarbero.cloud.autoconfigure.zuul.ratelimit.support.RateL
import static com.marcosbarbero.cloud.autoconfigure.zuul.ratelimit.support.RateLimitConstants.HEADER_REMAINING;
import static com.marcosbarbero.cloud.autoconfigure.zuul.ratelimit.support.RateLimitConstants.HEADER_REMAINING_QUOTA;
import static com.marcosbarbero.cloud.autoconfigure.zuul.ratelimit.support.RateLimitConstants.HEADER_RESET;
+import static java.lang.Integer.parseInt;
+import static org.hamcrest.Matchers.both;
+import static org.hamcrest.Matchers.greaterThanOrEqualTo;
+import static org.hamcrest.Matchers.is;
+import static org.hamcrest.Matchers.lessThanOrEqualTo;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertThat;
import static org.springframework.http.HttpStatus.OK;
import static org.springframework.http.HttpStatus.TOO_MANY_REQUESTS;
import java.util.concurrent.TimeUnit;
+
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
@@ -26,7 +33,7 @@ import org.springframework.test.context.junit4.SpringRunner;
@AutoConfigureTestDatabase
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
-public class GreetingControllerUnitTest {
+public class GreetingControllerIntegrationTest {
private static final String SIMPLE_GREETING = "/greeting/simple";
private static final String ADVANCED_GREETING = "/greeting/advanced";
@@ -44,9 +51,13 @@ public class GreetingControllerUnitTest {
String remaining = headers.getFirst(HEADER_REMAINING + key);
String reset = headers.getFirst(HEADER_RESET + key);
- assertEquals(limit, "5");
- assertEquals(remaining, "4");
- assertEquals(reset, "60000");
+ assertEquals("5", limit);
+ assertEquals(remaining, "4", remaining);
+ assertNotNull(reset);
+ assertThat(
+ parseInt(reset),
+ is(both(greaterThanOrEqualTo(0)).and(lessThanOrEqualTo(60000)))
+ );
assertEquals(OK, response.getStatusCode());
}
diff --git a/spring-core-2/pom.xml b/spring-core-2/pom.xml
index edbb351bd0..3f8e84e13d 100644
--- a/spring-core-2/pom.xml
+++ b/spring-core-2/pom.xml
@@ -198,7 +198,7 @@
com.baeldung.sample.App
- 5.2.2.RELEASE
+ 5.3.0
1.3.2
5.2.5.Final
diff --git a/spring-core/pom.xml b/spring-core/pom.xml
index eb25bcd517..7d83fc198c 100644
--- a/spring-core/pom.xml
+++ b/spring-core/pom.xml
@@ -65,7 +65,7 @@
commons-io
commons-io
- ${commons.io.version}
+ ${commons-io.version}
@@ -86,7 +86,6 @@
1.4.4.RELEASE
1
20.0
- 2.5
1.5.2.RELEASE
1.10.19
3.12.2
diff --git a/spring-core/src/test/java/com/baeldung/classpathfileaccess/SpringResourceIntegrationTest.java b/spring-core/src/test/java/com/baeldung/classpathfileaccess/SpringResourceIntegrationTest.java
index b57a64a8c6..38f857b42e 100644
--- a/spring-core/src/test/java/com/baeldung/classpathfileaccess/SpringResourceIntegrationTest.java
+++ b/spring-core/src/test/java/com/baeldung/classpathfileaccess/SpringResourceIntegrationTest.java
@@ -1,16 +1,5 @@
package com.baeldung.classpathfileaccess;
-import static org.junit.Assert.assertEquals;
-
-import java.io.BufferedReader;
-import java.io.File;
-import java.io.FileNotFoundException;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.InputStreamReader;
-import java.nio.file.Files;
-import java.util.stream.Collectors;
-
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
@@ -24,6 +13,17 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.support.AnnotationConfigContextLoader;
import org.springframework.util.ResourceUtils;
+import java.io.BufferedReader;
+import java.io.File;
+import java.io.FileNotFoundException;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.nio.file.Files;
+import java.util.stream.Collectors;
+
+import static org.junit.Assert.assertEquals;
+
/**
* Test class illustrating various methods of accessing a file from the classpath using Resource.
* @author tritty
@@ -55,7 +55,7 @@ public class SpringResourceIntegrationTest {
@Test
public void whenResourceLoader_thenReadSuccessful() throws IOException {
- final Resource resource = resourceLoader.getResource("classpath:data/employees.dat");
+ final Resource resource = loadEmployeesWithResourceLoader();
final String employees = new String(Files.readAllBytes(resource.getFile()
.toPath()));
assertEquals(EMPLOYEES_EXPECTED, employees);
@@ -63,7 +63,7 @@ public class SpringResourceIntegrationTest {
@Test
public void whenApplicationContext_thenReadSuccessful() throws IOException {
- final Resource resource = appContext.getResource("classpath:data/employees.dat");
+ final Resource resource = loadEmployeesWithApplicationContext();
final String employees = new String(Files.readAllBytes(resource.getFile()
.toPath()));
assertEquals(EMPLOYEES_EXPECTED, employees);
@@ -85,7 +85,7 @@ public class SpringResourceIntegrationTest {
@Test
public void whenResourceAsStream_thenReadSuccessful() throws IOException {
- final InputStream resource = new ClassPathResource("data/employees.dat").getInputStream();
+ final InputStream resource = loadEmployeesWithClassPathResource().getInputStream();
try (BufferedReader reader = new BufferedReader(new InputStreamReader(resource))) {
final String employees = reader.lines()
.collect(Collectors.joining("\n"));
@@ -95,7 +95,7 @@ public class SpringResourceIntegrationTest {
@Test
public void whenResourceAsFile_thenReadSuccessful() throws IOException {
- final File resource = new ClassPathResource("data/employees.dat").getFile();
+ final File resource = loadEmployeesWithClassPathResource().getFile();
final String employees = new String(Files.readAllBytes(resource.toPath()));
assertEquals(EMPLOYEES_EXPECTED, employees);
}
@@ -114,7 +114,19 @@ public class SpringResourceIntegrationTest {
assertEquals(EMPLOYEES_EXPECTED, employees);
}
- public File loadEmployeesWithSpringInternalClass() throws FileNotFoundException {
+ private File loadEmployeesWithSpringInternalClass() throws FileNotFoundException {
return ResourceUtils.getFile("classpath:data/employees.dat");
}
+
+ private Resource loadEmployeesWithClassPathResource(){
+ return new ClassPathResource("data/employees.dat");
+ }
+
+ private Resource loadEmployeesWithResourceLoader(){
+ return resourceLoader.getResource("classpath:data/employees.dat");
+ }
+
+ private Resource loadEmployeesWithApplicationContext(){
+ return appContext.getResource("classpath:data/employees.dat");
+ }
}
diff --git a/spring-data-rest/pom.xml b/spring-data-rest/pom.xml
index 63a42857f4..dd96182264 100644
--- a/spring-data-rest/pom.xml
+++ b/spring-data-rest/pom.xml
@@ -99,6 +99,7 @@
com.baeldung.books.SpringDataRestApplication
1.0
+ 2.3.3.RELEASE
\ No newline at end of file
diff --git a/spring-di/pom.xml b/spring-di/pom.xml
index 48cdf60673..df0b685ae2 100644
--- a/spring-di/pom.xml
+++ b/spring-di/pom.xml
@@ -83,7 +83,7 @@
commons-io
commons-io
- ${commons.io.version}
+ ${commons-io.version}
org.aspectj
@@ -159,7 +159,6 @@
1.4.4.RELEASE
1
20.0
- 2.5
1.5.2.RELEASE
1.10.19
3.12.2
diff --git a/spring-dispatcher-servlet/README.md b/spring-dispatcher-servlet/README.md
deleted file mode 100644
index 3027546152..0000000000
--- a/spring-dispatcher-servlet/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-## Spring DispatcherServlet
-
-This module contains articles about Spring DispatcherServlet
-
-## Relevant articles:
-
-- [An Intro to the Spring DispatcherServlet](https://www.baeldung.com/spring-dispatcherservlet)
diff --git a/spring-dispatcher-servlet/pom.xml b/spring-dispatcher-servlet/pom.xml
deleted file mode 100644
index 21324e6757..0000000000
--- a/spring-dispatcher-servlet/pom.xml
+++ /dev/null
@@ -1,95 +0,0 @@
-
-
- 4.0.0
- spring-dispatcher-servlet
- 1.0.0
- spring-dispatcher-servlet
- war
-
-
- com.baeldung
- parent-spring-5
- 0.0.1-SNAPSHOT
- ../parent-spring-5
-
-
-
-
- org.springframework
- spring-web
- ${spring.version}
-
-
- org.springframework
- spring-webmvc
- ${spring.version}
-
-
- javax.servlet
- javax.servlet-api
- ${javax.servlet-api.version}
-
-
- javax.servlet.jsp.jstl
- jstl-api
- ${jstl-api.version}
-
-
- javax.servlet.jsp
- javax.servlet.jsp-api
- ${javax.servlet.jsp-api.version}
-
-
- javax.servlet
- jstl
- ${jstl.version}
-
-
- com.fasterxml.jackson.core
- jackson-databind
- ${jackson.version}
-
-
- commons-fileupload
- commons-fileupload
- ${commons-fileupload.version}
-
-
- org.springframework.boot
- spring-boot-starter-test
- ${spring-boot-starter-test.version}
- test
-
-
-
-
- spring-dispatcher-servlet
-
-
-
- org.apache.tomcat.maven
- tomcat8-maven-plugin
- ${tomcat8-maven-plugin.version}
-
- /springdispatcherservlet
-
-
-
- org.apache.maven.plugins
- maven-war-plugin
- ${maven-war-plugin.version}
-
- src/main/webapp
- false
-
-
-
-
-
-
-
- 3.0-r1655215
-
-
-
\ No newline at end of file
diff --git a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/configuration/AppConfig.java b/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/configuration/AppConfig.java
deleted file mode 100644
index c8a6cf06a6..0000000000
--- a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/configuration/AppConfig.java
+++ /dev/null
@@ -1,83 +0,0 @@
-package com.baeldung.springdispatcherservlet.configuration;
-
-import org.springframework.context.annotation.Bean;
-import org.springframework.context.annotation.ComponentScan;
-import org.springframework.context.annotation.Configuration;
-import org.springframework.ui.context.support.ResourceBundleThemeSource;
-import org.springframework.web.multipart.commons.CommonsMultipartResolver;
-import org.springframework.web.servlet.config.annotation.*;
-import org.springframework.web.servlet.resource.PathResourceResolver;
-import org.springframework.web.servlet.theme.CookieThemeResolver;
-import org.springframework.web.servlet.theme.ThemeChangeInterceptor;
-import org.springframework.web.servlet.view.JstlView;
-import org.springframework.web.servlet.view.UrlBasedViewResolver;
-
-import java.io.IOException;
-
-@Configuration
-@EnableWebMvc
-@ComponentScan("com.baeldung.springdispatcherservlet")
-public class AppConfig implements WebMvcConfigurer {
-
- public void addViewControllers(ViewControllerRegistry registry) {
- registry.addViewController("/").setViewName("index");
- }
-
- /** Multipart file uploading configuratioin */
- @Bean
- public CommonsMultipartResolver multipartResolver() throws IOException {
- CommonsMultipartResolver resolver = new CommonsMultipartResolver();
- resolver.setMaxUploadSize(10000000);
- return resolver;
- }
-
- /** View resolver for JSP */
- @Bean
- public UrlBasedViewResolver viewResolver() {
- UrlBasedViewResolver resolver = new UrlBasedViewResolver();
- resolver.setPrefix("/WEB-INF/jsp/");
- resolver.setSuffix(".jsp");
- resolver.setViewClass(JstlView.class);
- return resolver;
- }
-
- /** Static resource locations including themes*/
- @Override
- public void addResourceHandlers(ResourceHandlerRegistry registry) {
- registry.addResourceHandler("/resources/**/*")
- .addResourceLocations("/", "/resources/")
- .setCachePeriod(3600)
- .resourceChain(true)
- .addResolver(new PathResourceResolver());
- }
-
- /** BEGIN theme configuration */
- @Bean
- public ResourceBundleThemeSource themeSource(){
- ResourceBundleThemeSource themeSource = new ResourceBundleThemeSource();
- themeSource.setDefaultEncoding("UTF-8");
- themeSource.setBasenamePrefix("themes.");
- return themeSource;
- }
-
- @Bean
- public CookieThemeResolver themeResolver(){
- CookieThemeResolver resolver = new CookieThemeResolver();
- resolver.setDefaultThemeName("default");
- resolver.setCookieName("example-theme-cookie");
- return resolver;
- }
-
- @Bean
- public ThemeChangeInterceptor themeChangeInterceptor(){
- ThemeChangeInterceptor interceptor = new ThemeChangeInterceptor();
- interceptor.setParamName("theme");
- return interceptor;
- }
-
- @Override
- public void addInterceptors(InterceptorRegistry registry) {
- registry.addInterceptor(themeChangeInterceptor());
- }
- /** END theme configuration */
-}
\ No newline at end of file
diff --git a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/configuration/WebAppInitializer.java b/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/configuration/WebAppInitializer.java
deleted file mode 100644
index 0c6c7141a7..0000000000
--- a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/configuration/WebAppInitializer.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package com.baeldung.springdispatcherservlet.configuration;
-
-import javax.servlet.ServletContext;
-import javax.servlet.ServletException;
-import javax.servlet.ServletRegistration;
-
-import org.springframework.web.WebApplicationInitializer;
-import org.springframework.web.context.support.AnnotationConfigWebApplicationContext;
-import org.springframework.web.servlet.DispatcherServlet;
-
-public class WebAppInitializer implements WebApplicationInitializer {
-
- @Override
- public void onStartup(ServletContext container) throws ServletException {
- AnnotationConfigWebApplicationContext context = new AnnotationConfigWebApplicationContext();
- context.register(AppConfig.class);
- context.setServletContext(container);
-
- ServletRegistration.Dynamic servlet = container.addServlet("dispatcher", new DispatcherServlet(context));
- servlet.setLoadOnStartup(1);
- servlet.addMapping("/");
- }
-}
diff --git a/spring-dispatcher-servlet/src/main/webapp/WEB-INF/jsp/index.jsp b/spring-dispatcher-servlet/src/main/webapp/WEB-INF/jsp/index.jsp
deleted file mode 100644
index c482eac361..0000000000
--- a/spring-dispatcher-servlet/src/main/webapp/WEB-INF/jsp/index.jsp
+++ /dev/null
@@ -1,30 +0,0 @@
-<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>
-<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %>
-<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
-<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1" %>
-
-
-
-
-
-
- Spring Dispatcher
-
-
-
- Hello World!
-
- Switch Theme!
- Switch Theme!
-
-
-
-
-
-
- ${message}
-
-
diff --git a/spring-dispatcher-servlet/src/main/webapp/resources/css/default.css b/spring-dispatcher-servlet/src/main/webapp/resources/css/default.css
deleted file mode 100644
index 7f20f36d96..0000000000
--- a/spring-dispatcher-servlet/src/main/webapp/resources/css/default.css
+++ /dev/null
@@ -1,4 +0,0 @@
-h2 {
- color: green;
- font-weight: 400;
-}
\ No newline at end of file
diff --git a/spring-dispatcher-servlet/src/main/webapp/resources/css/example.css b/spring-dispatcher-servlet/src/main/webapp/resources/css/example.css
deleted file mode 100644
index fe31b0396a..0000000000
--- a/spring-dispatcher-servlet/src/main/webapp/resources/css/example.css
+++ /dev/null
@@ -1,4 +0,0 @@
-h2 {
- color: red;
- font-weight: 700;
-}
\ No newline at end of file
diff --git a/spring-dispatcher-servlet/src/test/java/com/baeldung/SpringContextTest.java b/spring-dispatcher-servlet/src/test/java/com/baeldung/SpringContextTest.java
deleted file mode 100644
index ba8040f81d..0000000000
--- a/spring-dispatcher-servlet/src/test/java/com/baeldung/SpringContextTest.java
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.baeldung;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.test.context.ContextConfiguration;
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
-import org.springframework.test.context.web.WebAppConfiguration;
-
-import com.baeldung.springdispatcherservlet.configuration.AppConfig;
-
-@RunWith(SpringJUnit4ClassRunner.class)
-@ContextConfiguration(classes = AppConfig.class)
-@WebAppConfiguration
-public class SpringContextTest {
-
- @Test
- public void whenSpringContextIsBootstrapped_thenNoExceptions() {
- }
-}
diff --git a/spring-jinq/pom.xml b/spring-jinq/pom.xml
index 647c0907a7..1f5d8cd915 100644
--- a/spring-jinq/pom.xml
+++ b/spring-jinq/pom.xml
@@ -27,11 +27,6 @@
h2
-
- org.hibernate
- hibernate-entitymanager
-
-
org.springframework.boot
spring-boot-starter-data-jpa
diff --git a/spring-kafka/README.md b/spring-kafka/README.md
index f2fecde894..ddb086c3bd 100644
--- a/spring-kafka/README.md
+++ b/spring-kafka/README.md
@@ -5,6 +5,7 @@ This module contains articles about Spring with Kafka
### Relevant articles
- [Intro to Apache Kafka with Spring](https://www.baeldung.com/spring-kafka)
+- [Testing Kafka and Spring Boot](https://www.baeldung.com/spring-boot-kafka-testing)
### Intro
diff --git a/spring-kafka/pom.xml b/spring-kafka/pom.xml
index 2b4a0914e6..235dd75966 100644
--- a/spring-kafka/pom.xml
+++ b/spring-kafka/pom.xml
@@ -1,9 +1,9 @@
-
+
4.0.0
spring-kafka
- 0.0.1-SNAPSHOT
spring-kafka
Intro to Kafka with Spring
@@ -15,25 +15,36 @@
-
org.springframework.boot
spring-boot-starter
-
org.springframework.kafka
spring-kafka
+ ${spring-kafka.version}
-
com.fasterxml.jackson.core
jackson-databind
+
+ org.springframework.kafka
+ spring-kafka-test
+ ${spring-kafka.version}
+ test
+
+
+ org.testcontainers
+ kafka
+ ${testcontainers-kafka.version}
+ test
+
- 2.3.7.RELEASE
+ 2.5.8.RELEASE
+ 1.15.0
\ No newline at end of file
diff --git a/spring-kafka/src/main/java/com/baeldung/kafka/embedded/KafkaConsumer.java b/spring-kafka/src/main/java/com/baeldung/kafka/embedded/KafkaConsumer.java
new file mode 100644
index 0000000000..48a194b4e3
--- /dev/null
+++ b/spring-kafka/src/main/java/com/baeldung/kafka/embedded/KafkaConsumer.java
@@ -0,0 +1,39 @@
+package com.baeldung.kafka.embedded;
+
+import java.util.concurrent.CountDownLatch;
+
+import org.apache.kafka.clients.consumer.ConsumerRecord;
+import org.springframework.kafka.annotation.KafkaListener;
+import org.springframework.stereotype.Component;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+@Component
+public class KafkaConsumer {
+
+ private static final Logger LOGGER = LoggerFactory.getLogger(KafkaConsumer.class);
+
+ private CountDownLatch latch = new CountDownLatch(1);
+ private String payload = null;
+
+ @KafkaListener(topics = "${test.topic}")
+ public void receive(ConsumerRecord, ?> consumerRecord) {
+ LOGGER.info("received payload='{}'", consumerRecord.toString());
+ setPayload(consumerRecord.toString());
+ latch.countDown();
+ }
+
+ public CountDownLatch getLatch() {
+ return latch;
+ }
+
+ public String getPayload() {
+ return payload;
+ }
+
+ private void setPayload(String payload) {
+ this.payload = payload;
+ }
+
+}
diff --git a/spring-kafka/src/main/java/com/baeldung/kafka/embedded/KafkaProducer.java b/spring-kafka/src/main/java/com/baeldung/kafka/embedded/KafkaProducer.java
new file mode 100644
index 0000000000..d7cbd35011
--- /dev/null
+++ b/spring-kafka/src/main/java/com/baeldung/kafka/embedded/KafkaProducer.java
@@ -0,0 +1,22 @@
+package com.baeldung.kafka.embedded;
+
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.kafka.core.KafkaTemplate;
+import org.springframework.stereotype.Component;
+
+@Component
+public class KafkaProducer {
+
+ private static final Logger LOGGER = LoggerFactory.getLogger(KafkaProducer.class);
+
+ @Autowired
+ private KafkaTemplate kafkaTemplate;
+
+ public void send(String topic, String payload) {
+ LOGGER.info("sending payload='{}' to topic='{}'", payload, topic);
+ kafkaTemplate.send(topic, payload);
+ }
+
+}
diff --git a/spring-kafka/src/main/java/com/baeldung/kafka/embedded/KafkaProducerConsumerApplication.java b/spring-kafka/src/main/java/com/baeldung/kafka/embedded/KafkaProducerConsumerApplication.java
new file mode 100644
index 0000000000..bf14251d75
--- /dev/null
+++ b/spring-kafka/src/main/java/com/baeldung/kafka/embedded/KafkaProducerConsumerApplication.java
@@ -0,0 +1,15 @@
+package com.baeldung.kafka.embedded;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+@EnableAutoConfiguration
+public class KafkaProducerConsumerApplication {
+
+ public static void main(String[] args) {
+ SpringApplication.run(KafkaProducerConsumerApplication.class, args);
+ }
+
+}
diff --git a/spring-kafka/src/test/java/com/baeldung/SpringContextManualTest.java b/spring-kafka/src/test/java/com/baeldung/SpringContextManualTest.java
deleted file mode 100644
index 0d2c19136f..0000000000
--- a/spring-kafka/src/test/java/com/baeldung/SpringContextManualTest.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.baeldung;
-
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.boot.test.context.SpringBootTest;
-import org.springframework.test.context.junit4.SpringRunner;
-
-import com.baeldung.spring.kafka.KafkaApplication;
-
-@RunWith(SpringRunner.class)
-@SpringBootTest(classes = KafkaApplication.class)
-public class SpringContextManualTest {
-
- @Test
- public void whenSpringContextIsBootstrapped_thenNoExceptions() {
- }
-}
diff --git a/spring-kafka/src/test/java/com/baeldung/kafka/embedded/EmbeddedKafkaIntegrationTest.java b/spring-kafka/src/test/java/com/baeldung/kafka/embedded/EmbeddedKafkaIntegrationTest.java
new file mode 100644
index 0000000000..4c727795c4
--- /dev/null
+++ b/spring-kafka/src/test/java/com/baeldung/kafka/embedded/EmbeddedKafkaIntegrationTest.java
@@ -0,0 +1,52 @@
+package com.baeldung.kafka.embedded;
+
+import static org.hamcrest.CoreMatchers.containsString;
+import static org.hamcrest.CoreMatchers.equalTo;
+import static org.hamcrest.MatcherAssert.assertThat;
+
+import java.util.concurrent.TimeUnit;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.kafka.core.KafkaTemplate;
+import org.springframework.kafka.test.context.EmbeddedKafka;
+import org.springframework.test.annotation.DirtiesContext;
+
+@SpringBootTest
+@DirtiesContext
+@EmbeddedKafka(partitions = 1, brokerProperties = { "listeners=PLAINTEXT://localhost:9092", "port=9092" })
+class EmbeddedKafkaIntegrationTest {
+
+ @Autowired
+ public KafkaTemplate template;
+
+ @Autowired
+ private KafkaConsumer consumer;
+
+ @Autowired
+ private KafkaProducer producer;
+
+ @Value("${test.topic}")
+ private String topic;
+
+ @Test
+ public void givenEmbeddedKafkaBroker_whenSendingtoDefaultTemplate_thenMessageReceived() throws Exception {
+ template.send(topic, "Sending with default template");
+ consumer.getLatch().await(10000, TimeUnit.MILLISECONDS);
+ assertThat(consumer.getLatch().getCount(), equalTo(0L));
+
+ assertThat(consumer.getPayload(), containsString("embedded-test-topic"));
+ }
+
+ @Test
+ public void givenEmbeddedKafkaBroker_whenSendingtoSimpleProducer_thenMessageReceived() throws Exception {
+ producer.send(topic, "Sending with our own simple KafkaProducer");
+ consumer.getLatch().await(10000, TimeUnit.MILLISECONDS);
+
+ assertThat(consumer.getLatch().getCount(), equalTo(0L));
+ assertThat(consumer.getPayload(), containsString("embedded-test-topic"));
+ }
+
+}
diff --git a/spring-kafka/src/test/java/com/baeldung/kafka/testcontainers/KafkaTestContainersLiveTest.java b/spring-kafka/src/test/java/com/baeldung/kafka/testcontainers/KafkaTestContainersLiveTest.java
new file mode 100644
index 0000000000..74d6f824b1
--- /dev/null
+++ b/spring-kafka/src/test/java/com/baeldung/kafka/testcontainers/KafkaTestContainersLiveTest.java
@@ -0,0 +1,127 @@
+package com.baeldung.kafka.testcontainers;
+
+import static org.hamcrest.CoreMatchers.containsString;
+import static org.hamcrest.CoreMatchers.equalTo;
+import static org.hamcrest.MatcherAssert.assertThat;
+
+import java.util.HashMap;
+import java.util.Map;
+import java.util.concurrent.TimeUnit;
+
+import org.apache.kafka.clients.consumer.ConsumerConfig;
+import org.apache.kafka.clients.producer.ProducerConfig;
+import org.apache.kafka.common.serialization.StringDeserializer;
+import org.apache.kafka.common.serialization.StringSerializer;
+import org.junit.ClassRule;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.context.TestConfiguration;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Import;
+import org.springframework.kafka.config.ConcurrentKafkaListenerContainerFactory;
+import org.springframework.kafka.core.ConsumerFactory;
+import org.springframework.kafka.core.DefaultKafkaConsumerFactory;
+import org.springframework.kafka.core.DefaultKafkaProducerFactory;
+import org.springframework.kafka.core.KafkaTemplate;
+import org.springframework.kafka.core.ProducerFactory;
+import org.springframework.test.annotation.DirtiesContext;
+import org.springframework.test.context.junit4.SpringRunner;
+import org.testcontainers.containers.KafkaContainer;
+import org.testcontainers.utility.DockerImageName;
+
+import com.baeldung.kafka.embedded.KafkaConsumer;
+import com.baeldung.kafka.embedded.KafkaProducer;
+import com.baeldung.kafka.embedded.KafkaProducerConsumerApplication;
+
+/**
+ * This test class uses Testcontainers to instantiate and manage an external Apache
+ * Kafka broker hosted inside a Docker container.
+ *
+ * Therefore, one of the prerequisites for using Testcontainers is that Docker is installed on the host running this test
+ *
+ */
+@RunWith(SpringRunner.class)
+@Import(com.baeldung.kafka.testcontainers.KafkaTestContainersLiveTest.KafkaTestContainersConfiguration.class)
+@SpringBootTest(classes = KafkaProducerConsumerApplication.class)
+@DirtiesContext
+public class KafkaTestContainersLiveTest {
+
+ @ClassRule
+ public static KafkaContainer kafka = new KafkaContainer(DockerImageName.parse("confluentinc/cp-kafka:5.4.3"));
+
+ @Autowired
+ public KafkaTemplate template;
+
+ @Autowired
+ private KafkaConsumer consumer;
+
+ @Autowired
+ private KafkaProducer producer;
+
+ @Value("${test.topic}")
+ private String topic;
+
+ @Test
+ public void givenKafkaDockerContainer_whenSendingtoDefaultTemplate_thenMessageReceived() throws Exception {
+ template.send(topic, "Sending with default template");
+ consumer.getLatch().await(10000, TimeUnit.MILLISECONDS);
+
+ assertThat(consumer.getLatch().getCount(), equalTo(0L));
+ assertThat(consumer.getPayload(), containsString("embedded-test-topic"));
+ }
+
+ @Test
+ public void givenKafkaDockerContainer_whenSendingtoSimpleProducer_thenMessageReceived() throws Exception {
+ producer.send(topic, "Sending with own controller");
+ consumer.getLatch().await(10000, TimeUnit.MILLISECONDS);
+
+ assertThat(consumer.getLatch().getCount(), equalTo(0L));
+ assertThat(consumer.getPayload(), containsString("embedded-test-topic"));
+ }
+
+ @TestConfiguration
+ static class KafkaTestContainersConfiguration {
+
+ @Bean
+ ConcurrentKafkaListenerContainerFactory kafkaListenerContainerFactory() {
+ ConcurrentKafkaListenerContainerFactory factory = new ConcurrentKafkaListenerContainerFactory<>();
+ factory.setConsumerFactory(consumerFactory());
+ return factory;
+ }
+
+ @Bean
+ public ConsumerFactory consumerFactory() {
+ return new DefaultKafkaConsumerFactory<>(consumerConfigs());
+ }
+
+ @Bean
+ public Map consumerConfigs() {
+ Map props = new HashMap<>();
+ props.put(ConsumerConfig.BOOTSTRAP_SERVERS_CONFIG, kafka.getBootstrapServers());
+ props.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest");
+ props.put(ConsumerConfig.GROUP_ID_CONFIG, "baeldung");
+ props.put(ConsumerConfig.KEY_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class);
+ props.put(ConsumerConfig.VALUE_DESERIALIZER_CLASS_CONFIG, StringDeserializer.class);
+ return props;
+ }
+
+ @Bean
+ public ProducerFactory producerFactory() {
+ Map configProps = new HashMap<>();
+ configProps.put(ProducerConfig.BOOTSTRAP_SERVERS_CONFIG, kafka.getBootstrapServers());
+ configProps.put(ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class);
+ configProps.put(ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG, StringSerializer.class);
+ return new DefaultKafkaProducerFactory<>(configProps);
+ }
+
+ @Bean
+ public KafkaTemplate kafkaTemplate() {
+ return new KafkaTemplate<>(producerFactory());
+ }
+
+ }
+
+}
diff --git a/spring-kafka/src/test/resources/application.yml b/spring-kafka/src/test/resources/application.yml
new file mode 100644
index 0000000000..7d7997c6fd
--- /dev/null
+++ b/spring-kafka/src/test/resources/application.yml
@@ -0,0 +1,7 @@
+spring:
+ kafka:
+ consumer:
+ auto-offset-reset: earliest
+ group-id: baeldung
+test:
+ topic: embedded-test-topic
\ No newline at end of file
diff --git a/spring-5-security-oauth/src/main/resources/logback.xml b/spring-kafka/src/test/resources/logback.xml
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/logback.xml
rename to spring-kafka/src/test/resources/logback.xml
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/HeaderValidatorFilter.java b/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/HeaderValidatorFilter.java
deleted file mode 100644
index 2af90badae..0000000000
--- a/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/HeaderValidatorFilter.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package com.baeldung.exclude_urls_filter.filter;
-
-import org.springframework.core.annotation.Order;
-import org.springframework.http.HttpStatus;
-import org.springframework.web.filter.OncePerRequestFilter;
-
-import javax.servlet.*;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-import java.io.IOException;
-
-@Order(1)
-public class HeaderValidatorFilter extends OncePerRequestFilter {
- @Override
- protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
- throws ServletException, IOException {
- String path = request.getRequestURI();
- if ("/health".equals(path)) {
- filterChain.doFilter(request, response);
- return;
- }
- String countryCode = request.getHeader("X-Country-Code");
- if (!"US".equals(countryCode)) {
- response.sendError(HttpStatus.BAD_REQUEST.value(), "Invalid Locale");
- return;
- }
-
- filterChain.doFilter(request, response);
- }
-}
\ No newline at end of file
diff --git a/spring-mvc-kotlin/.gitignore b/spring-mvc-kotlin/.gitignore
deleted file mode 100644
index 416395ffea..0000000000
--- a/spring-mvc-kotlin/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-transaction.log
\ No newline at end of file
diff --git a/spring-mvc-kotlin/README.md b/spring-mvc-kotlin/README.md
deleted file mode 100644
index 590c627cb6..0000000000
--- a/spring-mvc-kotlin/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-## Spring MVC with Kotlin
-
-This module contains articles about Spring MVC with Kotlin
-
-### Relevant articles
-- [Spring MVC Setup with Kotlin](https://www.baeldung.com/spring-mvc-kotlin)
-- [Working with Kotlin and JPA](https://www.baeldung.com/kotlin-jpa)
-- [Kotlin-allopen and Spring](https://www.baeldung.com/kotlin-allopen-spring)
-- [MockMvc Kotlin DSL](https://www.baeldung.com/mockmvc-kotlin-dsl)
diff --git a/spring-mvc-kotlin/pom.xml b/spring-mvc-kotlin/pom.xml
deleted file mode 100644
index 30d2c32ecf..0000000000
--- a/spring-mvc-kotlin/pom.xml
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
- 4.0.0
- spring-mvc-kotlin
- spring-mvc-kotlin
- war
-
-
- com.baeldung
- parent-kotlin
- 1.0.0-SNAPSHOT
- ../parent-kotlin
-
-
-
-
- org.springframework.boot
- spring-boot-starter-web
-
-
- org.springframework.boot
- spring-boot-starter-json
-
-
- org.thymeleaf
- thymeleaf
-
-
- org.thymeleaf
- thymeleaf-spring4
- ${thymeleaf.version}
-
-
- org.hibernate
- hibernate-core
-
-
- org.hibernate
- hibernate-testing
- test
-
-
- com.h2database
- h2
- test
-
-
- org.springframework.boot
- spring-boot-starter-test
- test
-
-
-
-
-
-
- kotlin-maven-plugin
- org.jetbrains.kotlin
- ${kotlin.version}
-
-
- spring
- jpa
-
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-noarg
- ${kotlin.version}
-
-
-
-
-
-
-
- 3.0.7.RELEASE
-
-
-
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/allopen/SimpleConfiguration.kt b/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/allopen/SimpleConfiguration.kt
deleted file mode 100644
index 5d0a3e13bf..0000000000
--- a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/allopen/SimpleConfiguration.kt
+++ /dev/null
@@ -1,7 +0,0 @@
-package com.baeldung.kotlin.allopen
-
-import org.springframework.context.annotation.Configuration
-
-@Configuration
-class SimpleConfiguration {
-}
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/jpa/Person.kt b/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/jpa/Person.kt
deleted file mode 100644
index 2b2a2bd6d9..0000000000
--- a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/jpa/Person.kt
+++ /dev/null
@@ -1,21 +0,0 @@
-package com.baeldung.kotlin.jpa
-
-import javax.persistence.CascadeType
-import javax.persistence.Column
-import javax.persistence.Entity
-import javax.persistence.GeneratedValue
-import javax.persistence.GenerationType
-import javax.persistence.Id
-import javax.persistence.OneToMany
-
-@Entity
-data class Person @JvmOverloads constructor(
- @Id
- @GeneratedValue(strategy = GenerationType.IDENTITY)
- val id: Int,
- @Column(nullable = false)
- val name: String,
- @Column(nullable = true)
- val email: String? = null,
- @OneToMany(cascade = [CascadeType.ALL])
- val phoneNumbers: List? = null)
diff --git a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/jpa/PhoneNumber.kt b/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/jpa/PhoneNumber.kt
deleted file mode 100644
index 734e8b4cc4..0000000000
--- a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/jpa/PhoneNumber.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.baeldung.kotlin.jpa
-
-import javax.persistence.Column
-import javax.persistence.Entity
-import javax.persistence.GeneratedValue
-import javax.persistence.GenerationType
-import javax.persistence.Id
-
-@Entity
-data class PhoneNumber(
- @Id
- @GeneratedValue(strategy = GenerationType.IDENTITY)
- val id: Int,
- @Column(nullable = false)
- val number: String)
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mockmvc/MockMvcController.kt b/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mockmvc/MockMvcController.kt
deleted file mode 100644
index 68ab5f31a6..0000000000
--- a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mockmvc/MockMvcController.kt
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.baeldung.kotlin.mockmvc
-
-import org.springframework.http.MediaType
-import org.springframework.web.bind.annotation.RequestBody
-import org.springframework.web.bind.annotation.RequestMapping
-import org.springframework.web.bind.annotation.RequestMethod
-import org.springframework.web.bind.annotation.RestController
-
-@RestController
-@RequestMapping("/mockmvc")
-class MockMvcController {
-
- @RequestMapping(value = ["/validate"], method = [RequestMethod.POST], produces = [MediaType.APPLICATION_JSON_VALUE])
- fun validate(@RequestBody request: Request): Response {
- val error = if (request.name.first == "admin") {
- null
- } else {
- ERROR
- }
- return Response(error)
- }
-
- companion object {
- const val ERROR = "invalid user"
- }
-}
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mockmvc/MockMvcModel.kt b/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mockmvc/MockMvcModel.kt
deleted file mode 100644
index 3231b6f186..0000000000
--- a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mockmvc/MockMvcModel.kt
+++ /dev/null
@@ -1,10 +0,0 @@
-package com.baeldung.kotlin.mockmvc
-
-import com.fasterxml.jackson.annotation.JsonInclude
-
-data class Name(val first: String, val last: String)
-
-data class Request(val name: Name)
-
-@JsonInclude(JsonInclude.Include.NON_NULL)
-data class Response(val error: String?)
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mvc/ApplicationWebConfig.kt b/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mvc/ApplicationWebConfig.kt
deleted file mode 100644
index 23aadf282a..0000000000
--- a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mvc/ApplicationWebConfig.kt
+++ /dev/null
@@ -1,52 +0,0 @@
-package com.baeldung.kotlin.mvc
-
-import org.springframework.context.ApplicationContext
-import org.springframework.context.ApplicationContextAware
-import org.springframework.context.annotation.Bean
-import org.springframework.context.annotation.Configuration
-import org.springframework.web.servlet.config.annotation.EnableWebMvc
-import org.springframework.web.servlet.config.annotation.ViewControllerRegistry
-import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter
-import org.thymeleaf.spring4.SpringTemplateEngine
-import org.thymeleaf.spring4.templateresolver.SpringResourceTemplateResolver
-import org.thymeleaf.spring4.view.ThymeleafViewResolver
-import org.thymeleaf.templatemode.TemplateMode
-
-@EnableWebMvc
-@Configuration
-open class ApplicationWebConfig : WebMvcConfigurerAdapter(), ApplicationContextAware {
-
- private var applicationContext: ApplicationContext? = null
-
- override fun setApplicationContext(applicationContext: ApplicationContext?) {
- this.applicationContext = applicationContext
- }
-
- override fun addViewControllers(registry: ViewControllerRegistry?) {
- super.addViewControllers(registry)
-
- registry!!.addViewController("/welcome.html")
- }
-
- @Bean
- open fun templateResolver(): SpringResourceTemplateResolver {
- return SpringResourceTemplateResolver()
- .apply { prefix = "/WEB-INF/view/" }
- .apply { suffix = ".html"}
- .apply { templateMode = TemplateMode.HTML }
- .apply { setApplicationContext(applicationContext) }
- }
-
- @Bean
- open fun templateEngine(): SpringTemplateEngine {
- return SpringTemplateEngine()
- .apply { setTemplateResolver(templateResolver()) }
- }
-
- @Bean
- open fun viewResolver(): ThymeleafViewResolver {
- return ThymeleafViewResolver()
- .apply { templateEngine = templateEngine() }
- .apply { order = 1 }
- }
-}
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mvc/ApplicationWebInitializer.kt b/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mvc/ApplicationWebInitializer.kt
deleted file mode 100644
index 4c1a35823c..0000000000
--- a/spring-mvc-kotlin/src/main/kotlin/com/baeldung/kotlin/mvc/ApplicationWebInitializer.kt
+++ /dev/null
@@ -1,18 +0,0 @@
-package com.baeldung.kotlin.mvc
-
-import org.springframework.web.servlet.support.AbstractAnnotationConfigDispatcherServletInitializer
-
-class ApplicationWebInitializer : AbstractAnnotationConfigDispatcherServletInitializer() {
-
- override fun getRootConfigClasses(): Array>? {
- return null
- }
-
- override fun getServletMappings(): Array {
- return arrayOf("/")
- }
-
- override fun getServletConfigClasses(): Array> {
- return arrayOf(ApplicationWebConfig::class.java)
- }
-}
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/main/webapp/WEB-INF/spring-web-config.xml b/spring-mvc-kotlin/src/main/webapp/WEB-INF/spring-web-config.xml
deleted file mode 100644
index c7f110ea94..0000000000
--- a/spring-mvc-kotlin/src/main/webapp/WEB-INF/spring-web-config.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/main/webapp/WEB-INF/view/welcome.jsp b/spring-mvc-kotlin/src/main/webapp/WEB-INF/view/welcome.jsp
deleted file mode 100644
index 3f68f128bc..0000000000
--- a/spring-mvc-kotlin/src/main/webapp/WEB-INF/view/welcome.jsp
+++ /dev/null
@@ -1,7 +0,0 @@
-
- Welcome
-
-
- This is the body of the welcome view
-
-
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/main/webapp/WEB-INF/web.xml b/spring-mvc-kotlin/src/main/webapp/WEB-INF/web.xml
deleted file mode 100755
index cbee6a1b11..0000000000
--- a/spring-mvc-kotlin/src/main/webapp/WEB-INF/web.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
- Spring Kotlin MVC Application
-
-
- spring-web-mvc
- org.springframework.web.servlet.DispatcherServlet
- 1
-
- contextConfigLocation
- /WEB-INF/spring-web-config.xml
-
-
-
-
- spring-web-mvc
- /
-
-
-
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/test/kotlin/com/baeldung/kotlin/allopen/SimpleConfigurationTest.kt b/spring-mvc-kotlin/src/test/kotlin/com/baeldung/kotlin/allopen/SimpleConfigurationTest.kt
deleted file mode 100644
index 65a60c7157..0000000000
--- a/spring-mvc-kotlin/src/test/kotlin/com/baeldung/kotlin/allopen/SimpleConfigurationTest.kt
+++ /dev/null
@@ -1,19 +0,0 @@
-package com.baeldung.kotlin.allopen
-
-import org.junit.Test
-import org.junit.runner.RunWith
-import org.springframework.test.context.ContextConfiguration
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner
-import org.springframework.test.context.support.AnnotationConfigContextLoader
-
-@RunWith(SpringJUnit4ClassRunner::class)
-@ContextConfiguration(
- loader = AnnotationConfigContextLoader::class,
- classes = arrayOf(SimpleConfiguration::class))
-class SimpleConfigurationTest {
-
- @Test
- fun contextLoads() {
- }
-
-}
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/test/kotlin/com/baeldung/kotlin/jpa/HibernateKotlinIntegrationTest.kt b/spring-mvc-kotlin/src/test/kotlin/com/baeldung/kotlin/jpa/HibernateKotlinIntegrationTest.kt
deleted file mode 100644
index adac9d0cbf..0000000000
--- a/spring-mvc-kotlin/src/test/kotlin/com/baeldung/kotlin/jpa/HibernateKotlinIntegrationTest.kt
+++ /dev/null
@@ -1,66 +0,0 @@
-package com.baeldung.kotlin.jpa
-
-import org.hibernate.cfg.Configuration
-import org.hibernate.testing.junit4.BaseCoreFunctionalTestCase
-import org.hibernate.testing.transaction.TransactionUtil.doInHibernate
-import org.junit.Assert.assertTrue
-import org.junit.Test
-import java.io.IOException
-import java.util.*
-
-
-class HibernateKotlinIntegrationTest : BaseCoreFunctionalTestCase() {
-
- private val properties: Properties
- @Throws(IOException::class)
- get() {
- val properties = Properties()
- properties.load(javaClass.classLoader.getResourceAsStream("hibernate.properties"))
- return properties
- }
-
- override fun getAnnotatedClasses(): Array> {
- return arrayOf(Person::class.java, PhoneNumber::class.java)
- }
-
- override fun configure(configuration: Configuration) {
- super.configure(configuration)
- configuration.properties = properties
- }
-
- @Test
- fun givenPersonWithFullData_whenSaved_thenFound() {
- doInHibernate(({ this.sessionFactory() }), { session ->
- val personToSave = Person(0, "John", "jhon@test.com", Arrays.asList(PhoneNumber(0, "202-555-0171"), PhoneNumber(0, "202-555-0102")))
- session.persist(personToSave)
- val personFound = session.find(Person::class.java, personToSave.id)
- session.refresh(personFound)
-
- assertTrue(personToSave == personFound)
- })
- }
-
- @Test
- fun givenPerson_whenSaved_thenFound() {
- doInHibernate(({ this.sessionFactory() }), { session ->
- val personToSave = Person(0, "John")
- session.persist(personToSave)
- val personFound = session.find(Person::class.java, personToSave.id)
- session.refresh(personFound)
-
- assertTrue(personToSave == personFound)
- })
- }
-
- @Test
- fun givenPersonWithNullFields_whenSaved_thenFound() {
- doInHibernate(({ this.sessionFactory() }), { session ->
- val personToSave = Person(0, "John", null, null)
- session.persist(personToSave)
- val personFound = session.find(Person::class.java, personToSave.id)
- session.refresh(personFound)
-
- assertTrue(personToSave == personFound)
- })
- }
-}
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/test/kotlin/com/baeldung/kotlin/mockmvc/MockMvcControllerTest.kt b/spring-mvc-kotlin/src/test/kotlin/com/baeldung/kotlin/mockmvc/MockMvcControllerTest.kt
deleted file mode 100644
index 802cd4c1e7..0000000000
--- a/spring-mvc-kotlin/src/test/kotlin/com/baeldung/kotlin/mockmvc/MockMvcControllerTest.kt
+++ /dev/null
@@ -1,61 +0,0 @@
-package com.baeldung.kotlin.mockmvc
-
-import com.fasterxml.jackson.databind.ObjectMapper
-import org.junit.Test
-import org.junit.runner.RunWith
-import org.springframework.beans.factory.annotation.Autowired
-import org.springframework.boot.autoconfigure.SpringBootApplication
-import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest
-import org.springframework.http.MediaType
-import org.springframework.http.ResponseEntity.status
-import org.springframework.test.context.junit4.SpringRunner
-import org.springframework.test.web.servlet.MockMvc
-import org.springframework.test.web.servlet.post
-import org.springframework.test.web.servlet.request.MockMvcRequestBuilders
-import org.springframework.test.web.servlet.result.MockMvcResultHandlers
-import org.springframework.test.web.servlet.result.MockMvcResultMatchers
-
-@RunWith(SpringRunner::class)
-@WebMvcTest
-class MockMvcControllerTest {
-
- @Autowired lateinit var mockMvc: MockMvc
- @Autowired lateinit var mapper: ObjectMapper
-
- @Test
- fun `when supported user is given then raw MockMvc-based validation is successful`() {
- mockMvc.perform(MockMvcRequestBuilders
- .post("/mockmvc/validate")
- .accept(MediaType.APPLICATION_JSON)
- .contentType(MediaType.APPLICATION_JSON)
- .content(mapper.writeValueAsString(Request(Name("admin", "")))))
- .andExpect(MockMvcResultMatchers.status().isOk)
- .andExpect(MockMvcResultMatchers.content().contentType(MediaType.APPLICATION_JSON))
- .andExpect(MockMvcResultMatchers.content().string("{}"))
- }
-
- @Test
- fun `when supported user is given then kotlin DSL-based validation is successful`() {
- doTest(Request(Name("admin", "")), Response(null))
- }
-
- @Test
- fun `when unsupported user is given then validation is failed`() {
- doTest(Request(Name("some-name", "some-surname")), Response(MockMvcController.ERROR))
- }
-
- private fun doTest(input: Request, expectation: Response) {
- mockMvc.post("/mockmvc/validate") {
- contentType = MediaType.APPLICATION_JSON
- content = mapper.writeValueAsString(input)
- accept = MediaType.APPLICATION_JSON
- }.andExpect {
- status { isOk }
- content { contentType(MediaType.APPLICATION_JSON) }
- content { json(mapper.writeValueAsString(expectation)) }
- }
- }
-}
-
-@SpringBootApplication
-class MockMvcApplication
\ No newline at end of file
diff --git a/spring-mvc-kotlin/src/test/resources/hibernate.properties b/spring-mvc-kotlin/src/test/resources/hibernate.properties
deleted file mode 100644
index 7b8764637b..0000000000
--- a/spring-mvc-kotlin/src/test/resources/hibernate.properties
+++ /dev/null
@@ -1,9 +0,0 @@
-hibernate.connection.driver_class=org.h2.Driver
-hibernate.connection.url=jdbc:h2:mem:mydb1;DB_CLOSE_DELAY=-1
-hibernate.connection.username=sa
-hibernate.connection.autocommit=true
-jdbc.password=
-
-hibernate.dialect=org.hibernate.dialect.H2Dialect
-hibernate.show_sql=true
-hibernate.hbm2ddl.auto=create-drop
\ No newline at end of file
diff --git a/spring-mvc-xml/src/main/resources/messages.properties b/spring-mvc-xml/src/main/resources/messages.properties
deleted file mode 100644
index 2a3cccf76c..0000000000
--- a/spring-mvc-xml/src/main/resources/messages.properties
+++ /dev/null
@@ -1,2 +0,0 @@
-required.name = Name is required!
-NotEmpty.person.password = Password is required!
\ No newline at end of file
diff --git a/spring-reactive-kotlin/README.md b/spring-reactive-kotlin/README.md
deleted file mode 100644
index d6ce3b7645..0000000000
--- a/spring-reactive-kotlin/README.md
+++ /dev/null
@@ -1,7 +0,0 @@
-## Spring Reactive Kotlin
-
-This module contains articles about reactive Kotlin
-
-### Relevant Articles:
-- [Spring Webflux with Kotlin](https://www.baeldung.com/spring-webflux-kotlin)
-- [Kotlin Reactive Microservice With Spring Boot](https://www.baeldung.com/spring-boot-kotlin-reactive-microservice)
diff --git a/spring-reactive-kotlin/pom.xml b/spring-reactive-kotlin/pom.xml
deleted file mode 100644
index cbb143f6ec..0000000000
--- a/spring-reactive-kotlin/pom.xml
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
- 4.0.0
- spring-reactive-kotlin
- spring-reactive-kotlin
- Demo project for Spring Boot
-
- jar
-
-
- com.baeldung
- parent-kotlin
- 1.0.0-SNAPSHOT
- ../parent-kotlin
-
-
-
-
- org.springframework.boot
- spring-boot-starter-web
-
-
- org.springframework.boot
- spring-boot-starter-webflux
-
-
- org.springframework.boot.experimental
- spring-boot-starter-data-r2dbc
-
-
- org.springframework.boot
- spring-boot-starter-actuator
-
-
- io.r2dbc
- r2dbc-h2
-
-
- com.fasterxml.jackson.module
- jackson-module-kotlin
-
-
-
- org.springframework.boot
- spring-boot-starter-test
- test
-
-
- io.projectreactor
- reactor-test
- test
-
-
-
- org.springframework.boot.experimental
- spring-boot-test-autoconfigure-r2dbc
- test
-
-
- io.projectreactor
- reactor-test
- test
-
-
-
-
-
-
-
- org.springframework.boot.experimental
- spring-boot-bom-r2dbc
- 0.1.0.M3
- pom
- import
-
-
-
-
-
- src/main/kotlin
- src/test/kotlin
-
-
- kotlin-maven-plugin
-
-
- compile
- compile
-
- compile
-
-
-
- test-compile
- test-compile
-
- test-compile
-
-
-
- org.jetbrains.kotlin
- ${kotlin.version}
-
-
- -Xjsr305=strict
-
- 1.8
-
- spring
- jpa
-
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-allopen
- ${kotlin.version}
-
-
- org.jetbrains.kotlin
- kotlin-maven-noarg
- ${kotlin.version}
-
-
-
-
-
-
-
- 1.8
- 1.3.70
- 2.2.5.RELEASE
-
-
-
-
- spring-milestones
- Spring Milestones
- https://repo.spring.io/milestone
-
-
-
-
-
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/HealthTrackerApplication.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/HealthTrackerApplication.kt
deleted file mode 100644
index c70057b5de..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/HealthTrackerApplication.kt
+++ /dev/null
@@ -1,11 +0,0 @@
-package com.baeldung.bootmicroservice
-
-import org.springframework.boot.autoconfigure.SpringBootApplication
-import org.springframework.boot.runApplication
-
-@SpringBootApplication
-class HealthTrackerApplication
-
-fun main(args: Array) {
- runApplication(*args)
-}
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/config/DBConfiguration.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/config/DBConfiguration.kt
deleted file mode 100644
index b14682cc5c..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/config/DBConfiguration.kt
+++ /dev/null
@@ -1,28 +0,0 @@
-package com.baeldung.bootmicroservice.config;
-
-import org.springframework.context.annotation.Configuration
-import org.springframework.data.r2dbc.core.DatabaseClient
-
-@Configuration
-class DBConfiguration(db: DatabaseClient) {
- init {
- val initDb = db.execute {
- """ CREATE TABLE IF NOT EXISTS profile (
- id SERIAL PRIMARY KEY,
- first_name VARCHAR(20) NOT NULL,
- last_name VARCHAR(20) NOT NULL,
- birth_date DATE NOT NULL
- );
- CREATE TABLE IF NOT EXISTS health_record(
- id SERIAL PRIMARY KEY,
- profile_id LONG NOT NULL,
- temperature DECIMAL NOT NULL,
- blood_pressure DECIMAL NOT NULL,
- heart_rate DECIMAL,
- date DATE NOT NULL
- );
- """
- }
- initDb.then().subscribe()
- }
-}
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/controller/HealthRecordController.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/controller/HealthRecordController.kt
deleted file mode 100644
index 620f187b7b..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/controller/HealthRecordController.kt
+++ /dev/null
@@ -1,44 +0,0 @@
-package com.baeldung.bootmicroservice.controller
-
-import com.baeldung.bootmicroservice.model.AverageHealthStatus
-import com.baeldung.bootmicroservice.model.HealthRecord
-import com.baeldung.bootmicroservice.repository.HealthRecordRepository
-import org.springframework.web.bind.annotation.GetMapping
-import org.springframework.web.bind.annotation.PathVariable
-import org.springframework.web.bind.annotation.PostMapping
-import org.springframework.web.bind.annotation.RequestBody
-import org.springframework.web.bind.annotation.RestController
-import reactor.core.publisher.Mono
-
-@RestController
-class HealthRecordController(val repository: HealthRecordRepository) {
-
- @PostMapping("/health/{profileId}/record")
- fun storeHealthRecord(@PathVariable("profileId") profileId: Long, @RequestBody record: HealthRecord): Mono =
- repository.save(HealthRecord(null
- , profileId
- , record.temperature
- , record.bloodPressure
- , record.heartRate
- , record.date))
-
- @GetMapping("/health/{profileId}/avg")
- fun fetchHealthRecordAverage(@PathVariable("profileId") profileId: Long): Mono =
- repository.findByProfileId(profileId)
- .reduce(
- AverageHealthStatus(0, 0.0, 0.0, 0.0)
- , { s, r ->
- AverageHealthStatus(s.cnt + 1
- , s.temperature + r.temperature
- , s.bloodPressure + r.bloodPressure
- , s.heartRate + r.heartRate
- )
- }
- ).map { s ->
- AverageHealthStatus(s.cnt
- , if (s.cnt != 0) s.temperature / s.cnt else 0.0
- , if (s.cnt != 0) s.bloodPressure / s.cnt else 0.0
- , if (s.cnt != 0) s.heartRate / s.cnt else 0.0)
- }
-
-}
\ No newline at end of file
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/controller/ProfileController.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/controller/ProfileController.kt
deleted file mode 100644
index 1dc3bcdc50..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/controller/ProfileController.kt
+++ /dev/null
@@ -1,15 +0,0 @@
-package com.baeldung.bootmicroservice.controller
-
-import com.baeldung.bootmicroservice.model.Profile
-import com.baeldung.bootmicroservice.repository.ProfileRepository
-import org.springframework.web.bind.annotation.PostMapping
-import org.springframework.web.bind.annotation.RequestBody
-import org.springframework.web.bind.annotation.RestController
-import reactor.core.publisher.Mono
-
-@RestController
-class ProfileController(val repository: ProfileRepository) {
-
- @PostMapping("/profile")
- fun save(@RequestBody profile: Profile): Mono = repository.save(profile)
-}
\ No newline at end of file
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/model/AverageHealthStatus.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/model/AverageHealthStatus.kt
deleted file mode 100644
index 3141146b9c..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/model/AverageHealthStatus.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-package com.baeldung.bootmicroservice.model;
-
-class AverageHealthStatus(var cnt: Int, var temperature: Double, var bloodPressure: Double, var heartRate: Double)
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/model/HealthRecord.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/model/HealthRecord.kt
deleted file mode 100644
index 71c534027f..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/model/HealthRecord.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.bootmicroservice.model
-
-import org.springframework.data.annotation.Id
-import org.springframework.data.relational.core.mapping.Table
-import java.time.LocalDate
-
-@Table
-data class HealthRecord(@Id var id: Long?, var profileId: Long?, var temperature: Double, var bloodPressure: Double, var heartRate: Double, var date: LocalDate)
\ No newline at end of file
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/model/Profile.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/model/Profile.kt
deleted file mode 100644
index cbb7e675ea..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/model/Profile.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.bootmicroservice.model
-
-import org.springframework.data.annotation.Id
-import org.springframework.data.relational.core.mapping.Table
-import java.time.LocalDateTime
-
-@Table
-data class Profile(@Id var id:Long?, var firstName : String, var lastName : String, var birthDate: LocalDateTime)
\ No newline at end of file
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/repository/HealthRecordRepository.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/repository/HealthRecordRepository.kt
deleted file mode 100644
index 8cc91f06e4..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/repository/HealthRecordRepository.kt
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.baeldung.bootmicroservice.repository
-
-import com.baeldung.bootmicroservice.model.HealthRecord
-import org.springframework.data.r2dbc.repository.Query
-import org.springframework.data.repository.reactive.ReactiveCrudRepository
-import org.springframework.stereotype.Repository
-import reactor.core.publisher.Flux
-
-@Repository
-interface HealthRecordRepository: ReactiveCrudRepository {
- @Query("select p.* from health_record p where p.profile_id = :profileId ")
- fun findByProfileId(profileId: Long): Flux
-}
\ No newline at end of file
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/repository/ProfileRepository.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/repository/ProfileRepository.kt
deleted file mode 100644
index eee8c5fcbe..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/bootmicroservice/repository/ProfileRepository.kt
+++ /dev/null
@@ -1,8 +0,0 @@
-package com.baeldung.bootmicroservice.repository
-
-import com.baeldung.bootmicroservice.model.Profile
-import org.springframework.data.repository.reactive.ReactiveCrudRepository
-import org.springframework.stereotype.Repository
-
-@Repository
-interface ProfileRepository: ReactiveCrudRepository
\ No newline at end of file
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Application.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Application.kt
deleted file mode 100644
index 87ac7417b7..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Application.kt
+++ /dev/null
@@ -1,11 +0,0 @@
-package com.baeldung.springreactivekotlin
-
-import org.springframework.boot.SpringApplication
-import org.springframework.boot.autoconfigure.SpringBootApplication
-
-@SpringBootApplication
-class Application
-
-fun main(args: Array) {
- SpringApplication.run(Application::class.java, *args)
-}
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Controller.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Controller.kt
deleted file mode 100644
index 76f8a62b85..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Controller.kt
+++ /dev/null
@@ -1,18 +0,0 @@
-package com.baeldung.springreactivekotlin
-
-import org.springframework.http.MediaType
-import org.springframework.stereotype.Controller
-import org.springframework.web.bind.annotation.GetMapping
-import org.springframework.web.bind.annotation.ResponseBody
-import reactor.core.publisher.Flux
-
-@Controller
-class Controller {
-
- @GetMapping(path = ["/numbers"], produces = [MediaType.APPLICATION_STREAM_JSON_VALUE])
- @ResponseBody
- fun getNumbers(): Flux {
- return Flux.range(1, 100)
- }
-
-}
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Device.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Device.kt
deleted file mode 100644
index 9eb6eb8488..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Device.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-package com.baeldung.springreactivekotlin
-
-class Device(val name: String, val reading: Double) {
-
-}
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/HomeSensorsHandler.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/HomeSensorsHandler.kt
deleted file mode 100644
index 0ef9f37f1b..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/HomeSensorsHandler.kt
+++ /dev/null
@@ -1,36 +0,0 @@
-package com.baeldung.springreactivekotlin
-
-import org.springframework.stereotype.Component
-import org.springframework.web.reactive.function.BodyInserters.fromObject
-import org.springframework.web.reactive.function.server.ServerRequest
-import org.springframework.web.reactive.function.server.ServerResponse
-import reactor.core.publisher.Mono
-
-@Component
-class HomeSensorsHandler {
-
- var data = mapOf("lamp" to arrayOf(0.7, 0.65, 0.67), "fridge" to arrayOf(12.0, 11.9, 12.5))
-
- fun setLight(request: ServerRequest): Mono = ServerResponse.ok().build()
-
- fun getLightReading(request: ServerRequest): Mono =
- ServerResponse.ok().body(fromObject(data["lamp"]!!))
-
- fun getDeviceReadings(request: ServerRequest): Mono {
- val id = request.pathVariable("id")
- return ServerResponse.ok().body(fromObject(Device(id, 1.0)))
- }
-
- fun getAllDevices(request: ServerRequest): Mono =
- ServerResponse.ok().body(fromObject(arrayOf("lamp", "tv")))
-
- fun getAllDeviceApi(request: ServerRequest): Mono =
- ServerResponse.ok().body(fromObject(arrayListOf("kettle", "fridge")))
-
- fun setDeviceReadingApi(request: ServerRequest): Mono {
- return request.bodyToMono(Device::class.java).flatMap { it ->
- ServerResponse.ok().body(fromObject(Device(it.name.toUpperCase(), it.reading)))
- }
- }
-
-}
\ No newline at end of file
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/HomeSensorsRouters.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/HomeSensorsRouters.kt
deleted file mode 100644
index 27d87afd89..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/HomeSensorsRouters.kt
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.baeldung.springreactivekotlin
-
-import org.springframework.context.annotation.Bean
-import org.springframework.context.annotation.Configuration
-import org.springframework.http.MediaType.APPLICATION_JSON
-import org.springframework.http.MediaType.TEXT_HTML
-import org.springframework.web.reactive.function.server.router
-
-@Configuration
-class HomeSensorsRouters(private val handler: HomeSensorsHandler) {
-
- @Bean
- fun roomsRouter() = router {
- (accept(TEXT_HTML) and "/room").nest {
- GET("/light", handler::getLightReading)
- POST("/light", handler::setLight)
- }
- }
-
- @Bean
- fun deviceRouter() = router {
- accept(TEXT_HTML).nest {
- (GET("/device/") or GET("/devices/")).invoke(handler::getAllDevices)
- GET("/device/{id}", handler::getDeviceReadings)
- }
- (accept(APPLICATION_JSON) and "/api").nest {
- (GET("/device/") or GET("/devices/")).invoke(handler::getAllDeviceApi)
- POST("/device/", handler::setDeviceReadingApi)
- }
- }
-
-}
diff --git a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Routes.kt b/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Routes.kt
deleted file mode 100644
index 9015fc5df8..0000000000
--- a/spring-reactive-kotlin/src/main/kotlin/com/baeldung/springreactivekotlin/Routes.kt
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.baeldung.springreactivekotlin
-
-import org.springframework.context.annotation.Bean
-import org.springframework.context.annotation.Configuration
-import org.springframework.web.reactive.function.server.ServerResponse
-import org.springframework.web.reactive.function.server.router
-
-import org.springframework.web.reactive.function.BodyInserters.fromObject
-
-@Configuration
-class SimpleRoute {
- @Bean
- fun route() = router {
- GET("/route") { _ -> ServerResponse.ok().body(fromObject(arrayOf(1, 2, 3))) }
- }
-}
\ No newline at end of file
diff --git a/spring-reactive-kotlin/src/main/resources/application.yml b/spring-reactive-kotlin/src/main/resources/application.yml
deleted file mode 100644
index d75683f905..0000000000
--- a/spring-reactive-kotlin/src/main/resources/application.yml
+++ /dev/null
@@ -1 +0,0 @@
-management.endpoints.web.exposure.include: health,metrics
\ No newline at end of file
diff --git a/spring-reactive-kotlin/src/test/kotlin/RoutesTest.kt b/spring-reactive-kotlin/src/test/kotlin/RoutesTest.kt
deleted file mode 100644
index ba640070e3..0000000000
--- a/spring-reactive-kotlin/src/test/kotlin/RoutesTest.kt
+++ /dev/null
@@ -1,35 +0,0 @@
-package veontomo
-
-import com.baeldung.springreactivekotlin.SimpleRoute
-import org.junit.Before
-import org.junit.Test
-import org.springframework.test.web.reactive.server.WebTestClient
-
-class RoutesTest {
-
- lateinit var client: WebTestClient
-
- @Before
- fun init() {
- this.client = WebTestClient.bindToRouterFunction(SimpleRoute().route()).build()
- }
-
-
- @Test
- fun whenRequestToRoute_thenStatusShouldBeOk() {
- client.get()
- .uri("/route")
- .exchange()
- .expectStatus().isOk
- }
-
-
- @Test
- fun whenRequestToRoute_thenBodyShouldContainArray123() {
- client.get()
- .uri("/route")
- .exchange()
- .expectBody()
- .json("[1, 2, 3]")
- }
-}
\ No newline at end of file
diff --git a/spring-reactive-kotlin/src/test/kotlin/com/baeldung/bootmicroservice/controller/ProfileControllerTest.kt b/spring-reactive-kotlin/src/test/kotlin/com/baeldung/bootmicroservice/controller/ProfileControllerTest.kt
deleted file mode 100644
index 51481af3d7..0000000000
--- a/spring-reactive-kotlin/src/test/kotlin/com/baeldung/bootmicroservice/controller/ProfileControllerTest.kt
+++ /dev/null
@@ -1,51 +0,0 @@
-package com.baeldung.bootmicroservice.controller;
-
-import com.baeldung.bootmicroservice.model.Profile
-import com.fasterxml.jackson.databind.ObjectMapper
-import org.junit.jupiter.api.BeforeEach
-import org.junit.jupiter.api.Test
-import org.springframework.beans.factory.annotation.Autowired
-import org.springframework.boot.test.context.SpringBootTest
-import org.springframework.http.MediaType
-import org.springframework.test.web.reactive.server.WebTestClient
-import java.time.LocalDateTime
-
-@SpringBootTest
-class ProfileControllerTest {
- @Autowired
- lateinit var controller: ProfileController
-
- @Autowired
- lateinit var mapper: ObjectMapper ;
-
- lateinit var client: WebTestClient
- lateinit var profile: String
-
- @BeforeEach
- fun setup() {
- client = WebTestClient.bindToController(controller).build()
- profile = mapper.writeValueAsString(Profile(null, "kotlin", "reactive", LocalDateTime.now()))
- }
-
- @Test
- fun whenRequestProfile_thenStatusShouldBeOk() {
- client.post()
- .uri("/profile")
- .contentType(MediaType.APPLICATION_JSON)
- .bodyValue(profile)
- .exchange()
- .expectStatus().isOk
- }
-
- @Test
- fun whenRequestProfile_thenIdShouldBeNotNull() {
- client.post()
- .uri("/profile")
- .contentType(MediaType.APPLICATION_JSON)
- .bodyValue(profile)
- .exchange()
- .expectBody()
- .jsonPath("$.id")
- .isNotEmpty
- }
-}
diff --git a/spring-rest-compress/README.md b/spring-rest-compress/README.md
deleted file mode 100644
index ce627d8595..0000000000
--- a/spring-rest-compress/README.md
+++ /dev/null
@@ -1,6 +0,0 @@
-## Spring REST Compress
-
-This module contains articles about request compression with Spring
-
-### Relevant Articles:
-- [How to compress requests using the Spring RestTemplate](https://www.baeldung.com/spring-resttemplate-compressing-requests)
diff --git a/spring-rest-compress/pom.xml b/spring-rest-compress/pom.xml
deleted file mode 100644
index 9ff0be9682..0000000000
--- a/spring-rest-compress/pom.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
- 4.0.0
- spring-rest-compress
- 0.0.1-SNAPSHOT
- spring-rest-compress
-
-
- com.baeldung
- parent-boot-2
- 0.0.1-SNAPSHOT
- ../parent-boot-2
-
-
-
-
- org.springframework.boot
- spring-boot-starter-web
-
-
- org.springframework.boot
- spring-boot-starter-tomcat
-
-
-
-
-
- org.springframework.boot
- spring-boot-starter-jetty
-
-
-
- org.apache.httpcomponents
- httpclient
-
-
-
- commons-io
- commons-io
- ${commons-io.version}
-
-
-
- org.springframework.boot
- spring-boot-starter-test
- test
-
-
-
-
-
-
- org.springframework.boot
- spring-boot-maven-plugin
-
-
-
-
-
- 1.8
- 2.6
-
-
-
diff --git a/spring-security-modules/pom.xml b/spring-security-modules/pom.xml
index 0fc2b49fa7..99dea4bc67 100644
--- a/spring-security-modules/pom.xml
+++ b/spring-security-modules/pom.xml
@@ -14,6 +14,10 @@
+ spring-ldap
+ spring-5-security
+ spring-5-security-cognito
+ spring-5-security-oauth
spring-security-acl
spring-security-auth0
spring-security-web-angular/server
@@ -38,7 +42,8 @@
spring-security-oauth2-sso
spring-security-web-thymeleaf
spring-security-web-x509
- spring-security-kotlin-dsl
+ spring-session
+ spring-social-login
diff --git a/spring-5-security-cognito/README.md b/spring-security-modules/spring-5-security-cognito/README.md
similarity index 100%
rename from spring-5-security-cognito/README.md
rename to spring-security-modules/spring-5-security-cognito/README.md
diff --git a/spring-5-security-cognito/pom.xml b/spring-security-modules/spring-5-security-cognito/pom.xml
similarity index 97%
rename from spring-5-security-cognito/pom.xml
rename to spring-security-modules/spring-5-security-cognito/pom.xml
index 5f8f328086..877dbd52fa 100644
--- a/spring-5-security-cognito/pom.xml
+++ b/spring-security-modules/spring-5-security-cognito/pom.xml
@@ -12,7 +12,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-5-security-cognito/src/main/java/com/baeldung/cognito/CognitoWebConfiguration.java b/spring-security-modules/spring-5-security-cognito/src/main/java/com/baeldung/cognito/CognitoWebConfiguration.java
similarity index 100%
rename from spring-5-security-cognito/src/main/java/com/baeldung/cognito/CognitoWebConfiguration.java
rename to spring-security-modules/spring-5-security-cognito/src/main/java/com/baeldung/cognito/CognitoWebConfiguration.java
diff --git a/spring-5-security-cognito/src/main/java/com/baeldung/cognito/SecurityConfiguration.java b/spring-security-modules/spring-5-security-cognito/src/main/java/com/baeldung/cognito/SecurityConfiguration.java
similarity index 100%
rename from spring-5-security-cognito/src/main/java/com/baeldung/cognito/SecurityConfiguration.java
rename to spring-security-modules/spring-5-security-cognito/src/main/java/com/baeldung/cognito/SecurityConfiguration.java
diff --git a/spring-5-security-cognito/src/main/java/com/baeldung/cognito/SpringCognitoApplication.java b/spring-security-modules/spring-5-security-cognito/src/main/java/com/baeldung/cognito/SpringCognitoApplication.java
similarity index 100%
rename from spring-5-security-cognito/src/main/java/com/baeldung/cognito/SpringCognitoApplication.java
rename to spring-security-modules/spring-5-security-cognito/src/main/java/com/baeldung/cognito/SpringCognitoApplication.java
diff --git a/spring-5-security-cognito/src/main/resources/application.yml b/spring-security-modules/spring-5-security-cognito/src/main/resources/application.yml
similarity index 100%
rename from spring-5-security-cognito/src/main/resources/application.yml
rename to spring-security-modules/spring-5-security-cognito/src/main/resources/application.yml
diff --git a/spring-5-security/src/main/resources/logback.xml b/spring-security-modules/spring-5-security-cognito/src/main/resources/logback.xml
similarity index 100%
rename from spring-5-security/src/main/resources/logback.xml
rename to spring-security-modules/spring-5-security-cognito/src/main/resources/logback.xml
diff --git a/spring-5-security-cognito/src/main/resources/templates/home.html b/spring-security-modules/spring-5-security-cognito/src/main/resources/templates/home.html
similarity index 100%
rename from spring-5-security-cognito/src/main/resources/templates/home.html
rename to spring-security-modules/spring-5-security-cognito/src/main/resources/templates/home.html
diff --git a/spring-5-security-oauth/README.md b/spring-security-modules/spring-5-security-oauth/README.md
similarity index 100%
rename from spring-5-security-oauth/README.md
rename to spring-security-modules/spring-5-security-oauth/README.md
diff --git a/spring-5-security-oauth/pom.xml b/spring-security-modules/spring-5-security-oauth/pom.xml
similarity index 98%
rename from spring-5-security-oauth/pom.xml
rename to spring-security-modules/spring-5-security-oauth/pom.xml
index 19aaa576c8..d31cf293a3 100644
--- a/spring-5-security-oauth/pom.xml
+++ b/spring-security-modules/spring-5-security-oauth/pom.xml
@@ -12,7 +12,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/jersey/JerseyApplication.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/jersey/JerseyApplication.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/jersey/JerseyApplication.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/jersey/JerseyApplication.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/jersey/JerseyResource.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/jersey/JerseyResource.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/jersey/JerseyResource.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/jersey/JerseyResource.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/jersey/RestConfig.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/jersey/RestConfig.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/jersey/RestConfig.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/jersey/RestConfig.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/jersey/SecurityConfig.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/jersey/SecurityConfig.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/jersey/SecurityConfig.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/jersey/SecurityConfig.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/CustomRequestSecurityConfig.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/CustomRequestSecurityConfig.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2/CustomRequestSecurityConfig.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/CustomRequestSecurityConfig.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/LoginController.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/LoginController.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2/LoginController.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/LoginController.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/MvcConfig.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/MvcConfig.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2/MvcConfig.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/MvcConfig.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/SecurityConfig.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/SecurityConfig.java
similarity index 92%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2/SecurityConfig.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/SecurityConfig.java
index e17e339142..c9164e2215 100644
--- a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/SecurityConfig.java
+++ b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/SecurityConfig.java
@@ -12,6 +12,8 @@ import org.springframework.core.env.Environment;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.config.oauth2.client.CommonOAuth2Provider;
+import org.springframework.security.oauth2.client.InMemoryOAuth2AuthorizedClientService;
+import org.springframework.security.oauth2.client.OAuth2AuthorizedClientService;
import org.springframework.security.oauth2.client.endpoint.DefaultAuthorizationCodeTokenResponseClient;
import org.springframework.security.oauth2.client.endpoint.OAuth2AccessTokenResponseClient;
import org.springframework.security.oauth2.client.endpoint.OAuth2AuthorizationCodeGrantRequest;
@@ -46,7 +48,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
.defaultSuccessUrl("/loginSuccess")
.failureUrl("/loginFailure");
}
-
+
@Bean
public AuthorizationRequestRepository authorizationRequestRepository() {
return new HttpSessionOAuth2AuthorizationRequestRepository();
@@ -58,11 +60,10 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
return accessTokenResponseClient;
}
-
// additional configuration for non-Spring Boot projects
private static List clients = Arrays.asList("google", "facebook");
- //@Bean
+// @Bean
public ClientRegistrationRepository clientRegistrationRepository() {
List registrations = clients.stream()
.map(c -> getRegistration(c))
@@ -72,6 +73,11 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
return new InMemoryClientRegistrationRepository(registrations);
}
+// @Bean
+ public OAuth2AuthorizedClientService authorizedClientService() {
+ return new InMemoryOAuth2AuthorizedClientService(clientRegistrationRepository());
+ }
+
private static String CLIENT_PROPERTY_KEY = "spring.security.oauth2.client.registration.";
@Autowired
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/SpringOAuthApplication.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/SpringOAuthApplication.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2/SpringOAuthApplication.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2/SpringOAuthApplication.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/ExtractorsApplication.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/ExtractorsApplication.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/ExtractorsApplication.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/ExtractorsApplication.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/configuration/SecurityConfig.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/configuration/SecurityConfig.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/configuration/SecurityConfig.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/configuration/SecurityConfig.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/custom/BaeldungAuthoritiesExtractor.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/custom/BaeldungAuthoritiesExtractor.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/custom/BaeldungAuthoritiesExtractor.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/custom/BaeldungAuthoritiesExtractor.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/custom/BaeldungPrincipalExtractor.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/custom/BaeldungPrincipalExtractor.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/custom/BaeldungPrincipalExtractor.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/custom/BaeldungPrincipalExtractor.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/github/GithubAuthoritiesExtractor.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/github/GithubAuthoritiesExtractor.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/github/GithubAuthoritiesExtractor.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/github/GithubAuthoritiesExtractor.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/github/GithubPrincipalExtractor.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/github/GithubPrincipalExtractor.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/github/GithubPrincipalExtractor.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2extractors/extractor/github/GithubPrincipalExtractor.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomAuthorizationRequestResolver.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomAuthorizationRequestResolver.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomAuthorizationRequestResolver.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomAuthorizationRequestResolver.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomRequestEntityConverter.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomRequestEntityConverter.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomRequestEntityConverter.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomRequestEntityConverter.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomTokenResponseConverter.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomTokenResponseConverter.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomTokenResponseConverter.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/CustomTokenResponseConverter.java
diff --git a/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/LinkedinTokenResponseConverter.java b/spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/LinkedinTokenResponseConverter.java
similarity index 100%
rename from spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/LinkedinTokenResponseConverter.java
rename to spring-security-modules/spring-5-security-oauth/src/main/java/com/baeldung/oauth2request/LinkedinTokenResponseConverter.java
diff --git a/spring-5-security-oauth/src/main/resources/application-oauth2-extractors-baeldung.properties b/spring-security-modules/spring-5-security-oauth/src/main/resources/application-oauth2-extractors-baeldung.properties
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/application-oauth2-extractors-baeldung.properties
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/application-oauth2-extractors-baeldung.properties
diff --git a/spring-5-security-oauth/src/main/resources/application-oauth2-extractors-github.properties b/spring-security-modules/spring-5-security-oauth/src/main/resources/application-oauth2-extractors-github.properties
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/application-oauth2-extractors-github.properties
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/application-oauth2-extractors-github.properties
diff --git a/spring-5-security-oauth/src/main/resources/application-oauth2.properties b/spring-security-modules/spring-5-security-oauth/src/main/resources/application-oauth2.properties
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/application-oauth2.properties
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/application-oauth2.properties
diff --git a/spring-5-security-oauth/src/main/resources/application.properties b/spring-security-modules/spring-5-security-oauth/src/main/resources/application.properties
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/application.properties
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/application.properties
diff --git a/spring-5-security-oauth/src/main/resources/default-application.properties b/spring-security-modules/spring-5-security-oauth/src/main/resources/default-application.properties
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/default-application.properties
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/default-application.properties
diff --git a/spring-5-security-oauth/src/main/resources/jersey-application.properties b/spring-security-modules/spring-5-security-oauth/src/main/resources/jersey-application.properties
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/jersey-application.properties
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/jersey-application.properties
diff --git a/spring-boot-modules/spring-boot-kotlin/src/main/resources/logback.xml b/spring-security-modules/spring-5-security-oauth/src/main/resources/logback.xml
similarity index 100%
rename from spring-boot-modules/spring-boot-kotlin/src/main/resources/logback.xml
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/logback.xml
diff --git a/spring-5-security-oauth/src/main/resources/static/css/main.css b/spring-security-modules/spring-5-security-oauth/src/main/resources/static/css/main.css
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/static/css/main.css
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/static/css/main.css
diff --git a/spring-5-security-oauth/src/main/resources/templates/index.html b/spring-security-modules/spring-5-security-oauth/src/main/resources/templates/index.html
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/templates/index.html
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/templates/index.html
diff --git a/spring-5-security-oauth/src/main/resources/templates/loginFailure.html b/spring-security-modules/spring-5-security-oauth/src/main/resources/templates/loginFailure.html
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/templates/loginFailure.html
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/templates/loginFailure.html
diff --git a/spring-5-security-oauth/src/main/resources/templates/loginSuccess.html b/spring-security-modules/spring-5-security-oauth/src/main/resources/templates/loginSuccess.html
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/templates/loginSuccess.html
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/templates/loginSuccess.html
diff --git a/spring-5-security-oauth/src/main/resources/templates/oauth2_extractors.html b/spring-security-modules/spring-5-security-oauth/src/main/resources/templates/oauth2_extractors.html
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/templates/oauth2_extractors.html
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/templates/oauth2_extractors.html
diff --git a/spring-5-security-oauth/src/main/resources/templates/oauth_login.html b/spring-security-modules/spring-5-security-oauth/src/main/resources/templates/oauth_login.html
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/templates/oauth_login.html
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/templates/oauth_login.html
diff --git a/spring-5-security-oauth/src/main/resources/templates/securedPage.html b/spring-security-modules/spring-5-security-oauth/src/main/resources/templates/securedPage.html
similarity index 100%
rename from spring-5-security-oauth/src/main/resources/templates/securedPage.html
rename to spring-security-modules/spring-5-security-oauth/src/main/resources/templates/securedPage.html
diff --git a/spring-5-security-oauth/src/test/java/com/baeldung/jersey/JerseyResourceUnitTest.java b/spring-security-modules/spring-5-security-oauth/src/test/java/com/baeldung/jersey/JerseyResourceUnitTest.java
similarity index 100%
rename from spring-5-security-oauth/src/test/java/com/baeldung/jersey/JerseyResourceUnitTest.java
rename to spring-security-modules/spring-5-security-oauth/src/test/java/com/baeldung/jersey/JerseyResourceUnitTest.java
diff --git a/spring-5-security-oauth/src/test/java/com/baeldung/oauth2extractors/ExtractorsUnitTest.java b/spring-security-modules/spring-5-security-oauth/src/test/java/com/baeldung/oauth2extractors/ExtractorsUnitTest.java
similarity index 100%
rename from spring-5-security-oauth/src/test/java/com/baeldung/oauth2extractors/ExtractorsUnitTest.java
rename to spring-security-modules/spring-5-security-oauth/src/test/java/com/baeldung/oauth2extractors/ExtractorsUnitTest.java
diff --git a/spring-5-security/README.md b/spring-security-modules/spring-5-security/README.md
similarity index 89%
rename from spring-5-security/README.md
rename to spring-security-modules/spring-5-security/README.md
index 6847d4bf5c..1917d347fb 100644
--- a/spring-5-security/README.md
+++ b/spring-security-modules/spring-5-security/README.md
@@ -9,6 +9,5 @@ This module contains articles about Spring Security 5
- [New Password Storage In Spring Security 5](https://www.baeldung.com/spring-security-5-password-storage)
- [Default Password Encoder in Spring Security 5](https://www.baeldung.com/spring-security-5-default-password-encoder)
- [Guide to the AuthenticationManagerResolver in Spring Security](https://www.baeldung.com/spring-security-authenticationmanagerresolver)
-- [Disable Security for a Profile in Spring Boot](https://www.baeldung.com/spring-security-disable-profile)
- [Manual Logout With Spring Security](https://www.baeldung.com/spring-security-manual-logout)
- [How to Disable Spring Security Logout Redirects](https://www.baeldung.com/spring-security-disable-logout-redirects)
diff --git a/spring-5-security/pom.xml b/spring-security-modules/spring-5-security/pom.xml
similarity index 97%
rename from spring-5-security/pom.xml
rename to spring-security-modules/spring-5-security/pom.xml
index c486d5346b..09de91491c 100644
--- a/spring-5-security/pom.xml
+++ b/spring-security-modules/spring-5-security/pom.xml
@@ -12,7 +12,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-5-security/src/main/java/com/baeldung/authresolver/AuthResolverApplication.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/authresolver/AuthResolverApplication.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/authresolver/AuthResolverApplication.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/authresolver/AuthResolverApplication.java
diff --git a/spring-5-security/src/main/java/com/baeldung/authresolver/AuthResolverController.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/authresolver/AuthResolverController.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/authresolver/AuthResolverController.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/authresolver/AuthResolverController.java
diff --git a/spring-5-security/src/main/java/com/baeldung/authresolver/CustomWebSecurityConfigurer.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/authresolver/CustomWebSecurityConfigurer.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/authresolver/CustomWebSecurityConfigurer.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/authresolver/CustomWebSecurityConfigurer.java
diff --git a/spring-5-security/src/main/java/com/baeldung/dsl/ClientErrorLoggingConfigurer.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/dsl/ClientErrorLoggingConfigurer.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/dsl/ClientErrorLoggingConfigurer.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/dsl/ClientErrorLoggingConfigurer.java
diff --git a/spring-5-security/src/main/java/com/baeldung/dsl/ClientErrorLoggingFilter.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/dsl/ClientErrorLoggingFilter.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/dsl/ClientErrorLoggingFilter.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/dsl/ClientErrorLoggingFilter.java
diff --git a/spring-5-security/src/main/java/com/baeldung/dsl/CustomConfigurerApplication.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/dsl/CustomConfigurerApplication.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/dsl/CustomConfigurerApplication.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/dsl/CustomConfigurerApplication.java
diff --git a/spring-5-security/src/main/java/com/baeldung/dsl/MyController.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/dsl/MyController.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/dsl/MyController.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/dsl/MyController.java
diff --git a/spring-5-security/src/main/java/com/baeldung/dsl/SecurityConfig.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/dsl/SecurityConfig.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/dsl/SecurityConfig.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/dsl/SecurityConfig.java
diff --git a/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthApplication.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthApplication.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthApplication.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthApplication.java
diff --git a/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthController.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthController.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthController.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthController.java
diff --git a/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthWebSecurityConfigurer.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthWebSecurityConfigurer.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthWebSecurityConfigurer.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryAuthWebSecurityConfigurer.java
diff --git a/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryNoOpAuthWebSecurityConfigurer.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryNoOpAuthWebSecurityConfigurer.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryNoOpAuthWebSecurityConfigurer.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/inmemory/InMemoryNoOpAuthWebSecurityConfigurer.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomAuthenticationFilter.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomAuthenticationFilter.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomAuthenticationFilter.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomAuthenticationFilter.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomAuthenticationToken.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomAuthenticationToken.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomAuthenticationToken.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomAuthenticationToken.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsAuthenticationProvider.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsAuthenticationProvider.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsAuthenticationProvider.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsAuthenticationProvider.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsService.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsService.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsService.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsService.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsServiceImpl.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsServiceImpl.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsServiceImpl.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserDetailsServiceImpl.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserRepository.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserRepository.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserRepository.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/CustomUserRepository.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/ExtraLoginFieldsApplication.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/ExtraLoginFieldsApplication.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/ExtraLoginFieldsApplication.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/ExtraLoginFieldsApplication.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/PasswordEncoderConfiguration.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/PasswordEncoderConfiguration.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/PasswordEncoderConfiguration.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/PasswordEncoderConfiguration.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/SecurityConfig.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/SecurityConfig.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/SecurityConfig.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/SecurityConfig.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/User.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/User.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/User.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/User.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/UserRepository.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/UserRepository.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/UserRepository.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/UserRepository.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/WebController.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/WebController.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/WebController.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldscustom/WebController.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/ExtraLoginFieldsApplication.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/ExtraLoginFieldsApplication.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/ExtraLoginFieldsApplication.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/ExtraLoginFieldsApplication.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/PasswordEncoderConfiguration.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/PasswordEncoderConfiguration.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/PasswordEncoderConfiguration.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/PasswordEncoderConfiguration.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SecurityConfig.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SecurityConfig.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SecurityConfig.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SecurityConfig.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleAuthenticationFilter.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleAuthenticationFilter.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleAuthenticationFilter.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleAuthenticationFilter.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleUserDetailsService.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleUserDetailsService.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleUserDetailsService.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleUserDetailsService.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleUserRepository.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleUserRepository.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleUserRepository.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/SimpleUserRepository.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/User.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/User.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/User.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/User.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/UserRepository.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/UserRepository.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/UserRepository.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/UserRepository.java
diff --git a/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/WebController.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/WebController.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/WebController.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/loginextrafieldssimple/WebController.java
diff --git a/spring-5-security/src/main/java/com/baeldung/logoutredirects/LogoutApplication.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/logoutredirects/LogoutApplication.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/logoutredirects/LogoutApplication.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/logoutredirects/LogoutApplication.java
diff --git a/spring-5-security/src/main/java/com/baeldung/logoutredirects/securityconfig/SpringSecurityConfig.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/logoutredirects/securityconfig/SpringSecurityConfig.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/logoutredirects/securityconfig/SpringSecurityConfig.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/logoutredirects/securityconfig/SpringSecurityConfig.java
diff --git a/spring-5-security/src/main/java/com/baeldung/manuallogout/ManualLogoutApplication.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/manuallogout/ManualLogoutApplication.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/manuallogout/ManualLogoutApplication.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/manuallogout/ManualLogoutApplication.java
diff --git a/spring-5-security/src/main/java/com/baeldung/manuallogout/SimpleSecurityConfiguration.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/manuallogout/SimpleSecurityConfiguration.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/manuallogout/SimpleSecurityConfiguration.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/manuallogout/SimpleSecurityConfiguration.java
diff --git a/spring-5-security/src/main/java/com/baeldung/passwordstorage/BaeldungPasswordEncoderSetup.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/passwordstorage/BaeldungPasswordEncoderSetup.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/passwordstorage/BaeldungPasswordEncoderSetup.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/passwordstorage/BaeldungPasswordEncoderSetup.java
diff --git a/spring-5-security/src/main/java/com/baeldung/passwordstorage/PasswordStorageApplication.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/passwordstorage/PasswordStorageApplication.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/passwordstorage/PasswordStorageApplication.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/passwordstorage/PasswordStorageApplication.java
diff --git a/spring-5-security/src/main/java/com/baeldung/passwordstorage/PasswordStorageWebSecurityConfigurer.java b/spring-security-modules/spring-5-security/src/main/java/com/baeldung/passwordstorage/PasswordStorageWebSecurityConfigurer.java
similarity index 100%
rename from spring-5-security/src/main/java/com/baeldung/passwordstorage/PasswordStorageWebSecurityConfigurer.java
rename to spring-security-modules/spring-5-security/src/main/java/com/baeldung/passwordstorage/PasswordStorageWebSecurityConfigurer.java
diff --git a/spring-5-security/src/main/resources/application-extrafields.properties b/spring-security-modules/spring-5-security/src/main/resources/application-extrafields.properties
similarity index 100%
rename from spring-5-security/src/main/resources/application-extrafields.properties
rename to spring-security-modules/spring-5-security/src/main/resources/application-extrafields.properties
diff --git a/spring-5-security/src/main/resources/application.properties b/spring-security-modules/spring-5-security/src/main/resources/application.properties
similarity index 100%
rename from spring-5-security/src/main/resources/application.properties
rename to spring-security-modules/spring-5-security/src/main/resources/application.properties
diff --git a/spring-dispatcher-servlet/src/main/resources/logback.xml b/spring-security-modules/spring-5-security/src/main/resources/logback.xml
similarity index 100%
rename from spring-dispatcher-servlet/src/main/resources/logback.xml
rename to spring-security-modules/spring-5-security/src/main/resources/logback.xml
diff --git a/spring-5-security/src/main/resources/static/css/main.css b/spring-security-modules/spring-5-security/src/main/resources/static/css/main.css
similarity index 100%
rename from spring-5-security/src/main/resources/static/css/main.css
rename to spring-security-modules/spring-5-security/src/main/resources/static/css/main.css
diff --git a/spring-5-security/src/main/resources/templates/index.html b/spring-security-modules/spring-5-security/src/main/resources/templates/index.html
similarity index 100%
rename from spring-5-security/src/main/resources/templates/index.html
rename to spring-security-modules/spring-5-security/src/main/resources/templates/index.html
diff --git a/spring-5-security/src/main/resources/templatesextrafields/index.html b/spring-security-modules/spring-5-security/src/main/resources/templatesextrafields/index.html
similarity index 100%
rename from spring-5-security/src/main/resources/templatesextrafields/index.html
rename to spring-security-modules/spring-5-security/src/main/resources/templatesextrafields/index.html
diff --git a/spring-5-security/src/main/resources/templatesextrafields/login.html b/spring-security-modules/spring-5-security/src/main/resources/templatesextrafields/login.html
similarity index 100%
rename from spring-5-security/src/main/resources/templatesextrafields/login.html
rename to spring-security-modules/spring-5-security/src/main/resources/templatesextrafields/login.html
diff --git a/spring-5-security/src/main/resources/templatesextrafields/user/index.html b/spring-security-modules/spring-5-security/src/main/resources/templatesextrafields/user/index.html
similarity index 100%
rename from spring-5-security/src/main/resources/templatesextrafields/user/index.html
rename to spring-security-modules/spring-5-security/src/main/resources/templatesextrafields/user/index.html
diff --git a/spring-5-security/src/test/java/com/baeldung/SpringContextTest.java b/spring-security-modules/spring-5-security/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-5-security/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-security-modules/spring-5-security/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-5-security/src/test/java/com/baeldung/authresolver/AuthResolverIntegrationTest.java b/spring-security-modules/spring-5-security/src/test/java/com/baeldung/authresolver/AuthResolverIntegrationTest.java
similarity index 100%
rename from spring-5-security/src/test/java/com/baeldung/authresolver/AuthResolverIntegrationTest.java
rename to spring-security-modules/spring-5-security/src/test/java/com/baeldung/authresolver/AuthResolverIntegrationTest.java
diff --git a/spring-5-security/src/test/java/com/baeldung/inmemory/InMemoryAuthControllerIntegrationTest.java b/spring-security-modules/spring-5-security/src/test/java/com/baeldung/inmemory/InMemoryAuthControllerIntegrationTest.java
similarity index 100%
rename from spring-5-security/src/test/java/com/baeldung/inmemory/InMemoryAuthControllerIntegrationTest.java
rename to spring-security-modules/spring-5-security/src/test/java/com/baeldung/inmemory/InMemoryAuthControllerIntegrationTest.java
diff --git a/spring-5-security/src/test/java/com/baeldung/loginextrafields/AbstractExtraLoginFieldsIntegrationTest.java b/spring-security-modules/spring-5-security/src/test/java/com/baeldung/loginextrafields/AbstractExtraLoginFieldsIntegrationTest.java
similarity index 100%
rename from spring-5-security/src/test/java/com/baeldung/loginextrafields/AbstractExtraLoginFieldsIntegrationTest.java
rename to spring-security-modules/spring-5-security/src/test/java/com/baeldung/loginextrafields/AbstractExtraLoginFieldsIntegrationTest.java
diff --git a/spring-5-security/src/test/java/com/baeldung/loginextrafields/LoginFieldsFullIntegrationTest.java b/spring-security-modules/spring-5-security/src/test/java/com/baeldung/loginextrafields/LoginFieldsFullIntegrationTest.java
similarity index 100%
rename from spring-5-security/src/test/java/com/baeldung/loginextrafields/LoginFieldsFullIntegrationTest.java
rename to spring-security-modules/spring-5-security/src/test/java/com/baeldung/loginextrafields/LoginFieldsFullIntegrationTest.java
diff --git a/spring-5-security/src/test/java/com/baeldung/loginextrafields/LoginFieldsSimpleIntegrationTest.java b/spring-security-modules/spring-5-security/src/test/java/com/baeldung/loginextrafields/LoginFieldsSimpleIntegrationTest.java
similarity index 100%
rename from spring-5-security/src/test/java/com/baeldung/loginextrafields/LoginFieldsSimpleIntegrationTest.java
rename to spring-security-modules/spring-5-security/src/test/java/com/baeldung/loginextrafields/LoginFieldsSimpleIntegrationTest.java
diff --git a/spring-5-security/src/test/java/com/baeldung/logoutredirects/LogoutApplicationUnitTest.java b/spring-security-modules/spring-5-security/src/test/java/com/baeldung/logoutredirects/LogoutApplicationUnitTest.java
similarity index 100%
rename from spring-5-security/src/test/java/com/baeldung/logoutredirects/LogoutApplicationUnitTest.java
rename to spring-security-modules/spring-5-security/src/test/java/com/baeldung/logoutredirects/LogoutApplicationUnitTest.java
diff --git a/spring-5-security/src/test/java/com/baeldung/manuallogout/ManualLogoutIntegrationTest.java b/spring-security-modules/spring-5-security/src/test/java/com/baeldung/manuallogout/ManualLogoutIntegrationTest.java
similarity index 100%
rename from spring-5-security/src/test/java/com/baeldung/manuallogout/ManualLogoutIntegrationTest.java
rename to spring-security-modules/spring-5-security/src/test/java/com/baeldung/manuallogout/ManualLogoutIntegrationTest.java
diff --git a/spring-ldap/.gitignore b/spring-security-modules/spring-ldap/.gitignore
similarity index 100%
rename from spring-ldap/.gitignore
rename to spring-security-modules/spring-ldap/.gitignore
diff --git a/spring-ldap/README.md b/spring-security-modules/spring-ldap/README.md
similarity index 100%
rename from spring-ldap/README.md
rename to spring-security-modules/spring-ldap/README.md
diff --git a/spring-ldap/pom.xml b/spring-security-modules/spring-ldap/pom.xml
similarity index 98%
rename from spring-ldap/pom.xml
rename to spring-security-modules/spring-ldap/pom.xml
index a9882ccb52..60da7d4c0d 100644
--- a/spring-ldap/pom.xml
+++ b/spring-security-modules/spring-ldap/pom.xml
@@ -9,8 +9,8 @@
com.baeldung
- parent-modules
- 1.0.0-SNAPSHOT
+ spring-security-modules
+ 0.0.1-SNAPSHOT
diff --git a/spring-ldap/src/main/java/com/baeldung/ldap/client/LdapClient.java b/spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/client/LdapClient.java
similarity index 100%
rename from spring-ldap/src/main/java/com/baeldung/ldap/client/LdapClient.java
rename to spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/client/LdapClient.java
diff --git a/spring-ldap/src/main/java/com/baeldung/ldap/data/repository/User.java b/spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/data/repository/User.java
similarity index 100%
rename from spring-ldap/src/main/java/com/baeldung/ldap/data/repository/User.java
rename to spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/data/repository/User.java
diff --git a/spring-ldap/src/main/java/com/baeldung/ldap/data/repository/UserRepository.java b/spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/data/repository/UserRepository.java
similarity index 100%
rename from spring-ldap/src/main/java/com/baeldung/ldap/data/repository/UserRepository.java
rename to spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/data/repository/UserRepository.java
diff --git a/spring-ldap/src/main/java/com/baeldung/ldap/data/service/LdapClient.java b/spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/data/service/LdapClient.java
similarity index 100%
rename from spring-ldap/src/main/java/com/baeldung/ldap/data/service/LdapClient.java
rename to spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/data/service/LdapClient.java
diff --git a/spring-ldap/src/main/java/com/baeldung/ldap/data/service/UserService.java b/spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/data/service/UserService.java
similarity index 100%
rename from spring-ldap/src/main/java/com/baeldung/ldap/data/service/UserService.java
rename to spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/data/service/UserService.java
diff --git a/spring-ldap/src/main/java/com/baeldung/ldap/javaconfig/AppConfig.java b/spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/javaconfig/AppConfig.java
similarity index 100%
rename from spring-ldap/src/main/java/com/baeldung/ldap/javaconfig/AppConfig.java
rename to spring-security-modules/spring-ldap/src/main/java/com/baeldung/ldap/javaconfig/AppConfig.java
diff --git a/spring-ldap/src/main/resources/application.properties b/spring-security-modules/spring-ldap/src/main/resources/application.properties
similarity index 100%
rename from spring-ldap/src/main/resources/application.properties
rename to spring-security-modules/spring-ldap/src/main/resources/application.properties
diff --git a/spring-ldap/src/main/resources/logback.xml b/spring-security-modules/spring-ldap/src/main/resources/logback.xml
similarity index 100%
rename from spring-ldap/src/main/resources/logback.xml
rename to spring-security-modules/spring-ldap/src/main/resources/logback.xml
diff --git a/spring-ldap/src/test/java/com/baeldung/ldap/client/LdapClientLiveTest.java b/spring-security-modules/spring-ldap/src/test/java/com/baeldung/ldap/client/LdapClientLiveTest.java
similarity index 100%
rename from spring-ldap/src/test/java/com/baeldung/ldap/client/LdapClientLiveTest.java
rename to spring-security-modules/spring-ldap/src/test/java/com/baeldung/ldap/client/LdapClientLiveTest.java
diff --git a/spring-ldap/src/test/java/com/baeldung/ldap/client/LdapDataRepositoryIntegrationTest.java b/spring-security-modules/spring-ldap/src/test/java/com/baeldung/ldap/client/LdapDataRepositoryIntegrationTest.java
similarity index 100%
rename from spring-ldap/src/test/java/com/baeldung/ldap/client/LdapDataRepositoryIntegrationTest.java
rename to spring-security-modules/spring-ldap/src/test/java/com/baeldung/ldap/client/LdapDataRepositoryIntegrationTest.java
diff --git a/spring-ldap/src/test/java/com/baeldung/ldap/javaconfig/TestConfig.java b/spring-security-modules/spring-ldap/src/test/java/com/baeldung/ldap/javaconfig/TestConfig.java
similarity index 100%
rename from spring-ldap/src/test/java/com/baeldung/ldap/javaconfig/TestConfig.java
rename to spring-security-modules/spring-ldap/src/test/java/com/baeldung/ldap/javaconfig/TestConfig.java
diff --git a/spring-ldap/src/test/java/org/baeldung/SpringContextTest.java b/spring-security-modules/spring-ldap/src/test/java/org/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-ldap/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-security-modules/spring-ldap/src/test/java/org/baeldung/SpringContextTest.java
diff --git a/spring-ldap/src/test/resources/test.ldif b/spring-security-modules/spring-ldap/src/test/resources/test.ldif
similarity index 100%
rename from spring-ldap/src/test/resources/test.ldif
rename to spring-security-modules/spring-ldap/src/test/resources/test.ldif
diff --git a/spring-ldap/src/test/resources/test_application.properties b/spring-security-modules/spring-ldap/src/test/resources/test_application.properties
similarity index 100%
rename from spring-ldap/src/test/resources/test_application.properties
rename to spring-security-modules/spring-ldap/src/test/resources/test_application.properties
diff --git a/spring-security-modules/spring-security-kotlin-dsl/README.md b/spring-security-modules/spring-security-kotlin-dsl/README.md
deleted file mode 100644
index 39e521d84e..0000000000
--- a/spring-security-modules/spring-security-kotlin-dsl/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-### Relevant Articles:
-
-- [Spring Security with Kotlin DSL](https://www.baeldung.com/kotlin/spring-security-dsl)
diff --git a/spring-security-modules/spring-security-kotlin-dsl/pom.xml b/spring-security-modules/spring-security-kotlin-dsl/pom.xml
deleted file mode 100644
index 24e99decfb..0000000000
--- a/spring-security-modules/spring-security-kotlin-dsl/pom.xml
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
- 4.0.0
-
- com.baeldung
- parent-boot-2
- 0.0.1-SNAPSHOT
- ../../parent-boot-2
-
-
- com.baeldung.spring.security.dsl
- spring-security-kotlin-dsl
- 1.0
- spring-security-kotlin-dsl
- Spring Security Kotlin DSL
-
-
-
- org.springframework.boot
- spring-boot-starter-security
-
-
- org.springframework.boot
- spring-boot-starter-web
-
-
- com.fasterxml.jackson.module
- jackson-module-kotlin
-
-
- org.jetbrains.kotlin
- kotlin-reflect
-
-
- org.jetbrains.kotlin
- kotlin-stdlib-jdk8
-
-
-
- org.projectlombok
- lombok
- true
-
-
- org.springframework.boot
- spring-boot-starter-test
- test
-
-
-
-
- ${project.basedir}/src/main/kotlin
- ${project.basedir}/src/test/kotlin
-
-
- org.springframework.boot
- spring-boot-maven-plugin
-
-
- org.jetbrains.kotlin
- kotlin-maven-plugin
-
-
- -Xjsr305=strict
-
-
- spring
-
-
-
-
- org.jetbrains.kotlin
- kotlin-maven-allopen
- ${kotlin.version}
-
-
-
-
-
-
-
- 11
- 1.3.72
-
-
-
diff --git a/spring-security-modules/spring-security-kotlin-dsl/src/main/kotlin/com/baeldung/security/kotlin/dsl/SpringSecurityKotlinApplication.kt b/spring-security-modules/spring-security-kotlin-dsl/src/main/kotlin/com/baeldung/security/kotlin/dsl/SpringSecurityKotlinApplication.kt
deleted file mode 100644
index 27cc41c1e5..0000000000
--- a/spring-security-modules/spring-security-kotlin-dsl/src/main/kotlin/com/baeldung/security/kotlin/dsl/SpringSecurityKotlinApplication.kt
+++ /dev/null
@@ -1,71 +0,0 @@
-package com.baeldung.security.kotlin.dsl
-
-import org.springframework.boot.autoconfigure.SpringBootApplication
-import org.springframework.boot.runApplication
-import org.springframework.context.annotation.Configuration
-import org.springframework.context.support.beans
-import org.springframework.core.annotation.Order
-import org.springframework.security.config.annotation.web.builders.HttpSecurity
-import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity
-import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter
-import org.springframework.security.config.web.servlet.invoke
-import org.springframework.security.core.userdetails.User
-import org.springframework.security.provisioning.InMemoryUserDetailsManager
-import org.springframework.web.servlet.function.ServerResponse
-import org.springframework.web.servlet.function.router
-
-@EnableWebSecurity
-@SpringBootApplication
-class SpringSecurityKotlinApplication
-
-@Order(1)
-@Configuration
-class AdminSecurityConfiguration : WebSecurityConfigurerAdapter() {
- override fun configure(http: HttpSecurity?) {
- http {
- authorizeRequests {
- authorize("/greetings/**", hasAuthority("ROLE_ADMIN"))
- }
- httpBasic {}
- }
- }
-}
-
-@Configuration
-class BasicSecurityConfiguration : WebSecurityConfigurerAdapter() {
- override fun configure(http: HttpSecurity?) {
- http {
- authorizeRequests {
- authorize("/**", permitAll)
- }
- httpBasic {}
- }
- }
-}
-
-fun main(args: Array) {
- runApplication(*args) {
- addInitializers( beans {
- bean {
- fun user(user: String, password: String, vararg roles: String) =
- User
- .withDefaultPasswordEncoder()
- .username(user)
- .password(password)
- .roles(*roles)
- .build()
-
- InMemoryUserDetailsManager(user("user", "password", "USER")
- , user("admin", "password", "USER", "ADMIN"))
- }
-
- bean {
- router {
- GET("/greetings") {
- request -> request.principal().map { it.name }.map { ServerResponse.ok().body(mapOf("greeting" to "Hello $it")) }.orElseGet { ServerResponse.badRequest().build() }
- }
- }
- }
- })
- }
-}
diff --git a/spring-security-modules/spring-security-kotlin-dsl/src/test/kotlin/com/spring/security/kotlin/dsl/SpringSecurityKotlinApplicationTests.kt b/spring-security-modules/spring-security-kotlin-dsl/src/test/kotlin/com/spring/security/kotlin/dsl/SpringSecurityKotlinApplicationTests.kt
deleted file mode 100644
index 3da8110feb..0000000000
--- a/spring-security-modules/spring-security-kotlin-dsl/src/test/kotlin/com/spring/security/kotlin/dsl/SpringSecurityKotlinApplicationTests.kt
+++ /dev/null
@@ -1,35 +0,0 @@
-package com.spring.security.kotlin.dsl
-
-import org.junit.jupiter.api.Test
-import org.junit.runner.RunWith
-import org.springframework.beans.factory.annotation.Autowired
-import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc
-import org.springframework.boot.test.context.SpringBootTest
-import org.springframework.security.test.context.support.WithMockUser
-import org.springframework.test.context.junit4.SpringRunner
-import org.springframework.test.web.servlet.MockMvc
-import org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestBuilders.*
-import org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.user
-import org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.httpBasic
-import org.springframework.security.test.web.servlet.response.SecurityMockMvcResultMatchers.authenticated
-import org.springframework.security.test.web.servlet.response.SecurityMockMvcResultMatchers.unauthenticated
-import org.springframework.test.web.servlet.get
-import org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*
-import org.springframework.test.web.servlet.result.MockMvcResultMatchers.status
-
-@RunWith(SpringRunner::class)
-@SpringBootTest
-@AutoConfigureMockMvc
-class SpringSecurityKotlinApplicationTests {
-
- @Autowired
- private lateinit var mockMvc: MockMvc
-
- @Test
- fun `ordinary user not permitted to access the endpoint`() {
- this.mockMvc
- .perform(get("/greetings")
- .with(httpBasic("user", "password")))
- .andExpect(unauthenticated())
- }
-}
diff --git a/spring-security-modules/spring-security-oauth2-sso/pom.xml b/spring-security-modules/spring-security-oauth2-sso/pom.xml
index ed4b1d64ba..a272ba5b50 100644
--- a/spring-security-modules/spring-security-oauth2-sso/pom.xml
+++ b/spring-security-modules/spring-security-oauth2-sso/pom.xml
@@ -24,8 +24,8 @@
3.1.0
- 2.3.3.RELEASE
- 2.1.1.RELEASE
+ 2.4.0.RELEASE
+ 2.4.0
1.0.1.RELEASE
2.0.0-M2
diff --git a/spring-security-modules/spring-security-oauth2-sso/spring-security-sso-ui-2/src/main/resources/application.yml b/spring-security-modules/spring-security-oauth2-sso/spring-security-sso-ui-2/src/main/resources/application.yml
index 97c8de7839..8cee9f24d5 100644
--- a/spring-security-modules/spring-security-oauth2-sso/spring-security-sso-ui-2/src/main/resources/application.yml
+++ b/spring-security-modules/spring-security-oauth2-sso/spring-security-sso-ui-2/src/main/resources/application.yml
@@ -2,6 +2,7 @@ server:
port: 8083
servlet:
context-path: /ui2
+ register-default-servlet: true
session:
cookie:
name: UI2SESSION
diff --git a/spring-security-modules/spring-security-oauth2-sso/spring-security-sso-ui/src/main/resources/application.yml b/spring-security-modules/spring-security-oauth2-sso/spring-security-sso-ui/src/main/resources/application.yml
index d1d9ea6ebc..f98dee9429 100644
--- a/spring-security-modules/spring-security-oauth2-sso/spring-security-sso-ui/src/main/resources/application.yml
+++ b/spring-security-modules/spring-security-oauth2-sso/spring-security-sso-ui/src/main/resources/application.yml
@@ -2,6 +2,7 @@ server:
port: 8082
servlet:
context-path: /ui
+ register-default-servlet: true
session:
cookie:
name: UISESSION
diff --git a/spring-security-modules/spring-security-oidc/README.md b/spring-security-modules/spring-security-oidc/README.md
index 5e8f391b96..92ba60cad9 100644
--- a/spring-security-modules/spring-security-oidc/README.md
+++ b/spring-security-modules/spring-security-oidc/README.md
@@ -4,7 +4,7 @@ This module contains articles about OpenID with Spring Security
### Relevant articles
-- [Spring Security and OpenID Connect (Legacy)](https://www.baeldung.com/spring-security-openid-connect-legacy)
+- [Spring Security and OpenID Connect](https://www.baeldung.com/spring-security-openid-connect)
### OpenID Connect with Spring Security
diff --git a/spring-security-modules/spring-security-web-boot-2/src/main/java/com/baeldung/loginredirect/LoginPageInterceptor.java b/spring-security-modules/spring-security-web-boot-2/src/main/java/com/baeldung/loginredirect/LoginPageInterceptor.java
index aa93201f37..f08b824369 100644
--- a/spring-security-modules/spring-security-web-boot-2/src/main/java/com/baeldung/loginredirect/LoginPageInterceptor.java
+++ b/spring-security-modules/spring-security-web-boot-2/src/main/java/com/baeldung/loginredirect/LoginPageInterceptor.java
@@ -1,16 +1,16 @@
package com.baeldung.loginredirect;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
import org.apache.http.HttpStatus;
import org.springframework.security.authentication.AnonymousAuthenticationToken;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.context.SecurityContextHolder;
-import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
+import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.util.UrlPathHelper;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-class LoginPageInterceptor extends HandlerInterceptorAdapter {
+class LoginPageInterceptor implements HandlerInterceptor {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) {
diff --git a/spring-security-modules/spring-security-web-mvc/pom.xml b/spring-security-modules/spring-security-web-mvc/pom.xml
index 2651b3a0f2..b1e94b2db3 100644
--- a/spring-security-modules/spring-security-web-mvc/pom.xml
+++ b/spring-security-modules/spring-security-web-mvc/pom.xml
@@ -61,27 +61,6 @@
spring-boot-starter-test
test
-
- org.springframework.security
- spring-security-test
- ${spring.mvc.version}
- test
-
-
- org.springframework.security
- spring-security-web
- ${spring.mvc.version}
-
-
- org.springframework.security
- spring-security-config
- ${spring.mvc.version}
-
-
- org.springframework
- spring-webmvc
- ${spring.mvc.version}
-
javax.servlet
javax.servlet-api
@@ -104,7 +83,6 @@
- 5.2.2.RELEASE
4.0.1
diff --git a/spring-security-modules/spring-security-web-rest/pom.xml b/spring-security-modules/spring-security-web-rest/pom.xml
index d2468152da..2330243aa6 100644
--- a/spring-security-modules/spring-security-web-rest/pom.xml
+++ b/spring-security-modules/spring-security-web-rest/pom.xml
@@ -168,7 +168,6 @@
${springfox-swagger.version}
-
commons-fileupload
commons-fileupload
@@ -271,7 +270,6 @@
26.0-jre
- 1.3.2
2.9.0
diff --git a/spring-security-modules/spring-security-web-rest/src/main/java/com/baeldung/security/SecurityJavaConfig.java b/spring-security-modules/spring-security-web-rest/src/main/java/com/baeldung/security/SecurityJavaConfig.java
index d20198c2bb..7f0b20ea34 100644
--- a/spring-security-modules/spring-security-web-rest/src/main/java/com/baeldung/security/SecurityJavaConfig.java
+++ b/spring-security-modules/spring-security-web-rest/src/main/java/com/baeldung/security/SecurityJavaConfig.java
@@ -7,14 +7,15 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
+import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
-import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.security.crypto.password.PasswordEncoder;
+import org.springframework.security.task.DelegatingSecurityContextAsyncTaskExecutor;
import org.springframework.security.web.authentication.SimpleUrlAuthenticationFailureHandler;
@Configuration
@@ -34,11 +35,6 @@ public class SecurityJavaConfig extends WebSecurityConfigurerAdapter {
private SimpleUrlAuthenticationFailureHandler myFailureHandler = new SimpleUrlAuthenticationFailureHandler();
- public SecurityJavaConfig() {
- super();
- SecurityContextHolder.setStrategyName(SecurityContextHolder.MODE_INHERITABLETHREADLOCAL);
- }
-
@Override
protected void configure(final AuthenticationManagerBuilder auth) throws Exception {
auth.inMemoryAuthentication()
@@ -77,4 +73,18 @@ public class SecurityJavaConfig extends WebSecurityConfigurerAdapter {
return new BCryptPasswordEncoder();
}
+ @Bean
+ public ThreadPoolTaskExecutor threadPoolTaskExecutor() {
+ ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
+ executor.setCorePoolSize(10);
+ executor.setMaxPoolSize(100);
+ executor.setQueueCapacity(50);
+ executor.setThreadNamePrefix("async-");
+ return executor;
+ }
+
+ @Bean
+ public DelegatingSecurityContextAsyncTaskExecutor taskExecutor(ThreadPoolTaskExecutor delegate) {
+ return new DelegatingSecurityContextAsyncTaskExecutor(delegate);
+ }
}
\ No newline at end of file
diff --git a/spring-session/README.md b/spring-security-modules/spring-session/README.md
similarity index 100%
rename from spring-session/README.md
rename to spring-security-modules/spring-session/README.md
diff --git a/spring-session/pom.xml b/spring-security-modules/spring-session/pom.xml
similarity index 93%
rename from spring-session/pom.xml
rename to spring-security-modules/spring-session/pom.xml
index 6616a0d1f3..ac10700240 100644
--- a/spring-session/pom.xml
+++ b/spring-security-modules/spring-session/pom.xml
@@ -12,7 +12,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-session/spring-session-jdbc/README.md b/spring-security-modules/spring-session/spring-session-jdbc/README.md
similarity index 100%
rename from spring-session/spring-session-jdbc/README.md
rename to spring-security-modules/spring-session/spring-session-jdbc/README.md
diff --git a/spring-session/spring-session-jdbc/pom.xml b/spring-security-modules/spring-session/spring-session-jdbc/pom.xml
similarity index 95%
rename from spring-session/spring-session-jdbc/pom.xml
rename to spring-security-modules/spring-session/spring-session-jdbc/pom.xml
index 64cdb4dd09..95c366fc2e 100644
--- a/spring-session/spring-session-jdbc/pom.xml
+++ b/spring-security-modules/spring-session/spring-session-jdbc/pom.xml
@@ -13,7 +13,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../../parent-boot-2
+ ../../../parent-boot-2
diff --git a/spring-session/spring-session-jdbc/src/main/java/com/baeldung/springsessionjdbc/SpringSessionJdbcApplication.java b/spring-security-modules/spring-session/spring-session-jdbc/src/main/java/com/baeldung/springsessionjdbc/SpringSessionJdbcApplication.java
similarity index 100%
rename from spring-session/spring-session-jdbc/src/main/java/com/baeldung/springsessionjdbc/SpringSessionJdbcApplication.java
rename to spring-security-modules/spring-session/spring-session-jdbc/src/main/java/com/baeldung/springsessionjdbc/SpringSessionJdbcApplication.java
diff --git a/spring-session/spring-session-jdbc/src/main/java/com/baeldung/springsessionjdbc/controller/SpringSessionJdbcController.java b/spring-security-modules/spring-session/spring-session-jdbc/src/main/java/com/baeldung/springsessionjdbc/controller/SpringSessionJdbcController.java
similarity index 100%
rename from spring-session/spring-session-jdbc/src/main/java/com/baeldung/springsessionjdbc/controller/SpringSessionJdbcController.java
rename to spring-security-modules/spring-session/spring-session-jdbc/src/main/java/com/baeldung/springsessionjdbc/controller/SpringSessionJdbcController.java
diff --git a/spring-session/spring-session-jdbc/src/main/resources/application.properties b/spring-security-modules/spring-session/spring-session-jdbc/src/main/resources/application.properties
similarity index 100%
rename from spring-session/spring-session-jdbc/src/main/resources/application.properties
rename to spring-security-modules/spring-session/spring-session-jdbc/src/main/resources/application.properties
diff --git a/spring-jooq/src/main/resources/logback.xml b/spring-security-modules/spring-session/spring-session-jdbc/src/main/resources/logback.xml
similarity index 100%
rename from spring-jooq/src/main/resources/logback.xml
rename to spring-security-modules/spring-session/spring-session-jdbc/src/main/resources/logback.xml
diff --git a/spring-session/spring-session-jdbc/src/test/java/com/baeldung/SpringContextTest.java b/spring-security-modules/spring-session/spring-session-jdbc/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-session/spring-session-jdbc/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-security-modules/spring-session/spring-session-jdbc/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-session/spring-session-jdbc/src/test/java/com/baeldung/springsessionjdbc/SpringSessionJdbcIntegrationTest.java b/spring-security-modules/spring-session/spring-session-jdbc/src/test/java/com/baeldung/springsessionjdbc/SpringSessionJdbcIntegrationTest.java
similarity index 100%
rename from spring-session/spring-session-jdbc/src/test/java/com/baeldung/springsessionjdbc/SpringSessionJdbcIntegrationTest.java
rename to spring-security-modules/spring-session/spring-session-jdbc/src/test/java/com/baeldung/springsessionjdbc/SpringSessionJdbcIntegrationTest.java
diff --git a/spring-session/spring-session-mongodb/README.md b/spring-security-modules/spring-session/spring-session-mongodb/README.md
similarity index 100%
rename from spring-session/spring-session-mongodb/README.md
rename to spring-security-modules/spring-session/spring-session-mongodb/README.md
diff --git a/spring-session/spring-session-mongodb/pom.xml b/spring-security-modules/spring-session/spring-session-mongodb/pom.xml
similarity index 96%
rename from spring-session/spring-session-mongodb/pom.xml
rename to spring-security-modules/spring-session/spring-session-mongodb/pom.xml
index 10d4eb595e..82c8520356 100644
--- a/spring-session/spring-session-mongodb/pom.xml
+++ b/spring-security-modules/spring-session/spring-session-mongodb/pom.xml
@@ -13,7 +13,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../../parent-boot-2
+ ../../../parent-boot-2
diff --git a/spring-session/spring-session-mongodb/src/main/java/com/baeldung/springsessionmongodb/SpringSessionMongoDBApplication.java b/spring-security-modules/spring-session/spring-session-mongodb/src/main/java/com/baeldung/springsessionmongodb/SpringSessionMongoDBApplication.java
similarity index 100%
rename from spring-session/spring-session-mongodb/src/main/java/com/baeldung/springsessionmongodb/SpringSessionMongoDBApplication.java
rename to spring-security-modules/spring-session/spring-session-mongodb/src/main/java/com/baeldung/springsessionmongodb/SpringSessionMongoDBApplication.java
diff --git a/spring-session/spring-session-mongodb/src/main/java/com/baeldung/springsessionmongodb/controller/SpringSessionMongoDBController.java b/spring-security-modules/spring-session/spring-session-mongodb/src/main/java/com/baeldung/springsessionmongodb/controller/SpringSessionMongoDBController.java
similarity index 100%
rename from spring-session/spring-session-mongodb/src/main/java/com/baeldung/springsessionmongodb/controller/SpringSessionMongoDBController.java
rename to spring-security-modules/spring-session/spring-session-mongodb/src/main/java/com/baeldung/springsessionmongodb/controller/SpringSessionMongoDBController.java
diff --git a/spring-session/spring-session-mongodb/src/main/resources/application.properties b/spring-security-modules/spring-session/spring-session-mongodb/src/main/resources/application.properties
similarity index 100%
rename from spring-session/spring-session-mongodb/src/main/resources/application.properties
rename to spring-security-modules/spring-session/spring-session-mongodb/src/main/resources/application.properties
diff --git a/spring-mvc-basics-2/src/main/resources/logback.xml b/spring-security-modules/spring-session/spring-session-mongodb/src/main/resources/logback.xml
similarity index 100%
rename from spring-mvc-basics-2/src/main/resources/logback.xml
rename to spring-security-modules/spring-session/spring-session-mongodb/src/main/resources/logback.xml
diff --git a/spring-session/spring-session-mongodb/src/test/java/com/baeldung/SpringContextTest.java b/spring-security-modules/spring-session/spring-session-mongodb/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-session/spring-session-mongodb/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-security-modules/spring-session/spring-session-mongodb/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-session/spring-session-mongodb/src/test/java/com/baeldung/springsessionmongodb/SpringSessionMongoDBIntegrationTest.java b/spring-security-modules/spring-session/spring-session-mongodb/src/test/java/com/baeldung/springsessionmongodb/SpringSessionMongoDBIntegrationTest.java
similarity index 100%
rename from spring-session/spring-session-mongodb/src/test/java/com/baeldung/springsessionmongodb/SpringSessionMongoDBIntegrationTest.java
rename to spring-security-modules/spring-session/spring-session-mongodb/src/test/java/com/baeldung/springsessionmongodb/SpringSessionMongoDBIntegrationTest.java
diff --git a/spring-session/spring-session-mongodb/src/test/resources/application.properties b/spring-security-modules/spring-session/spring-session-mongodb/src/test/resources/application.properties
similarity index 100%
rename from spring-session/spring-session-mongodb/src/test/resources/application.properties
rename to spring-security-modules/spring-session/spring-session-mongodb/src/test/resources/application.properties
diff --git a/spring-session/spring-session-redis/README.md b/spring-security-modules/spring-session/spring-session-redis/README.md
similarity index 100%
rename from spring-session/spring-session-redis/README.md
rename to spring-security-modules/spring-session/spring-session-redis/README.md
diff --git a/spring-session/spring-session-redis/pom.xml b/spring-security-modules/spring-session/spring-session-redis/pom.xml
similarity index 96%
rename from spring-session/spring-session-redis/pom.xml
rename to spring-security-modules/spring-session/spring-session-redis/pom.xml
index 8d225e06ed..36eb632e1c 100644
--- a/spring-session/spring-session-redis/pom.xml
+++ b/spring-security-modules/spring-session/spring-session-redis/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../../parent-boot-2
+ ../../../parent-boot-2
diff --git a/spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SecurityConfig.java b/spring-security-modules/spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SecurityConfig.java
similarity index 100%
rename from spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SecurityConfig.java
rename to spring-security-modules/spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SecurityConfig.java
diff --git a/spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SessionController.java b/spring-security-modules/spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SessionController.java
similarity index 100%
rename from spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SessionController.java
rename to spring-security-modules/spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SessionController.java
diff --git a/spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SessionWebApplication.java b/spring-security-modules/spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SessionWebApplication.java
similarity index 100%
rename from spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SessionWebApplication.java
rename to spring-security-modules/spring-session/spring-session-redis/src/main/java/com/baeldung/spring/session/SessionWebApplication.java
diff --git a/spring-session/spring-session-redis/src/main/resources/application.properties b/spring-security-modules/spring-session/spring-session-redis/src/main/resources/application.properties
similarity index 100%
rename from spring-session/spring-session-redis/src/main/resources/application.properties
rename to spring-security-modules/spring-session/spring-session-redis/src/main/resources/application.properties
diff --git a/spring-mvc-basics-4/src/main/resources/logback.xml b/spring-security-modules/spring-session/spring-session-redis/src/main/resources/logback.xml
similarity index 100%
rename from spring-mvc-basics-4/src/main/resources/logback.xml
rename to spring-security-modules/spring-session/spring-session-redis/src/main/resources/logback.xml
diff --git a/spring-session/spring-session-redis/src/test/java/com/baeldung/SpringContextLiveTest.java b/spring-security-modules/spring-session/spring-session-redis/src/test/java/com/baeldung/SpringContextLiveTest.java
similarity index 100%
rename from spring-session/spring-session-redis/src/test/java/com/baeldung/SpringContextLiveTest.java
rename to spring-security-modules/spring-session/spring-session-redis/src/test/java/com/baeldung/SpringContextLiveTest.java
diff --git a/spring-session/spring-session-redis/src/test/java/com/baeldung/spring/session/SessionControllerIntegrationTest.java b/spring-security-modules/spring-session/spring-session-redis/src/test/java/com/baeldung/spring/session/SessionControllerIntegrationTest.java
similarity index 100%
rename from spring-session/spring-session-redis/src/test/java/com/baeldung/spring/session/SessionControllerIntegrationTest.java
rename to spring-security-modules/spring-session/spring-session-redis/src/test/java/com/baeldung/spring/session/SessionControllerIntegrationTest.java
diff --git a/spring-social-login/README.md b/spring-security-modules/spring-social-login/README.md
similarity index 100%
rename from spring-social-login/README.md
rename to spring-security-modules/spring-social-login/README.md
diff --git a/spring-social-login/pom.xml b/spring-security-modules/spring-social-login/pom.xml
similarity index 97%
rename from spring-social-login/pom.xml
rename to spring-security-modules/spring-social-login/pom.xml
index 0de20cd087..209a546a5a 100644
--- a/spring-social-login/pom.xml
+++ b/spring-security-modules/spring-social-login/pom.xml
@@ -10,7 +10,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-social-login/src/main/java/com/baeldung/config/Application.java b/spring-security-modules/spring-social-login/src/main/java/com/baeldung/config/Application.java
similarity index 100%
rename from spring-social-login/src/main/java/com/baeldung/config/Application.java
rename to spring-security-modules/spring-social-login/src/main/java/com/baeldung/config/Application.java
diff --git a/spring-social-login/src/main/java/com/baeldung/config/SecurityConfig.java b/spring-security-modules/spring-social-login/src/main/java/com/baeldung/config/SecurityConfig.java
similarity index 100%
rename from spring-social-login/src/main/java/com/baeldung/config/SecurityConfig.java
rename to spring-security-modules/spring-social-login/src/main/java/com/baeldung/config/SecurityConfig.java
diff --git a/spring-social-login/src/main/java/com/baeldung/config/WebConfig.java b/spring-security-modules/spring-social-login/src/main/java/com/baeldung/config/WebConfig.java
similarity index 100%
rename from spring-social-login/src/main/java/com/baeldung/config/WebConfig.java
rename to spring-security-modules/spring-social-login/src/main/java/com/baeldung/config/WebConfig.java
diff --git a/spring-social-login/src/main/java/com/baeldung/persistence/dao/UserRepository.java b/spring-security-modules/spring-social-login/src/main/java/com/baeldung/persistence/dao/UserRepository.java
similarity index 100%
rename from spring-social-login/src/main/java/com/baeldung/persistence/dao/UserRepository.java
rename to spring-security-modules/spring-social-login/src/main/java/com/baeldung/persistence/dao/UserRepository.java
diff --git a/spring-social-login/src/main/java/com/baeldung/persistence/model/User.java b/spring-security-modules/spring-social-login/src/main/java/com/baeldung/persistence/model/User.java
similarity index 100%
rename from spring-social-login/src/main/java/com/baeldung/persistence/model/User.java
rename to spring-security-modules/spring-social-login/src/main/java/com/baeldung/persistence/model/User.java
diff --git a/spring-social-login/src/main/java/com/baeldung/security/FacebookConnectionSignup.java b/spring-security-modules/spring-social-login/src/main/java/com/baeldung/security/FacebookConnectionSignup.java
similarity index 100%
rename from spring-social-login/src/main/java/com/baeldung/security/FacebookConnectionSignup.java
rename to spring-security-modules/spring-social-login/src/main/java/com/baeldung/security/FacebookConnectionSignup.java
diff --git a/spring-social-login/src/main/java/com/baeldung/security/FacebookSignInAdapter.java b/spring-security-modules/spring-social-login/src/main/java/com/baeldung/security/FacebookSignInAdapter.java
similarity index 100%
rename from spring-social-login/src/main/java/com/baeldung/security/FacebookSignInAdapter.java
rename to spring-security-modules/spring-social-login/src/main/java/com/baeldung/security/FacebookSignInAdapter.java
diff --git a/spring-social-login/src/main/java/com/baeldung/security/MyUserDetailsService.java b/spring-security-modules/spring-social-login/src/main/java/com/baeldung/security/MyUserDetailsService.java
similarity index 100%
rename from spring-social-login/src/main/java/com/baeldung/security/MyUserDetailsService.java
rename to spring-security-modules/spring-social-login/src/main/java/com/baeldung/security/MyUserDetailsService.java
diff --git a/spring-social-login/src/main/resources/application.properties b/spring-security-modules/spring-social-login/src/main/resources/application.properties
similarity index 60%
rename from spring-social-login/src/main/resources/application.properties
rename to spring-security-modules/spring-social-login/src/main/resources/application.properties
index 2bd99d8239..22e6acf9e2 100644
--- a/spring-social-login/src/main/resources/application.properties
+++ b/spring-security-modules/spring-social-login/src/main/resources/application.properties
@@ -1,3 +1,4 @@
spring.social.facebook.appId=1715784745414888
spring.social.facebook.appSecret=abefd6497e9cc01ad03be28509617bf0
-spring.thymeleaf.cache=false
\ No newline at end of file
+spring.thymeleaf.cache=false
+server.servlet.register-default-servlet=true
\ No newline at end of file
diff --git a/spring-social-login/src/main/resources/data.sql b/spring-security-modules/spring-social-login/src/main/resources/data.sql
similarity index 100%
rename from spring-social-login/src/main/resources/data.sql
rename to spring-security-modules/spring-social-login/src/main/resources/data.sql
diff --git a/spring-mvc-forms-jsp/src/main/resources/logback.xml b/spring-security-modules/spring-social-login/src/main/resources/logback.xml
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/resources/logback.xml
rename to spring-security-modules/spring-social-login/src/main/resources/logback.xml
diff --git a/spring-social-login/src/main/resources/templates/index.html b/spring-security-modules/spring-social-login/src/main/resources/templates/index.html
similarity index 100%
rename from spring-social-login/src/main/resources/templates/index.html
rename to spring-security-modules/spring-social-login/src/main/resources/templates/index.html
diff --git a/spring-social-login/src/main/resources/templates/login.html b/spring-security-modules/spring-social-login/src/main/resources/templates/login.html
similarity index 100%
rename from spring-social-login/src/main/resources/templates/login.html
rename to spring-security-modules/spring-social-login/src/main/resources/templates/login.html
diff --git a/spring-social-login/src/test/java/com/baeldung/SpringContextTest.java b/spring-security-modules/spring-social-login/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-social-login/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-security-modules/spring-social-login/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-session/spring-session-redis/src/main/resources/logback.xml b/spring-session/spring-session-redis/src/main/resources/logback.xml
deleted file mode 100644
index 7d900d8ea8..0000000000
--- a/spring-session/spring-session-redis/src/main/resources/logback.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-social-login/src/main/resources/logback.xml b/spring-social-login/src/main/resources/logback.xml
deleted file mode 100644
index 7d900d8ea8..0000000000
--- a/spring-social-login/src/main/resources/logback.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
- %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/spring-web-modules/pom.xml b/spring-web-modules/pom.xml
new file mode 100644
index 0000000000..37ee84da25
--- /dev/null
+++ b/spring-web-modules/pom.xml
@@ -0,0 +1,46 @@
+
+
+ 4.0.0
+ spring-web-modules
+ 0.0.1-SNAPSHOT
+ spring-web-modules
+ pom
+
+
+ com.baeldung
+ parent-modules
+ 1.0.0-SNAPSHOT
+
+
+
+ spring-5-mvc
+ spring-mvc-basics
+ spring-mvc-basics-2
+ spring-mvc-basics-3
+ spring-mvc-basics-4
+ spring-mvc-crash
+ spring-mvc-forms-jsp
+ spring-mvc-forms-thymeleaf
+ spring-mvc-java
+ spring-mvc-java-2
+ spring-mvc-velocity
+ spring-mvc-views
+ spring-mvc-webflow
+ spring-mvc-xml
+ spring-rest-angular
+ spring-rest-http
+ spring-rest-http-2
+ spring-rest-query-language
+ spring-rest-shell
+ spring-rest-simple
+ spring-rest-testing
+ spring-resttemplate
+ spring-resttemplate-2
+ spring-resttemplate-3
+ spring-thymeleaf
+ spring-thymeleaf-2
+ spring-thymeleaf-3
+
+
+
diff --git a/spring-5-mvc/.gitignore b/spring-web-modules/spring-5-mvc/.gitignore
similarity index 100%
rename from spring-5-mvc/.gitignore
rename to spring-web-modules/spring-5-mvc/.gitignore
diff --git a/spring-5-mvc/README.md b/spring-web-modules/spring-5-mvc/README.md
similarity index 85%
rename from spring-5-mvc/README.md
rename to spring-web-modules/spring-5-mvc/README.md
index aff8bb227c..edb6cec455 100644
--- a/spring-5-mvc/README.md
+++ b/spring-web-modules/spring-5-mvc/README.md
@@ -3,7 +3,6 @@
This module contains articles about Spring 5 model-view-controller (MVC) pattern
### Relevant Articles:
-- [Spring Boot and Kotlin](https://www.baeldung.com/spring-boot-kotlin)
- [Spring MVC Streaming and SSE Request Processing](https://www.baeldung.com/spring-mvc-sse-streams)
- [Interface Driven Controllers in Spring](https://www.baeldung.com/spring-interface-driven-controllers)
- [Returning Plain HTML From a Spring MVC Controller](https://www.baeldung.com/spring-mvc-return-html)
diff --git a/spring-web-modules/spring-5-mvc/pom.xml b/spring-web-modules/spring-5-mvc/pom.xml
new file mode 100644
index 0000000000..ddcce8207b
--- /dev/null
+++ b/spring-web-modules/spring-5-mvc/pom.xml
@@ -0,0 +1,99 @@
+
+
+ 4.0.0
+ spring-5-mvc
+ spring-5-mvc
+ jar
+ spring 5 MVC sample project about new features
+
+
+ com.baeldung
+ parent-boot-2
+ 0.0.1-SNAPSHOT
+ ../../parent-boot-2
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-data-jpa
+
+
+ org.springframework.boot
+ spring-boot-starter-validation
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+ org.apache.commons
+ commons-lang3
+
+
+ org.slf4j
+ slf4j-api
+
+
+ org.slf4j
+ jcl-over-slf4j
+
+
+
+ org.springframework.boot
+ spring-boot-devtools
+ runtime
+
+
+ com.h2database
+ h2
+ runtime
+
+
+ org.springframework
+ spring-test
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+ com.jayway.restassured
+ rest-assured
+ ${jayway-rest-assured.version}
+ test
+
+
+ com.github.javafaker
+ javafaker
+ ${javafaker.version}
+
+
+ org.apache.httpcomponents
+ httpclient
+ ${httpclient.version}
+
+
+
+
+ ${project.basedir}/src/test/kotlin
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+
+
+ 2.9.0
+ 4.5.8
+ com.baeldung.Spring5Application
+ 0.18
+
+
+
diff --git a/spring-5-mvc/src/main/java/com/baeldung/Constants.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/Constants.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/Constants.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/Constants.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/Spring5Application.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/Spring5Application.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/Spring5Application.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/Spring5Application.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/html/HtmlApplication.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/html/HtmlApplication.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/html/HtmlApplication.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/html/HtmlApplication.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/html/HtmlController.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/html/HtmlController.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/html/HtmlController.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/html/HtmlController.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/idc/Application.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/idc/Application.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/idc/Application.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/idc/Application.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/idc/Book.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/idc/Book.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/idc/Book.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/idc/Book.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/idc/BookController.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/idc/BookController.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/idc/BookController.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/idc/BookController.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/idc/BookOperations.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/idc/BookOperations.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/idc/BookOperations.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/idc/BookOperations.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/idc/BookRepository.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/idc/BookRepository.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/idc/BookRepository.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/idc/BookRepository.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/model/Foo.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/model/Foo.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/model/Foo.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/model/Foo.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/persistence/DataSetupBean.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/persistence/DataSetupBean.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/persistence/DataSetupBean.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/persistence/DataSetupBean.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/persistence/FooRepository.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/persistence/FooRepository.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/persistence/FooRepository.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/persistence/FooRepository.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/web/FooController.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/web/FooController.java
similarity index 97%
rename from spring-5-mvc/src/main/java/com/baeldung/web/FooController.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/web/FooController.java
index 137864cddd..8d8e03bbaf 100644
--- a/spring-5-mvc/src/main/java/com/baeldung/web/FooController.java
+++ b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/web/FooController.java
@@ -1,66 +1,66 @@
-package com.baeldung.web;
-
-import java.util.List;
-
-import javax.validation.constraints.Max;
-import javax.validation.constraints.Min;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.data.domain.PageRequest;
-import org.springframework.http.HttpStatus;
-import org.springframework.validation.annotation.Validated;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PathVariable;
-import org.springframework.web.bind.annotation.PostMapping;
-import org.springframework.web.bind.annotation.PutMapping;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestParam;
-import org.springframework.web.bind.annotation.ResponseStatus;
-import org.springframework.web.bind.annotation.RestController;
-import org.springframework.web.server.ResponseStatusException;
-
-import com.baeldung.model.Foo;
-import com.baeldung.persistence.FooRepository;
-
-@RestController
-public class FooController {
-
- @Autowired
- private FooRepository repo;
-
- // API - read
-
- @GetMapping("/foos/{id}")
- @Validated
- public Foo findById(@PathVariable @Min(0) final long id) {
- return repo.findById(id).orElse(null);
- }
-
- @GetMapping("/foos")
- public List findAll() {
- return repo.findAll();
- }
-
- @GetMapping( value="/foos", params = { "page", "size" })
- @Validated
- public List findPaginated(@RequestParam("page") @Min(0) final int page, @Max(100) @RequestParam("size") final int size) {
- return repo.findAll(PageRequest.of(page, size)).getContent();
- }
-
- // API - write
-
- @PutMapping("/foos/{id}")
- @ResponseStatus(HttpStatus.OK)
- public Foo update(@PathVariable("id") final String id, @RequestBody final Foo foo) {
- return foo;
- }
-
- @PostMapping("/foos")
- @ResponseStatus(HttpStatus.CREATED)
- public void create( @RequestBody final Foo foo) {
- if (null == foo || null == foo.getName()) {
- throw new ResponseStatusException(HttpStatus.BAD_REQUEST," 'name' is required");
- }
- repo.save(foo);
- }
+package com.baeldung.web;
+
+import java.util.List;
+
+import javax.validation.constraints.Max;
+import javax.validation.constraints.Min;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.data.domain.PageRequest;
+import org.springframework.http.HttpStatus;
+import org.springframework.validation.annotation.Validated;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.ResponseStatus;
+import org.springframework.web.bind.annotation.RestController;
+import org.springframework.web.server.ResponseStatusException;
+
+import com.baeldung.model.Foo;
+import com.baeldung.persistence.FooRepository;
+
+@RestController
+public class FooController {
+
+ @Autowired
+ private FooRepository repo;
+
+ // API - read
+
+ @GetMapping("/foos/{id}")
+ @Validated
+ public Foo findById(@PathVariable @Min(0) final long id) {
+ return repo.findById(id).orElse(null);
+ }
+
+ @GetMapping("/foos")
+ public List findAll() {
+ return repo.findAll();
+ }
+
+ @GetMapping( value="/foos", params = { "page", "size" })
+ @Validated
+ public List findPaginated(@RequestParam("page") @Min(0) final int page, @Max(100) @RequestParam("size") final int size) {
+ return repo.findAll(PageRequest.of(page, size)).getContent();
+ }
+
+ // API - write
+
+ @PutMapping("/foos/{id}")
+ @ResponseStatus(HttpStatus.OK)
+ public Foo update(@PathVariable("id") final String id, @RequestBody final Foo foo) {
+ return foo;
+ }
+
+ @PostMapping("/foos")
+ @ResponseStatus(HttpStatus.CREATED)
+ public void create( @RequestBody final Foo foo) {
+ if (null == foo || null == foo.getName()) {
+ throw new ResponseStatusException(HttpStatus.BAD_REQUEST," 'name' is required");
+ }
+ repo.save(foo);
+ }
}
\ No newline at end of file
diff --git a/spring-5-mvc/src/main/java/com/baeldung/web/ResponseBodyEmitterController.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/web/ResponseBodyEmitterController.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/web/ResponseBodyEmitterController.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/web/ResponseBodyEmitterController.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/web/SseEmitterController.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/web/SseEmitterController.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/web/SseEmitterController.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/web/SseEmitterController.java
diff --git a/spring-5-mvc/src/main/java/com/baeldung/web/StreamingResponseBodyController.java b/spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/web/StreamingResponseBodyController.java
similarity index 100%
rename from spring-5-mvc/src/main/java/com/baeldung/web/StreamingResponseBodyController.java
rename to spring-web-modules/spring-5-mvc/src/main/java/com/baeldung/web/StreamingResponseBodyController.java
diff --git a/spring-5-mvc/src/main/resources/application.properties b/spring-web-modules/spring-5-mvc/src/main/resources/application.properties
similarity index 100%
rename from spring-5-mvc/src/main/resources/application.properties
rename to spring-web-modules/spring-5-mvc/src/main/resources/application.properties
diff --git a/spring-mvc-forms-thymeleaf/src/main/resources/logback.xml b/spring-web-modules/spring-5-mvc/src/main/resources/logback.xml
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/resources/logback.xml
rename to spring-web-modules/spring-5-mvc/src/main/resources/logback.xml
diff --git a/spring-5-mvc/src/main/webapp/WEB-INF/jsp/index.jsp b/spring-web-modules/spring-5-mvc/src/main/webapp/WEB-INF/jsp/index.jsp
similarity index 100%
rename from spring-5-mvc/src/main/webapp/WEB-INF/jsp/index.jsp
rename to spring-web-modules/spring-5-mvc/src/main/webapp/WEB-INF/jsp/index.jsp
diff --git a/spring-5-mvc/src/main/webapp/WEB-INF/web.xml b/spring-web-modules/spring-5-mvc/src/main/webapp/WEB-INF/web.xml
similarity index 100%
rename from spring-5-mvc/src/main/webapp/WEB-INF/web.xml
rename to spring-web-modules/spring-5-mvc/src/main/webapp/WEB-INF/web.xml
diff --git a/spring-5-mvc/src/test/java/com/baeldung/LiveTest.java b/spring-web-modules/spring-5-mvc/src/test/java/com/baeldung/LiveTest.java
similarity index 100%
rename from spring-5-mvc/src/test/java/com/baeldung/LiveTest.java
rename to spring-web-modules/spring-5-mvc/src/test/java/com/baeldung/LiveTest.java
diff --git a/spring-5-mvc/src/test/java/com/baeldung/Spring5ApplicationIntegrationTest.java b/spring-web-modules/spring-5-mvc/src/test/java/com/baeldung/Spring5ApplicationIntegrationTest.java
similarity index 100%
rename from spring-5-mvc/src/test/java/com/baeldung/Spring5ApplicationIntegrationTest.java
rename to spring-web-modules/spring-5-mvc/src/test/java/com/baeldung/Spring5ApplicationIntegrationTest.java
diff --git a/spring-5-mvc/src/test/java/com/baeldung/html/HtmlControllerTest.java b/spring-web-modules/spring-5-mvc/src/test/java/com/baeldung/html/HtmlControllerTest.java
similarity index 100%
rename from spring-5-mvc/src/test/java/com/baeldung/html/HtmlControllerTest.java
rename to spring-web-modules/spring-5-mvc/src/test/java/com/baeldung/html/HtmlControllerTest.java
diff --git a/spring-mvc-basics-2/README.md b/spring-web-modules/spring-mvc-basics-2/README.md
similarity index 100%
rename from spring-mvc-basics-2/README.md
rename to spring-web-modules/spring-mvc-basics-2/README.md
diff --git a/spring-mvc-basics-2/pom.xml b/spring-web-modules/spring-mvc-basics-2/pom.xml
similarity index 98%
rename from spring-mvc-basics-2/pom.xml
rename to spring-web-modules/spring-mvc-basics-2/pom.xml
index c4688ffad6..0b4515994b 100644
--- a/spring-mvc-basics-2/pom.xml
+++ b/spring-web-modules/spring-mvc-basics-2/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-spring-5
0.0.1-SNAPSHOT
- ../parent-spring-5
+ ../../parent-spring-5
@@ -168,7 +168,6 @@
4.0.0
6.0.10.Final
enter-location-of-server
- 1.3.2
3.0.11.RELEASE
2.4.12
2.3.27-incubating
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/ApplicationConfiguration.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/ApplicationConfiguration.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/ApplicationConfiguration.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/ApplicationConfiguration.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/EmailConfiguration.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/EmailConfiguration.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/EmailConfiguration.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/EmailConfiguration.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/FreemarkerConfiguration.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/FreemarkerConfiguration.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/FreemarkerConfiguration.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/FreemarkerConfiguration.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/GroovyConfiguration.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/GroovyConfiguration.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/GroovyConfiguration.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/GroovyConfiguration.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/JadeTemplateConfiguration.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/JadeTemplateConfiguration.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/JadeTemplateConfiguration.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/JadeTemplateConfiguration.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/PushConfiguration.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/PushConfiguration.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/PushConfiguration.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/PushConfiguration.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/ThymeleafConfiguration.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/ThymeleafConfiguration.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/ThymeleafConfiguration.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/ThymeleafConfiguration.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/WebInitializer.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/WebInitializer.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/WebInitializer.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/configuration/WebInitializer.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/AnnotationMethodHandlerAdapterExample.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/AnnotationMethodHandlerAdapterExample.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/AnnotationMethodHandlerAdapterExample.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/AnnotationMethodHandlerAdapterExample.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/CustomerController.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/CustomerController.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/CustomerController.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/CustomerController.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/EmployeeController.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/EmployeeController.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/EmployeeController.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/EmployeeController.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/FileUploadController.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/FileUploadController.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/FileUploadController.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/FileUploadController.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/MailController.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/MailController.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/MailController.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/MailController.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/RequestMappingHandlerAdapterExample.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/RequestMappingHandlerAdapterExample.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/RequestMappingHandlerAdapterExample.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/RequestMappingHandlerAdapterExample.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/RequestMethodController.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/RequestMethodController.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/RequestMethodController.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/RequestMethodController.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/SimpleControllerHandlerAdapterExample.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/SimpleControllerHandlerAdapterExample.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/SimpleControllerHandlerAdapterExample.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/SimpleControllerHandlerAdapterExample.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/UserController.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/UserController.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/UserController.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/UserController.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/Article.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/Article.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/Article.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/Article.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleFeedView.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleFeedView.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleFeedView.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleFeedView.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleRssController.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleRssController.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleRssController.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleRssController.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleRssFeedViewResolver.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleRssFeedViewResolver.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleRssFeedViewResolver.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/ArticleRssFeedViewResolver.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/JsonChannelHttpMessageConverter.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/JsonChannelHttpMessageConverter.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/JsonChannelHttpMessageConverter.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/rss/JsonChannelHttpMessageConverter.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/scribe/GithubController.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/scribe/GithubController.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/scribe/GithubController.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/scribe/GithubController.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/scribe/TwitterController.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/scribe/TwitterController.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/scribe/TwitterController.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/controller/scribe/TwitterController.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/Customer.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/Customer.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/Customer.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/Customer.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/Employee.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/Employee.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/Employee.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/Employee.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/MailObject.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/MailObject.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/MailObject.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/MailObject.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/User.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/User.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/User.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/domain/User.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/exception/InvalidRequestException.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/exception/InvalidRequestException.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/exception/InvalidRequestException.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/exception/InvalidRequestException.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/interceptor/FileUploadExceptionAdvice.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/interceptor/FileUploadExceptionAdvice.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/interceptor/FileUploadExceptionAdvice.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/interceptor/FileUploadExceptionAdvice.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/mail/EmailService.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/mail/EmailService.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/mail/EmailService.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/mail/EmailService.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/mail/EmailServiceImpl.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/mail/EmailServiceImpl.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/mail/EmailServiceImpl.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/mail/EmailServiceImpl.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/push/controller/PushController.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/push/controller/PushController.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/push/controller/PushController.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/push/controller/PushController.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/requestparam/RequestParamController.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/requestparam/RequestParamController.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/requestparam/RequestParamController.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/requestparam/RequestParamController.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/service/EmployeeService.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/service/EmployeeService.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/service/EmployeeService.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/service/EmployeeService.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/service/EmployeeServiceImpl.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/service/EmployeeServiceImpl.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/service/EmployeeServiceImpl.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/service/EmployeeServiceImpl.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/ForwardedServlet.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/ForwardedServlet.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/ForwardedServlet.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/ForwardedServlet.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/HelloServlet.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/HelloServlet.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/HelloServlet.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/HelloServlet.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/RedirectedServlet.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/RedirectedServlet.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/RedirectedServlet.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/RedirectedServlet.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/WelcomeServlet.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/WelcomeServlet.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/WelcomeServlet.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/servlets/WelcomeServlet.java
diff --git a/spring-mvc-basics-2/src/main/java/com/baeldung/spring/validator/CustomerValidator.java b/spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/validator/CustomerValidator.java
similarity index 100%
rename from spring-mvc-basics-2/src/main/java/com/baeldung/spring/validator/CustomerValidator.java
rename to spring-web-modules/spring-mvc-basics-2/src/main/java/com/baeldung/spring/validator/CustomerValidator.java
diff --git a/spring-mvc-basics-2/src/main/resources/application.properties b/spring-web-modules/spring-mvc-basics-2/src/main/resources/application.properties
similarity index 100%
rename from spring-mvc-basics-2/src/main/resources/application.properties
rename to spring-web-modules/spring-mvc-basics-2/src/main/resources/application.properties
diff --git a/spring-mvc-kotlin/src/main/resources/logback.xml b/spring-web-modules/spring-mvc-basics-2/src/main/resources/logback.xml
similarity index 100%
rename from spring-mvc-kotlin/src/main/resources/logback.xml
rename to spring-web-modules/spring-mvc-basics-2/src/main/resources/logback.xml
diff --git a/spring-mvc-basics-2/src/main/resources/mail-logo.png b/spring-web-modules/spring-mvc-basics-2/src/main/resources/mail-logo.png
similarity index 100%
rename from spring-mvc-basics-2/src/main/resources/mail-logo.png
rename to spring-web-modules/spring-mvc-basics-2/src/main/resources/mail-logo.png
diff --git a/spring-mvc-basics-2/src/main/resources/mail-templates/template-freemarker.ftl b/spring-web-modules/spring-mvc-basics-2/src/main/resources/mail-templates/template-freemarker.ftl
similarity index 100%
rename from spring-mvc-basics-2/src/main/resources/mail-templates/template-freemarker.ftl
rename to spring-web-modules/spring-mvc-basics-2/src/main/resources/mail-templates/template-freemarker.ftl
diff --git a/spring-mvc-basics-2/src/main/resources/mail-templates/template-thymeleaf.html b/spring-web-modules/spring-mvc-basics-2/src/main/resources/mail-templates/template-thymeleaf.html
similarity index 100%
rename from spring-mvc-basics-2/src/main/resources/mail-templates/template-thymeleaf.html
rename to spring-web-modules/spring-mvc-basics-2/src/main/resources/mail-templates/template-thymeleaf.html
diff --git a/spring-mvc-basics-2/src/main/resources/mailMessages.properties b/spring-web-modules/spring-mvc-basics-2/src/main/resources/mailMessages.properties
similarity index 100%
rename from spring-mvc-basics-2/src/main/resources/mailMessages.properties
rename to spring-web-modules/spring-mvc-basics-2/src/main/resources/mailMessages.properties
diff --git a/spring-mvc-basics-2/src/main/resources/mailMessages_fr_FR.properties b/spring-web-modules/spring-mvc-basics-2/src/main/resources/mailMessages_fr_FR.properties
similarity index 100%
rename from spring-mvc-basics-2/src/main/resources/mailMessages_fr_FR.properties
rename to spring-web-modules/spring-mvc-basics-2/src/main/resources/mailMessages_fr_FR.properties
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/Greeting.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/Greeting.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/Greeting.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/Greeting.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/Greeting.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/Greeting.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/Greeting.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/Greeting.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/customerHome.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/customerHome.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/customerHome.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/customerHome.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/customerView.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/customerView.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/customerView.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/customerView.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/demo.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/demo.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/demo.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/demo.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/emails.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/emails.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/emails.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/emails.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/employeeHome.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/employeeHome.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/employeeHome.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/employeeHome.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/employeeView.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/employeeView.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/employeeView.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/employeeView.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/error.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/error.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/error.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/error.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/file.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/file.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/file.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/file.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/mail/send.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/mail/send.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/mail/send.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/mail/send.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/mail/sendHtml.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/mail/sendHtml.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/mail/sendHtml.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/mail/sendHtml.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/pages/home.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/pages/home.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/pages/home.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/pages/home.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/pages/springmvc.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/pages/springmvc.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/pages/springmvc.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/pages/springmvc.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-freemarker.ftl b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-freemarker.ftl
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-freemarker.ftl
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-freemarker.ftl
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-groovy.tpl b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-groovy.tpl
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-groovy.tpl
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-groovy.tpl
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-jade.jade b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-jade.jade
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-jade.jade
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-jade.jade
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-thymeleaf.html b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-thymeleaf.html
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-thymeleaf.html
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration-thymeleaf.html
diff --git a/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration.jsp b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration.jsp
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration.jsp
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/WEB-INF/views/registration.jsp
diff --git a/spring-mvc-basics-2/src/main/webapp/resources/logo.png b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/resources/logo.png
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/resources/logo.png
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/resources/logo.png
diff --git a/spring-mvc-basics-2/src/main/webapp/static/css/app.css b/spring-web-modules/spring-mvc-basics-2/src/main/webapp/static/css/app.css
similarity index 100%
rename from spring-mvc-basics-2/src/main/webapp/static/css/app.css
rename to spring-web-modules/spring-mvc-basics-2/src/main/webapp/static/css/app.css
diff --git a/spring-mvc-basics-2/src/test/java/com/baeldung/SpringContextTest.java b/spring-web-modules/spring-mvc-basics-2/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-mvc-basics-2/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-mvc-basics-2/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-mvc-basics-2/src/test/java/com/baeldung/controller/push/PushControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics-2/src/test/java/com/baeldung/controller/push/PushControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-2/src/test/java/com/baeldung/controller/push/PushControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-2/src/test/java/com/baeldung/controller/push/PushControllerIntegrationTest.java
diff --git a/spring-mvc-basics-2/src/test/java/com/baeldung/controller/rss/ArticleRssIntegrationTest.java b/spring-web-modules/spring-mvc-basics-2/src/test/java/com/baeldung/controller/rss/ArticleRssIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-2/src/test/java/com/baeldung/controller/rss/ArticleRssIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-2/src/test/java/com/baeldung/controller/rss/ArticleRssIntegrationTest.java
diff --git a/spring-mvc-basics-2/src/test/java/com/baeldung/spring/servlets/HelloServletIntegrationTest.java b/spring-web-modules/spring-mvc-basics-2/src/test/java/com/baeldung/spring/servlets/HelloServletIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-2/src/test/java/com/baeldung/spring/servlets/HelloServletIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-2/src/test/java/com/baeldung/spring/servlets/HelloServletIntegrationTest.java
diff --git a/spring-mvc-basics-2/src/test/java/com/baeldung/spring/servlets/WelcomeServletIntegrationTest.java b/spring-web-modules/spring-mvc-basics-2/src/test/java/com/baeldung/spring/servlets/WelcomeServletIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-2/src/test/java/com/baeldung/spring/servlets/WelcomeServletIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-2/src/test/java/com/baeldung/spring/servlets/WelcomeServletIntegrationTest.java
diff --git a/spring-mvc-basics-3/README.md b/spring-web-modules/spring-mvc-basics-3/README.md
similarity index 100%
rename from spring-mvc-basics-3/README.md
rename to spring-web-modules/spring-mvc-basics-3/README.md
diff --git a/spring-mvc-basics-3/pom.xml b/spring-web-modules/spring-mvc-basics-3/pom.xml
similarity index 94%
rename from spring-mvc-basics-3/pom.xml
rename to spring-web-modules/spring-mvc-basics-3/pom.xml
index a929337b25..a9245814a8 100644
--- a/spring-mvc-basics-3/pom.xml
+++ b/spring-web-modules/spring-mvc-basics-3/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
@@ -78,12 +78,6 @@
test
-
- org.springframework.cloud
- spring-cloud-context
- ${springcloud.version}
-
-
org.apache.httpcomponents
httpclient
@@ -149,7 +143,6 @@
2.2
18.0
3.1.7
- 2.0.2.RELEASE
4.5.8
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/Application.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/Application.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/Application.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/Application.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/config/WebConfig.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/config/WebConfig.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/config/WebConfig.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/config/WebConfig.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/controller/GenericEntityController.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/controller/GenericEntityController.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/controller/GenericEntityController.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/controller/GenericEntityController.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/GenericBigDecimalConverter.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/GenericBigDecimalConverter.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/GenericBigDecimalConverter.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/GenericBigDecimalConverter.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToAbstractEntityConverterFactory.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToAbstractEntityConverterFactory.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToAbstractEntityConverterFactory.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToAbstractEntityConverterFactory.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToEmployeeConverter.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToEmployeeConverter.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToEmployeeConverter.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToEmployeeConverter.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToEnumConverter.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToEnumConverter.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToEnumConverter.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToEnumConverter.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToLocalDateTimeConverter.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToLocalDateTimeConverter.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToLocalDateTimeConverter.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/StringToLocalDateTimeConverter.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/controller/AbstractEntityController.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/controller/AbstractEntityController.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/controller/AbstractEntityController.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/controller/AbstractEntityController.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/controller/StringToEmployeeConverterController.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/controller/StringToEmployeeConverterController.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/controller/StringToEmployeeConverterController.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/converter/controller/StringToEmployeeConverterController.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/AbstractEntity.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/AbstractEntity.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/AbstractEntity.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/AbstractEntity.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Bar.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Bar.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Bar.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Bar.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Employee.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Employee.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Employee.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Employee.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Foo.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Foo.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Foo.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Foo.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/GenericEntity.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/GenericEntity.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/GenericEntity.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/GenericEntity.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Modes.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Modes.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Modes.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/domain/Modes.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/repository/GenericEntityRepository.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/repository/GenericEntityRepository.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/repository/GenericEntityRepository.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/repository/GenericEntityRepository.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/web/resolver/HeaderVersionArgumentResolver.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/web/resolver/HeaderVersionArgumentResolver.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/web/resolver/HeaderVersionArgumentResolver.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/web/resolver/HeaderVersionArgumentResolver.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/boot/web/resolver/Version.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/web/resolver/Version.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/boot/web/resolver/Version.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/boot/web/resolver/Version.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/CachedBodyHttpServletRequest.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/CachedBodyHttpServletRequest.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/CachedBodyHttpServletRequest.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/CachedBodyHttpServletRequest.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/CachedBodyServletInputStream.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/CachedBodyServletInputStream.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/CachedBodyServletInputStream.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/CachedBodyServletInputStream.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/ContentCachingFilter.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/ContentCachingFilter.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/ContentCachingFilter.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/ContentCachingFilter.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/HttpRequestDemoConfig.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/HttpRequestDemoConfig.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/HttpRequestDemoConfig.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/HttpRequestDemoConfig.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/Person.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/Person.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/Person.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/Person.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/PersonController.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/PersonController.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/PersonController.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/PersonController.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/PrintRequestContentFilter.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/PrintRequestContentFilter.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/PrintRequestContentFilter.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/cachedrequest/PrintRequestContentFilter.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/Application.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/Application.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/Application.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/Application.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/controller/FAQController.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/controller/FAQController.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/controller/FAQController.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/controller/FAQController.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/controller/Ping.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/controller/Ping.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/controller/Ping.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/controller/Ping.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/FilterRegistrationConfig.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/FilterRegistrationConfig.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/FilterRegistrationConfig.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/FilterRegistrationConfig.java
diff --git a/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/HeaderValidatorFilter.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/HeaderValidatorFilter.java
new file mode 100644
index 0000000000..d6c1777326
--- /dev/null
+++ b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/HeaderValidatorFilter.java
@@ -0,0 +1,33 @@
+package com.baeldung.exclude_urls_filter.filter;
+
+import org.springframework.core.annotation.Order;
+import org.springframework.http.HttpStatus;
+import org.springframework.web.filter.OncePerRequestFilter;
+
+import javax.servlet.*;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.io.IOException;
+
+@Order(1)
+public class HeaderValidatorFilter extends OncePerRequestFilter {
+ @Override
+ protected void doFilterInternal(HttpServletRequest request,
+ HttpServletResponse response,
+ FilterChain filterChain)
+ throws ServletException,
+ IOException {
+ String countryCode = request.getHeader("X-Country-Code");
+ if (!"US".equals(countryCode)) {
+ response.sendError(HttpStatus.BAD_REQUEST.value(), "Invalid Locale");
+ return;
+ }
+ filterChain.doFilter(request, response);
+ }
+
+ @Override
+ protected boolean shouldNotFilter(HttpServletRequest request) throws ServletException {
+ String path = request.getRequestURI();
+ return "/health".equals(path);
+ }
+}
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/LogFilter.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/LogFilter.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/LogFilter.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/filter/LogFilter.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/service/FAQService.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/service/FAQService.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/service/FAQService.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/service/FAQService.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/service/FAQServiceImpl.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/service/FAQServiceImpl.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/service/FAQServiceImpl.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/exclude_urls_filter/service/FAQServiceImpl.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/Application.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/Application.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/Application.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/Application.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/controllers/PoemSubmission.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/controllers/PoemSubmission.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/controllers/PoemSubmission.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/controllers/PoemSubmission.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/model/Poem.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/model/Poem.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/model/Poem.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/flash_attributes/model/Poem.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/Application.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/Application.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/Application.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/Application.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/controllers/FeedbackForm.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/controllers/FeedbackForm.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/controllers/FeedbackForm.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/controllers/FeedbackForm.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/model/Feedback.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/model/Feedback.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/model/Feedback.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/form_submission/model/Feedback.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/MyMessageInterpolator.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/MyMessageInterpolator.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/MyMessageInterpolator.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/MyMessageInterpolator.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/NotNullRequest.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/NotNullRequest.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/NotNullRequest.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/NotNullRequest.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/ValidationController.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/ValidationController.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/ValidationController.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/ValidationController.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/ValidationExamples.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/ValidationExamples.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/ValidationExamples.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/interpolation/ValidationExamples.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/spring/Application.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/Application.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/spring/Application.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/Application.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/spring/config/MvcConfig.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/config/MvcConfig.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/spring/config/MvcConfig.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/config/MvcConfig.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/spring/config/converter/StringToEnumConverter.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/config/converter/StringToEnumConverter.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/spring/config/converter/StringToEnumConverter.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/config/converter/StringToEnumConverter.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/spring/enums/EnumController.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/enums/EnumController.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/spring/enums/EnumController.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/enums/EnumController.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/spring/exceptions/GlobalControllerExceptionHandler.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/exceptions/GlobalControllerExceptionHandler.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/spring/exceptions/GlobalControllerExceptionHandler.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/exceptions/GlobalControllerExceptionHandler.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/spring/headers/controller/ReadHeaderRestController.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/headers/controller/ReadHeaderRestController.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/spring/headers/controller/ReadHeaderRestController.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/headers/controller/ReadHeaderRestController.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/spring/model/Modes.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/model/Modes.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/spring/model/Modes.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/model/Modes.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/spring/slash/Application.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/slash/Application.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/spring/slash/Application.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/slash/Application.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/spring/slash/SlashParsingController.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/slash/SlashParsingController.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/spring/slash/SlashParsingController.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/spring/slash/SlashParsingController.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/SpringListValidationApplication.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/SpringListValidationApplication.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/SpringListValidationApplication.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/SpringListValidationApplication.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/constraint/MaxSizeConstraint.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/constraint/MaxSizeConstraint.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/constraint/MaxSizeConstraint.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/constraint/MaxSizeConstraint.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/constraint/MaxSizeConstraintValidator.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/constraint/MaxSizeConstraintValidator.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/constraint/MaxSizeConstraintValidator.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/constraint/MaxSizeConstraintValidator.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/controller/MovieController.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/controller/MovieController.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/controller/MovieController.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/controller/MovieController.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/exception/ConstraintViolationExceptionHandler.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/exception/ConstraintViolationExceptionHandler.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/exception/ConstraintViolationExceptionHandler.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/exception/ConstraintViolationExceptionHandler.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/model/Movie.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/model/Movie.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/model/Movie.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/model/Movie.java
diff --git a/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/service/MovieService.java b/spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/service/MovieService.java
similarity index 100%
rename from spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/service/MovieService.java
rename to spring-web-modules/spring-mvc-basics-3/src/main/java/com/baeldung/validation/listvalidation/service/MovieService.java
diff --git a/spring-mvc-basics-3/src/main/resources/application.properties b/spring-web-modules/spring-mvc-basics-3/src/main/resources/application.properties
similarity index 100%
rename from spring-mvc-basics-3/src/main/resources/application.properties
rename to spring-web-modules/spring-mvc-basics-3/src/main/resources/application.properties
diff --git a/spring-mvc-basics-3/src/main/resources/templates/feedback.html b/spring-web-modules/spring-mvc-basics-3/src/main/resources/templates/feedback.html
similarity index 100%
rename from spring-mvc-basics-3/src/main/resources/templates/feedback.html
rename to spring-web-modules/spring-mvc-basics-3/src/main/resources/templates/feedback.html
diff --git a/spring-mvc-basics-3/src/main/resources/templates/submit.html b/spring-web-modules/spring-mvc-basics-3/src/main/resources/templates/submit.html
similarity index 100%
rename from spring-mvc-basics-3/src/main/resources/templates/submit.html
rename to spring-web-modules/spring-mvc-basics-3/src/main/resources/templates/submit.html
diff --git a/spring-mvc-basics-3/src/main/resources/templates/success.html b/spring-web-modules/spring-mvc-basics-3/src/main/resources/templates/success.html
similarity index 100%
rename from spring-mvc-basics-3/src/main/resources/templates/success.html
rename to spring-web-modules/spring-mvc-basics-3/src/main/resources/templates/success.html
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/AppContextIntegrationTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/AppContextIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/AppContextIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/AppContextIntegrationTest.java
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootApplicationIntegrationTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootApplicationIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootApplicationIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootApplicationIntegrationTest.java
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootJPAIntegrationTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootJPAIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootJPAIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootJPAIntegrationTest.java
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootMailIntegrationTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootMailIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootMailIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/SpringBootMailIntegrationTest.java
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/CachedBodyHttpServletRequestUnitTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/CachedBodyHttpServletRequestUnitTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/CachedBodyHttpServletRequestUnitTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/CachedBodyHttpServletRequestUnitTest.java
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/CachedBodyServletInputStreamUnitTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/CachedBodyServletInputStreamUnitTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/CachedBodyServletInputStreamUnitTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/CachedBodyServletInputStreamUnitTest.java
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/ContentCachingFilterUnitTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/ContentCachingFilterUnitTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/ContentCachingFilterUnitTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/ContentCachingFilterUnitTest.java
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/PersonControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/PersonControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/PersonControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/PersonControllerIntegrationTest.java
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/PrintRequestContentFilterUnitTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/PrintRequestContentFilterUnitTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/PrintRequestContentFilterUnitTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/cachedrequest/PrintRequestContentFilterUnitTest.java
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/headers/controller/ReadHeaderRestControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/headers/controller/ReadHeaderRestControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/headers/controller/ReadHeaderRestControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/headers/controller/ReadHeaderRestControllerIntegrationTest.java
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/spring/slash/SlashParsingControllerIntTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/spring/slash/SlashParsingControllerIntTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/spring/slash/SlashParsingControllerIntTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/spring/slash/SlashParsingControllerIntTest.java
diff --git a/spring-mvc-basics-3/src/test/java/com/baeldung/validation/listvalidation/MovieControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/validation/listvalidation/MovieControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-3/src/test/java/com/baeldung/validation/listvalidation/MovieControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-3/src/test/java/com/baeldung/validation/listvalidation/MovieControllerIntegrationTest.java
diff --git a/spring-mvc-basics-4/.gitignore b/spring-web-modules/spring-mvc-basics-4/.gitignore
similarity index 100%
rename from spring-mvc-basics-4/.gitignore
rename to spring-web-modules/spring-mvc-basics-4/.gitignore
diff --git a/spring-mvc-basics-4/README.md b/spring-web-modules/spring-mvc-basics-4/README.md
similarity index 90%
rename from spring-mvc-basics-4/README.md
rename to spring-web-modules/spring-mvc-basics-4/README.md
index 0da83540ad..d0bca4a303 100644
--- a/spring-mvc-basics-4/README.md
+++ b/spring-web-modules/spring-mvc-basics-4/README.md
@@ -1,7 +1,7 @@
## Spring MVC Basics with Java Configuration Example Project
### The Course
-The "REST With Spring" Classes: http://bit.ly/restwithspring
+The "REST With Spring" Classes: https://bit.ly/restwithspring
### Relevant Articles:
- [Quick Guide to Spring Controllers](https://www.baeldung.com/spring-controllers)
diff --git a/spring-mvc-basics-4/pom.xml b/spring-web-modules/spring-mvc-basics-4/pom.xml
similarity index 94%
rename from spring-mvc-basics-4/pom.xml
rename to spring-web-modules/spring-mvc-basics-4/pom.xml
index 8382cd03b8..07dddcde0c 100644
--- a/spring-mvc-basics-4/pom.xml
+++ b/spring-web-modules/spring-mvc-basics-4/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/Greeting.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/Greeting.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/Greeting.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/Greeting.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/AnnotationsBasedApplicationAndServletInitializer.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/AnnotationsBasedApplicationAndServletInitializer.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/AnnotationsBasedApplicationAndServletInitializer.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/AnnotationsBasedApplicationAndServletInitializer.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/AnnotationsBasedApplicationInitializer.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/AnnotationsBasedApplicationInitializer.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/AnnotationsBasedApplicationInitializer.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/AnnotationsBasedApplicationInitializer.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/ApplicationInitializer.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/ApplicationInitializer.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/ApplicationInitializer.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/ApplicationInitializer.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/NormalWebAppConfig.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/NormalWebAppConfig.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/NormalWebAppConfig.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/NormalWebAppConfig.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/RootApplicationConfig.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/RootApplicationConfig.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/RootApplicationConfig.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/RootApplicationConfig.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/SecureAnnotationsBasedApplicationAndServletInitializer.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/SecureAnnotationsBasedApplicationAndServletInitializer.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/SecureAnnotationsBasedApplicationAndServletInitializer.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/SecureAnnotationsBasedApplicationAndServletInitializer.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/SecureWebAppConfig.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/SecureWebAppConfig.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/SecureWebAppConfig.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/config/SecureWebAppConfig.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/normal/HelloWorldController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/normal/HelloWorldController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/normal/HelloWorldController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/normal/HelloWorldController.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/secure/HelloWorldSecureController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/secure/HelloWorldSecureController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/secure/HelloWorldSecureController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/secure/HelloWorldSecureController.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/services/ApplicationContextUtilService.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/services/ApplicationContextUtilService.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/services/ApplicationContextUtilService.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/services/ApplicationContextUtilService.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/services/GreeterService.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/services/GreeterService.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/contexts/services/GreeterService.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/contexts/services/GreeterService.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/controller/config/StudentControllerConfig.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/config/StudentControllerConfig.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/controller/config/StudentControllerConfig.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/config/StudentControllerConfig.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/controller/config/WebConfig.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/config/WebConfig.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/controller/config/WebConfig.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/config/WebConfig.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/PassParametersController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/PassParametersController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/PassParametersController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/PassParametersController.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/RestAnnotatedController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/RestAnnotatedController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/RestAnnotatedController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/RestAnnotatedController.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/RestController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/RestController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/RestController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/RestController.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/TestController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/TestController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/TestController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/controller/TestController.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/controller/student/Student.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/student/Student.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/controller/student/Student.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/controller/student/Student.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/config/JsonParamsConfig.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/config/JsonParamsConfig.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/config/JsonParamsConfig.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/config/JsonParamsConfig.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/config/JsonParamsInit.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/config/JsonParamsInit.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/config/JsonParamsInit.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/config/JsonParamsInit.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/controller/ProductController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/controller/ProductController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/controller/ProductController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/controller/ProductController.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/model/Product.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/model/Product.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/model/Product.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/model/Product.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/propertyeditor/ProductEditor.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/propertyeditor/ProductEditor.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/propertyeditor/ProductEditor.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/jsonparams/propertyeditor/ProductEditor.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/Article.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/Article.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/Article.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/Article.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerController.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithMapParamController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithMapParamController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithMapParamController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithMapParamController.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithOptionalParamController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithOptionalParamController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithOptionalParamController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithOptionalParamController.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithRequiredAttributeController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithRequiredAttributeController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithRequiredAttributeController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithRequiredAttributeController.java
diff --git a/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithTwoSeparateMethodsController.java b/spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithTwoSeparateMethodsController.java
similarity index 100%
rename from spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithTwoSeparateMethodsController.java
rename to spring-web-modules/spring-mvc-basics-4/src/main/java/com/baeldung/optionalpathvars/ArticleViewerWithTwoSeparateMethodsController.java
diff --git a/spring-mvc-basics-4/src/main/resources/application.properties b/spring-web-modules/spring-mvc-basics-4/src/main/resources/application.properties
similarity index 100%
rename from spring-mvc-basics-4/src/main/resources/application.properties
rename to spring-web-modules/spring-mvc-basics-4/src/main/resources/application.properties
diff --git a/spring-mvc-velocity/src/main/resources/logback.xml b/spring-web-modules/spring-mvc-basics-4/src/main/resources/logback.xml
similarity index 100%
rename from spring-mvc-velocity/src/main/resources/logback.xml
rename to spring-web-modules/spring-mvc-basics-4/src/main/resources/logback.xml
diff --git a/spring-mvc-basics-4/src/main/resources/test-mvc.xml b/spring-web-modules/spring-mvc-basics-4/src/main/resources/test-mvc.xml
similarity index 100%
rename from spring-mvc-basics-4/src/main/resources/test-mvc.xml
rename to spring-web-modules/spring-mvc-basics-4/src/main/resources/test-mvc.xml
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/greeting.xml b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/greeting.xml
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/greeting.xml
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/greeting.xml
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/index.jsp b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/index.jsp
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/index.jsp
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/index.jsp
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/normal-webapp-servlet.xml b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/normal-webapp-servlet.xml
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/normal-webapp-servlet.xml
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/normal-webapp-servlet.xml
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/rootApplicationContext.xml b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/rootApplicationContext.xml
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/rootApplicationContext.xml
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/rootApplicationContext.xml
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/secure-webapp-servlet.xml b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/secure-webapp-servlet.xml
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/secure-webapp-servlet.xml
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/secure-webapp-servlet.xml
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/secure/view/welcome.jsp b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/secure/view/welcome.jsp
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/secure/view/welcome.jsp
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/secure/view/welcome.jsp
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/sample.jsp b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/sample.jsp
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/view/sample.jsp
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/sample.jsp
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/scopesExample.jsp b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/scopesExample.jsp
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/view/scopesExample.jsp
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/scopesExample.jsp
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/viewPage.html b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/viewPage.html
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/view/viewPage.html
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/viewPage.html
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/welcome.jsp b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/welcome.jsp
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/view/welcome.jsp
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/view/welcome.jsp
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/web-old.xml b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/web-old.xml
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/web-old.xml
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/web-old.xml
diff --git a/spring-mvc-basics-4/src/main/webapp/WEB-INF/welcome.jsp b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/welcome.jsp
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/WEB-INF/welcome.jsp
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/WEB-INF/welcome.jsp
diff --git a/spring-mvc-basics-4/src/main/webapp/index.jsp b/spring-web-modules/spring-mvc-basics-4/src/main/webapp/index.jsp
similarity index 100%
rename from spring-mvc-basics-4/src/main/webapp/index.jsp
rename to spring-web-modules/spring-mvc-basics-4/src/main/webapp/index.jsp
diff --git a/spring-mvc-basics-4/src/test/java/com/baeldung/controller/ControllerAnnotationIntegrationTest.java b/spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/controller/ControllerAnnotationIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-4/src/test/java/com/baeldung/controller/ControllerAnnotationIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/controller/ControllerAnnotationIntegrationTest.java
diff --git a/spring-mvc-basics-4/src/test/java/com/baeldung/controller/ControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/controller/ControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-4/src/test/java/com/baeldung/controller/ControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/controller/ControllerIntegrationTest.java
diff --git a/spring-mvc-basics-4/src/test/java/com/baeldung/controller/PassParametersControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/controller/PassParametersControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-4/src/test/java/com/baeldung/controller/PassParametersControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/controller/PassParametersControllerIntegrationTest.java
diff --git a/spring-mvc-basics-4/src/test/java/com/baeldung/jsonparams/JsonParamsIntegrationTest.java b/spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/jsonparams/JsonParamsIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-4/src/test/java/com/baeldung/jsonparams/JsonParamsIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/jsonparams/JsonParamsIntegrationTest.java
diff --git a/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerIntegrationTest.java
diff --git a/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerWithOptionalParamIntegrationTest.java b/spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerWithOptionalParamIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerWithOptionalParamIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerWithOptionalParamIntegrationTest.java
diff --git a/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerWithRequiredAttributeIntegrationTest.java b/spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerWithRequiredAttributeIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerWithRequiredAttributeIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerControllerWithRequiredAttributeIntegrationTest.java
diff --git a/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerWithMapParamIntegrationTest.java b/spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerWithMapParamIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerWithMapParamIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerWithMapParamIntegrationTest.java
diff --git a/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerWithTwoSeparateMethodsIntegrationTest.java b/spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerWithTwoSeparateMethodsIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerWithTwoSeparateMethodsIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics-4/src/test/java/com/baeldung/optionalpathvars/ArticleViewerWithTwoSeparateMethodsIntegrationTest.java
diff --git a/spring-mvc-basics-4/src/test/resources/test-mvc.xml b/spring-web-modules/spring-mvc-basics-4/src/test/resources/test-mvc.xml
similarity index 100%
rename from spring-mvc-basics-4/src/test/resources/test-mvc.xml
rename to spring-web-modules/spring-mvc-basics-4/src/test/resources/test-mvc.xml
diff --git a/spring-mvc-basics/.gitignore b/spring-web-modules/spring-mvc-basics/.gitignore
similarity index 100%
rename from spring-mvc-basics/.gitignore
rename to spring-web-modules/spring-mvc-basics/.gitignore
diff --git a/spring-mvc-basics/README.md b/spring-web-modules/spring-mvc-basics/README.md
similarity index 85%
rename from spring-mvc-basics/README.md
rename to spring-web-modules/spring-mvc-basics/README.md
index cd36ffd94a..49d23aef25 100644
--- a/spring-mvc-basics/README.md
+++ b/spring-web-modules/spring-mvc-basics/README.md
@@ -4,10 +4,11 @@ This module contains articles about the basics of Spring MVC. Articles about mor
their own module.
### The Course
-The "REST With Spring" Classes: http://bit.ly/restwithspring
+The "REST With Spring" Classes: https://bit.ly/restwithspring
### Relevant Articles:
- [Spring MVC Tutorial](https://www.baeldung.com/spring-mvc-tutorial)
+- [An Intro to the Spring DispatcherServlet](https://www.baeldung.com/spring-dispatcherservlet)
- [The Spring @Controller and @RestController Annotations](https://www.baeldung.com/spring-controller-vs-restcontroller)
- [A Guide to the ViewResolver in Spring MVC](https://www.baeldung.com/spring-mvc-view-resolver-tutorial)
- [Guide to Spring Handler Mappings](https://www.baeldung.com/spring-handler-mappings)
@@ -17,4 +18,4 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
- [Using Spring @ResponseStatus to Set HTTP Status Code](https://www.baeldung.com/spring-response-status)
- [Spring MVC and the @ModelAttribute Annotation](https://www.baeldung.com/spring-mvc-and-the-modelattribute-annotation)
- [The HttpMediaTypeNotAcceptableException in Spring MVC](https://www.baeldung.com/spring-httpmediatypenotacceptable)
-- More articles: [[more -->]](/spring-mvc-basics-2)
\ No newline at end of file
+- More articles: [[more -->]](/spring-mvc-basics-2)
diff --git a/spring-mvc-basics/pom.xml b/spring-web-modules/spring-mvc-basics/pom.xml
similarity index 87%
rename from spring-mvc-basics/pom.xml
rename to spring-web-modules/spring-mvc-basics/pom.xml
index d212bc425a..ac92c7bfe5 100644
--- a/spring-mvc-basics/pom.xml
+++ b/spring-web-modules/spring-mvc-basics/pom.xml
@@ -12,7 +12,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
@@ -24,6 +24,11 @@
org.springframework.boot
spring-boot-starter-validation
+
+ commons-fileupload
+ commons-fileupload
+ ${commons-fileupload.version}
+
org.apache.tomcat.embed
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/Application.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/Application.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/Application.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/Application.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/config/MainWebAppInitializer.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/config/MainWebAppInitializer.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/config/MainWebAppInitializer.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/config/MainWebAppInitializer.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/ContactNumberConstraint.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/ContactNumberConstraint.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/customvalidator/ContactNumberConstraint.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/ContactNumberConstraint.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/ContactNumberValidator.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/ContactNumberValidator.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/customvalidator/ContactNumberValidator.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/ContactNumberValidator.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/FieldsValueMatch.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/FieldsValueMatch.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/customvalidator/FieldsValueMatch.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/FieldsValueMatch.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/FieldsValueMatchValidator.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/FieldsValueMatchValidator.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/customvalidator/FieldsValueMatchValidator.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/customvalidator/FieldsValueMatchValidator.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/exception/HttpMediaTypeNotAcceptableExceptionExampleController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/exception/HttpMediaTypeNotAcceptableExceptionExampleController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/exception/HttpMediaTypeNotAcceptableExceptionExampleController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/exception/HttpMediaTypeNotAcceptableExceptionExampleController.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/model/Book.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/model/Book.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/model/Book.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/model/Book.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/model/Employee.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/model/Employee.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/model/Employee.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/model/Employee.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/model/NewUserForm.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/model/NewUserForm.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/model/NewUserForm.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/model/NewUserForm.java
diff --git a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/domain/User.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/model/User.java
similarity index 93%
rename from spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/domain/User.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/model/User.java
index 6e8cde50db..3265bcc93a 100644
--- a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/domain/User.java
+++ b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/model/User.java
@@ -1,4 +1,4 @@
-package com.baeldung.springdispatcherservlet.domain;
+package com.baeldung.model;
public class User {
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/model/ValidatedPhone.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/model/ValidatedPhone.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/model/ValidatedPhone.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/model/ValidatedPhone.java
diff --git a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/services/UserService.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/services/UserService.java
similarity index 72%
rename from spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/services/UserService.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/services/UserService.java
index 1b9bdd4a71..4a70701903 100644
--- a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/services/UserService.java
+++ b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/services/UserService.java
@@ -1,8 +1,8 @@
-package com.baeldung.springdispatcherservlet.services;
+package com.baeldung.services;
import org.springframework.stereotype.Service;
-import com.baeldung.springdispatcherservlet.domain.User;
+import com.baeldung.model.User;
@Service
public class UserService {
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/spring/web/config/WebConfig.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/spring/web/config/WebConfig.java
similarity index 53%
rename from spring-mvc-basics/src/main/java/com/baeldung/spring/web/config/WebConfig.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/spring/web/config/WebConfig.java
index 9a321f65a2..ac917018b0 100644
--- a/spring-mvc-basics/src/main/java/com/baeldung/spring/web/config/WebConfig.java
+++ b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/spring/web/config/WebConfig.java
@@ -1,13 +1,22 @@
package com.baeldung.spring.web.config;
+import java.io.IOException;
+
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.ClassPathResource;
import org.springframework.http.MediaType;
+import org.springframework.ui.context.support.ResourceBundleThemeSource;
+import org.springframework.web.multipart.commons.CommonsMultipartResolver;
import org.springframework.web.servlet.ViewResolver;
import org.springframework.web.servlet.config.annotation.ContentNegotiationConfigurer;
+import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
+import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
+import org.springframework.web.servlet.resource.PathResourceResolver;
+import org.springframework.web.servlet.theme.CookieThemeResolver;
+import org.springframework.web.servlet.theme.ThemeChangeInterceptor;
import org.springframework.web.servlet.view.InternalResourceViewResolver;
import org.springframework.web.servlet.view.JstlView;
import org.springframework.web.servlet.view.ResourceBundleViewResolver;
@@ -24,6 +33,14 @@ public class WebConfig implements WebMvcConfigurer {
.setViewName("index");
}
+ /** Multipart file uploading configuratioin */
+ @Bean
+ public CommonsMultipartResolver multipartResolver() throws IOException {
+ CommonsMultipartResolver resolver = new CommonsMultipartResolver();
+ resolver.setMaxUploadSize(10000000);
+ return resolver;
+ }
+
@Bean
public ViewResolver viewResolver() {
final InternalResourceViewResolver bean = new InternalResourceViewResolver();
@@ -34,6 +51,47 @@ public class WebConfig implements WebMvcConfigurer {
return bean;
}
+ /** Static resource locations including themes*/
+ @Override
+ public void addResourceHandlers(ResourceHandlerRegistry registry) {
+ registry.addResourceHandler("/resources/**/*")
+ .addResourceLocations("/", "/resources/")
+ .setCachePeriod(3600)
+ .resourceChain(true)
+ .addResolver(new PathResourceResolver());
+ }
+
+ /** BEGIN theme configuration */
+ @Bean
+ public ResourceBundleThemeSource themeSource() {
+ ResourceBundleThemeSource themeSource = new ResourceBundleThemeSource();
+ themeSource.setDefaultEncoding("UTF-8");
+ themeSource.setBasenamePrefix("themes.");
+ return themeSource;
+ }
+
+ @Bean
+ public CookieThemeResolver themeResolver() {
+ CookieThemeResolver resolver = new CookieThemeResolver();
+ resolver.setDefaultThemeName("default");
+ resolver.setCookieName("example-theme-cookie");
+ return resolver;
+ }
+
+ @Bean
+ public ThemeChangeInterceptor themeChangeInterceptor() {
+ ThemeChangeInterceptor interceptor = new ThemeChangeInterceptor();
+ interceptor.setParamName("theme");
+ return interceptor;
+ }
+
+ @Override
+ public void addInterceptors(InterceptorRegistry registry) {
+ registry.addInterceptor(themeChangeInterceptor());
+ }
+
+ /** END theme configuration */
+
@Bean
public ViewResolver resourceBundleViewResolver() {
final ResourceBundleViewResolver bean = new ResourceBundleViewResolver();
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/web/controller/EmployeeController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/EmployeeController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/web/controller/EmployeeController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/EmployeeController.java
diff --git a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/controller/MultipartController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/MultipartController.java
similarity index 96%
rename from spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/controller/MultipartController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/MultipartController.java
index a693bf039f..2255ba780c 100644
--- a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/controller/MultipartController.java
+++ b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/MultipartController.java
@@ -1,4 +1,4 @@
-package com.baeldung.springdispatcherservlet.controller;
+package com.baeldung.web.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/web/controller/NewUserController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/NewUserController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/web/controller/NewUserController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/NewUserController.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/web/controller/RequestMappingShortcutsController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/RequestMappingShortcutsController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/web/controller/RequestMappingShortcutsController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/RequestMappingShortcutsController.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/web/controller/ResponseStatusRestController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/ResponseStatusRestController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/web/controller/ResponseStatusRestController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/ResponseStatusRestController.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/web/controller/SampleController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/SampleController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/web/controller/SampleController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/SampleController.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/web/controller/SimpleBookController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/SimpleBookController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/web/controller/SimpleBookController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/SimpleBookController.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/web/controller/SimpleBookRestController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/SimpleBookRestController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/web/controller/SimpleBookRestController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/SimpleBookRestController.java
diff --git a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/controller/UserController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/UserController.java
similarity index 83%
rename from spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/controller/UserController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/UserController.java
index 16e6f293ec..9e39c961a1 100644
--- a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/controller/UserController.java
+++ b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/UserController.java
@@ -1,7 +1,8 @@
-package com.baeldung.springdispatcherservlet.controller;
+package com.baeldung.web.controller;
+
+import com.baeldung.model.User;
+import com.baeldung.services.UserService;
-import com.baeldung.springdispatcherservlet.domain.User;
-import com.baeldung.springdispatcherservlet.services.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
diff --git a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/controller/UserRestController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/UserRestController.java
similarity index 82%
rename from spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/controller/UserRestController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/UserRestController.java
index 9052662f17..7d13c53ba1 100644
--- a/spring-dispatcher-servlet/src/main/java/com/baeldung/springdispatcherservlet/controller/UserRestController.java
+++ b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/UserRestController.java
@@ -1,7 +1,8 @@
-package com.baeldung.springdispatcherservlet.controller;
+package com.baeldung.web.controller;
+
+import com.baeldung.model.User;
+import com.baeldung.services.UserService;
-import com.baeldung.springdispatcherservlet.domain.User;
-import com.baeldung.springdispatcherservlet.services.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/web/controller/ValidatedPhoneController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/ValidatedPhoneController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/web/controller/ValidatedPhoneController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/ValidatedPhoneController.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/BeanNameHandlerMappingController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/BeanNameHandlerMappingController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/BeanNameHandlerMappingController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/BeanNameHandlerMappingController.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/SimpleUrlMappingController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/SimpleUrlMappingController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/SimpleUrlMappingController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/SimpleUrlMappingController.java
diff --git a/spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/WelcomeController.java b/spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/WelcomeController.java
similarity index 100%
rename from spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/WelcomeController.java
rename to spring-web-modules/spring-mvc-basics/src/main/java/com/baeldung/web/controller/handlermapping/WelcomeController.java
diff --git a/spring-mvc-basics/src/main/resources/application.properties b/spring-web-modules/spring-mvc-basics/src/main/resources/application.properties
similarity index 73%
rename from spring-mvc-basics/src/main/resources/application.properties
rename to spring-web-modules/spring-mvc-basics/src/main/resources/application.properties
index b8a9be0b40..cf26fbfb60 100644
--- a/spring-mvc-basics/src/main/resources/application.properties
+++ b/spring-web-modules/spring-mvc-basics/src/main/resources/application.properties
@@ -5,3 +5,6 @@ spring.mvc.pathmatch.use-suffix-pattern=true
#spring.mvc.contentnegotiation.favor-path-extension=true
#spring.mvc.contentnegotiation.favor-parameter=true
#spring.mvc.contentnegotiation.parameter-name=mediaType
+
+# https://github.com/spring-projects/spring-boot/issues/24207
+spring.main.allow-bean-definition-overriding=true
diff --git a/spring-mvc-basics/src/main/resources/mvc-configuration.xml b/spring-web-modules/spring-mvc-basics/src/main/resources/mvc-configuration.xml
similarity index 100%
rename from spring-mvc-basics/src/main/resources/mvc-configuration.xml
rename to spring-web-modules/spring-mvc-basics/src/main/resources/mvc-configuration.xml
diff --git a/spring-dispatcher-servlet/src/main/resources/themes/default.properties b/spring-web-modules/spring-mvc-basics/src/main/resources/themes/default.properties
similarity index 100%
rename from spring-dispatcher-servlet/src/main/resources/themes/default.properties
rename to spring-web-modules/spring-mvc-basics/src/main/resources/themes/default.properties
diff --git a/spring-dispatcher-servlet/src/main/resources/themes/example.properties b/spring-web-modules/spring-mvc-basics/src/main/resources/themes/example.properties
similarity index 100%
rename from spring-dispatcher-servlet/src/main/resources/themes/example.properties
rename to spring-web-modules/spring-mvc-basics/src/main/resources/themes/example.properties
diff --git a/spring-mvc-basics/src/main/resources/views.properties b/spring-web-modules/spring-mvc-basics/src/main/resources/views.properties
similarity index 100%
rename from spring-mvc-basics/src/main/resources/views.properties
rename to spring-web-modules/spring-mvc-basics/src/main/resources/views.properties
diff --git a/spring-mvc-basics/src/main/resources/views.xml b/spring-web-modules/spring-mvc-basics/src/main/resources/views.xml
similarity index 100%
rename from spring-mvc-basics/src/main/resources/views.xml
rename to spring-web-modules/spring-mvc-basics/src/main/resources/views.xml
diff --git a/spring-mvc-basics/src/main/webapp/WEB-INF/view/employeeHome.jsp b/spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/employeeHome.jsp
similarity index 100%
rename from spring-mvc-basics/src/main/webapp/WEB-INF/view/employeeHome.jsp
rename to spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/employeeHome.jsp
diff --git a/spring-mvc-basics/src/main/webapp/WEB-INF/view/employeeView.jsp b/spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/employeeView.jsp
similarity index 100%
rename from spring-mvc-basics/src/main/webapp/WEB-INF/view/employeeView.jsp
rename to spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/employeeView.jsp
diff --git a/spring-mvc-basics/src/main/webapp/WEB-INF/view/index.jsp b/spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/index.jsp
similarity index 100%
rename from spring-mvc-basics/src/main/webapp/WEB-INF/view/index.jsp
rename to spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/index.jsp
diff --git a/spring-mvc-basics/src/main/webapp/WEB-INF/view/phoneHome.jsp b/spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/phoneHome.jsp
similarity index 100%
rename from spring-mvc-basics/src/main/webapp/WEB-INF/view/phoneHome.jsp
rename to spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/phoneHome.jsp
diff --git a/spring-mvc-basics/src/main/webapp/WEB-INF/view/sample.jsp b/spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/sample.jsp
similarity index 100%
rename from spring-mvc-basics/src/main/webapp/WEB-INF/view/sample.jsp
rename to spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/sample.jsp
diff --git a/spring-mvc-basics/src/main/webapp/WEB-INF/view/userHome.jsp b/spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/userHome.jsp
similarity index 100%
rename from spring-mvc-basics/src/main/webapp/WEB-INF/view/userHome.jsp
rename to spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view/userHome.jsp
diff --git a/spring-mvc-basics/src/main/webapp/WEB-INF/view2/sample2.jsp b/spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view2/sample2.jsp
similarity index 100%
rename from spring-mvc-basics/src/main/webapp/WEB-INF/view2/sample2.jsp
rename to spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view2/sample2.jsp
diff --git a/spring-mvc-basics/src/main/webapp/WEB-INF/view3/sample3.jsp b/spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view3/sample3.jsp
similarity index 100%
rename from spring-mvc-basics/src/main/webapp/WEB-INF/view3/sample3.jsp
rename to spring-web-modules/spring-mvc-basics/src/main/webapp/WEB-INF/view3/sample3.jsp
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/SpringContextTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/config/BeanNameUrlHandlerMappingConfig.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/config/BeanNameUrlHandlerMappingConfig.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/config/BeanNameUrlHandlerMappingConfig.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/config/BeanNameUrlHandlerMappingConfig.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/config/HandlerMappingDefaultConfig.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/config/HandlerMappingDefaultConfig.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/config/HandlerMappingDefaultConfig.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/config/HandlerMappingDefaultConfig.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/config/HandlerMappingPrioritiesConfig.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/config/HandlerMappingPrioritiesConfig.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/config/HandlerMappingPrioritiesConfig.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/config/HandlerMappingPrioritiesConfig.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/config/SimpleUrlHandlerMappingConfig.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/config/SimpleUrlHandlerMappingConfig.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/config/SimpleUrlHandlerMappingConfig.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/config/SimpleUrlHandlerMappingConfig.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/exception/HttpMediaTypeNotAcceptableExceptionControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/exception/HttpMediaTypeNotAcceptableExceptionControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/exception/HttpMediaTypeNotAcceptableExceptionControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/exception/HttpMediaTypeNotAcceptableExceptionControllerIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/BeanNameMappingConfigIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/BeanNameMappingConfigIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/handlermappings/BeanNameMappingConfigIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/BeanNameMappingConfigIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/HandlerMappingDefaultConfigIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/HandlerMappingDefaultConfigIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/handlermappings/HandlerMappingDefaultConfigIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/HandlerMappingDefaultConfigIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/HandlerMappingPriorityConfigIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/HandlerMappingPriorityConfigIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/handlermappings/HandlerMappingPriorityConfigIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/HandlerMappingPriorityConfigIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/SimpleUrlMappingConfigIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/SimpleUrlMappingConfigIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/handlermappings/SimpleUrlMappingConfigIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/handlermappings/SimpleUrlMappingConfigIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/web/controller/ClassValidationMvcIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/ClassValidationMvcIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/web/controller/ClassValidationMvcIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/ClassValidationMvcIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/web/controller/CustomMVCValidatorIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/CustomMVCValidatorIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/web/controller/CustomMVCValidatorIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/CustomMVCValidatorIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/web/controller/EmployeeControllerContentNegotiationIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/EmployeeControllerContentNegotiationIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/web/controller/EmployeeControllerContentNegotiationIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/EmployeeControllerContentNegotiationIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/web/controller/EmployeeControllerModelAttributeIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/EmployeeControllerModelAttributeIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/web/controller/EmployeeControllerModelAttributeIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/EmployeeControllerModelAttributeIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/web/controller/RequestMapingShortcutsIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/RequestMapingShortcutsIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/web/controller/RequestMapingShortcutsIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/RequestMapingShortcutsIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/web/controller/ResponseStatusRestControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/ResponseStatusRestControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/web/controller/ResponseStatusRestControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/ResponseStatusRestControllerIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SampleControllerLiveTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SampleControllerLiveTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/web/controller/SampleControllerLiveTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SampleControllerLiveTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SimpleBookControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SimpleBookControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/web/controller/SimpleBookControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SimpleBookControllerIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SimpleBookRestControllerIntegrationTest.java b/spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SimpleBookRestControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-basics/src/test/java/com/baeldung/web/controller/SimpleBookRestControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-basics/src/test/java/com/baeldung/web/controller/SimpleBookRestControllerIntegrationTest.java
diff --git a/spring-mvc-basics/src/test/resources/BeanNameUrlHandlerMappingConfig.xml b/spring-web-modules/spring-mvc-basics/src/test/resources/BeanNameUrlHandlerMappingConfig.xml
similarity index 100%
rename from spring-mvc-basics/src/test/resources/BeanNameUrlHandlerMappingConfig.xml
rename to spring-web-modules/spring-mvc-basics/src/test/resources/BeanNameUrlHandlerMappingConfig.xml
diff --git a/spring-mvc-basics/src/test/resources/ControllerClassNameHandlerMappingConfig.xml b/spring-web-modules/spring-mvc-basics/src/test/resources/ControllerClassNameHandlerMappingConfig.xml
similarity index 100%
rename from spring-mvc-basics/src/test/resources/ControllerClassNameHandlerMappingConfig.xml
rename to spring-web-modules/spring-mvc-basics/src/test/resources/ControllerClassNameHandlerMappingConfig.xml
diff --git a/spring-mvc-basics/src/test/resources/HandlerMappingConfiguringPriorities.xml b/spring-web-modules/spring-mvc-basics/src/test/resources/HandlerMappingConfiguringPriorities.xml
similarity index 100%
rename from spring-mvc-basics/src/test/resources/HandlerMappingConfiguringPriorities.xml
rename to spring-web-modules/spring-mvc-basics/src/test/resources/HandlerMappingConfiguringPriorities.xml
diff --git a/spring-mvc-basics/src/test/resources/SimpleUrlHandlerMappingConfig.xml b/spring-web-modules/spring-mvc-basics/src/test/resources/SimpleUrlHandlerMappingConfig.xml
similarity index 100%
rename from spring-mvc-basics/src/test/resources/SimpleUrlHandlerMappingConfig.xml
rename to spring-web-modules/spring-mvc-basics/src/test/resources/SimpleUrlHandlerMappingConfig.xml
diff --git a/spring-mvc-crash/.gitignore b/spring-web-modules/spring-mvc-crash/.gitignore
similarity index 100%
rename from spring-mvc-crash/.gitignore
rename to spring-web-modules/spring-mvc-crash/.gitignore
diff --git a/spring-mvc-crash/README.md b/spring-web-modules/spring-mvc-crash/README.md
similarity index 100%
rename from spring-mvc-crash/README.md
rename to spring-web-modules/spring-mvc-crash/README.md
diff --git a/spring-mvc-crash/pom.xml b/spring-web-modules/spring-mvc-crash/pom.xml
similarity index 98%
rename from spring-mvc-crash/pom.xml
rename to spring-web-modules/spring-mvc-crash/pom.xml
index 8a902d4937..9a0d97bae9 100644
--- a/spring-mvc-crash/pom.xml
+++ b/spring-web-modules/spring-mvc-crash/pom.xml
@@ -10,8 +10,8 @@
com.baeldung
- parent-modules
- 1.0.0-SNAPSHOT
+ spring-web-modules
+ 0.0.1-SNAPSHOT
diff --git a/spring-mvc-crash/src/main/java/com/baeldung/spring/ClientWebConfig.java b/spring-web-modules/spring-mvc-crash/src/main/java/com/baeldung/spring/ClientWebConfig.java
similarity index 100%
rename from spring-mvc-crash/src/main/java/com/baeldung/spring/ClientWebConfig.java
rename to spring-web-modules/spring-mvc-crash/src/main/java/com/baeldung/spring/ClientWebConfig.java
diff --git a/spring-mvc-crash/src/main/java/com/baeldung/spring/ClientWebConfigJava.java b/spring-web-modules/spring-mvc-crash/src/main/java/com/baeldung/spring/ClientWebConfigJava.java
similarity index 100%
rename from spring-mvc-crash/src/main/java/com/baeldung/spring/ClientWebConfigJava.java
rename to spring-web-modules/spring-mvc-crash/src/main/java/com/baeldung/spring/ClientWebConfigJava.java
diff --git a/spring-mvc-crash/src/main/java/com/baeldung/spring/controller/WelcomeController.java b/spring-web-modules/spring-mvc-crash/src/main/java/com/baeldung/spring/controller/WelcomeController.java
similarity index 100%
rename from spring-mvc-crash/src/main/java/com/baeldung/spring/controller/WelcomeController.java
rename to spring-web-modules/spring-mvc-crash/src/main/java/com/baeldung/spring/controller/WelcomeController.java
diff --git a/spring-mvc-crash/src/main/resources/contentManagementWebMvcConfig.xml b/spring-web-modules/spring-mvc-crash/src/main/resources/contentManagementWebMvcConfig.xml
similarity index 100%
rename from spring-mvc-crash/src/main/resources/contentManagementWebMvcConfig.xml
rename to spring-web-modules/spring-mvc-crash/src/main/resources/contentManagementWebMvcConfig.xml
diff --git a/spring-mvc-crash/src/main/resources/logback.xml b/spring-web-modules/spring-mvc-crash/src/main/resources/logback.xml
similarity index 100%
rename from spring-mvc-crash/src/main/resources/logback.xml
rename to spring-web-modules/spring-mvc-crash/src/main/resources/logback.xml
diff --git a/spring-mvc-crash/src/main/resources/messages.properties b/spring-web-modules/spring-mvc-crash/src/main/resources/messages.properties
similarity index 100%
rename from spring-mvc-crash/src/main/resources/messages.properties
rename to spring-web-modules/spring-mvc-crash/src/main/resources/messages.properties
diff --git a/spring-mvc-crash/src/main/resources/webMvcConfig.xml b/spring-web-modules/spring-mvc-crash/src/main/resources/webMvcConfig.xml
similarity index 100%
rename from spring-mvc-crash/src/main/resources/webMvcConfig.xml
rename to spring-web-modules/spring-mvc-crash/src/main/resources/webMvcConfig.xml
diff --git a/spring-mvc-crash/src/main/webapp/WEB-INF/crash/commands/message.groovy b/spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/crash/commands/message.groovy
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/WEB-INF/crash/commands/message.groovy
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/crash/commands/message.groovy
diff --git a/spring-mvc-crash/src/main/webapp/WEB-INF/crash/commands/message2.java b/spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/crash/commands/message2.java
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/WEB-INF/crash/commands/message2.java
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/crash/commands/message2.java
diff --git a/spring-mvc-crash/src/main/webapp/WEB-INF/crash/crash.properties b/spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/crash/crash.properties
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/WEB-INF/crash/crash.properties
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/crash/crash.properties
diff --git a/spring-mvc-crash/src/main/webapp/WEB-INF/crash/telnet.properties b/spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/crash/telnet.properties
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/WEB-INF/crash/telnet.properties
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/crash/telnet.properties
diff --git a/spring-mvc-crash/src/main/webapp/WEB-INF/mvc-servlet.xml b/spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/mvc-servlet.xml
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/WEB-INF/mvc-servlet.xml
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/mvc-servlet.xml
diff --git a/spring-mvc-crash/src/main/webapp/WEB-INF/view/error.jsp b/spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/view/error.jsp
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/WEB-INF/view/error.jsp
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/view/error.jsp
diff --git a/spring-mvc-crash/src/main/webapp/WEB-INF/view/errorPage.jsp b/spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/view/errorPage.jsp
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/WEB-INF/view/errorPage.jsp
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/view/errorPage.jsp
diff --git a/spring-mvc-crash/src/main/webapp/WEB-INF/view/welcome.jsp b/spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/view/welcome.jsp
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/WEB-INF/view/welcome.jsp
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/view/welcome.jsp
diff --git a/spring-mvc-crash/src/main/webapp/WEB-INF/web.xml b/spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/web.xml
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/WEB-INF/web.xml
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/WEB-INF/web.xml
diff --git a/spring-mvc-crash/src/main/webapp/index.jsp b/spring-web-modules/spring-mvc-crash/src/main/webapp/index.jsp
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/index.jsp
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/index.jsp
diff --git a/spring-mvc-crash/src/main/webapp/jsp/ExampleThree.jsp b/spring-web-modules/spring-mvc-crash/src/main/webapp/jsp/ExampleThree.jsp
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/jsp/ExampleThree.jsp
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/jsp/ExampleThree.jsp
diff --git a/spring-mvc-crash/src/main/webapp/jsp/ExampleTwo.jsp b/spring-web-modules/spring-mvc-crash/src/main/webapp/jsp/ExampleTwo.jsp
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/jsp/ExampleTwo.jsp
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/jsp/ExampleTwo.jsp
diff --git a/spring-mvc-crash/src/main/webapp/jsp/index.jsp b/spring-web-modules/spring-mvc-crash/src/main/webapp/jsp/index.jsp
similarity index 100%
rename from spring-mvc-crash/src/main/webapp/jsp/index.jsp
rename to spring-web-modules/spring-mvc-crash/src/main/webapp/jsp/index.jsp
diff --git a/spring-mvc-crash/src/test/java/com/baeldung/SpringContextTest.java b/spring-web-modules/spring-mvc-crash/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-mvc-crash/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-mvc-crash/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-mvc-forms-jsp/README.md b/spring-web-modules/spring-mvc-forms-jsp/README.md
similarity index 100%
rename from spring-mvc-forms-jsp/README.md
rename to spring-web-modules/spring-mvc-forms-jsp/README.md
diff --git a/spring-mvc-forms-jsp/pom.xml b/spring-web-modules/spring-mvc-forms-jsp/pom.xml
similarity index 96%
rename from spring-mvc-forms-jsp/pom.xml
rename to spring-web-modules/spring-mvc-forms-jsp/pom.xml
index 4e1c2516f6..0ca23bd6cb 100644
--- a/spring-mvc-forms-jsp/pom.xml
+++ b/spring-web-modules/spring-mvc-forms-jsp/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-spring-5
0.0.1-SNAPSHOT
- ../parent-spring-5
+ ../../parent-spring-5
@@ -54,7 +54,7 @@
commons-fileupload
commons-fileupload
- ${fileupload.version}
+ ${commons-fileupload.version}
com.fasterxml.jackson.core
@@ -98,7 +98,6 @@
6.0.10.Final
- 1.3.3
5.2.5.Final
6.0.6
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/bundles/CustomMessage_en.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/bundles/CustomMessage_en.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/bundles/CustomMessage_en.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/bundles/CustomMessage_en.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/bundles/CustomMessage_fr_FR.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/bundles/CustomMessage_fr_FR.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/bundles/CustomMessage_fr_FR.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/bundles/CustomMessage_fr_FR.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/controllers/JSTLController.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/controllers/JSTLController.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/controllers/JSTLController.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/controllers/JSTLController.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/dbaccess/SQLConnection.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/dbaccess/SQLConnection.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/dbaccess/SQLConnection.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/jstl/dbaccess/SQLConnection.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/configuration/ApplicationConfiguration.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/configuration/ApplicationConfiguration.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/configuration/ApplicationConfiguration.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/configuration/ApplicationConfiguration.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/configuration/WebInitializer.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/configuration/WebInitializer.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/configuration/WebInitializer.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/configuration/WebInitializer.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/CustomerController.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/CustomerController.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/CustomerController.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/CustomerController.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/EmployeeController.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/EmployeeController.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/EmployeeController.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/EmployeeController.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/FileUploadController.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/FileUploadController.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/FileUploadController.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/FileUploadController.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/UserController.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/UserController.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/UserController.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/controller/UserController.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/Customer.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/Customer.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/Customer.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/Customer.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/Employee.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/Employee.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/Employee.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/Employee.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/User.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/User.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/User.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/domain/User.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/interceptor/FileUploadExceptionAdvice.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/interceptor/FileUploadExceptionAdvice.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/interceptor/FileUploadExceptionAdvice.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/interceptor/FileUploadExceptionAdvice.java
diff --git a/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/validator/CustomerValidator.java b/spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/validator/CustomerValidator.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/validator/CustomerValidator.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/java/com/baeldung/springmvcforms/validator/CustomerValidator.java
diff --git a/spring-reactive-kotlin/src/main/resources/logback.xml b/spring-web-modules/spring-mvc-forms-jsp/src/main/resources/logback.xml
similarity index 100%
rename from spring-reactive-kotlin/src/main/resources/logback.xml
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/resources/logback.xml
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/html/user.html b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/html/user.html
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/html/user.html
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/html/user.html
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/items.xsl b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/items.xsl
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/items.xsl
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/items.xsl
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/core_tags.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/core_tags.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/core_tags.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/core_tags.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/core_tags_redirect.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/core_tags_redirect.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/core_tags_redirect.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/core_tags_redirect.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/customerHome.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/customerHome.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/customerHome.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/customerHome.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/customerView.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/customerView.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/customerView.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/customerView.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/employeeHome.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/employeeHome.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/employeeHome.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/employeeHome.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/employeeView.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/employeeView.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/employeeView.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/employeeView.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/error.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/error.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/error.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/error.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/file.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/file.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/file.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/file.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/formatting_tags.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/formatting_tags.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/formatting_tags.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/formatting_tags.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/function_tags.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/function_tags.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/function_tags.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/function_tags.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/sql_tags.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/sql_tags.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/sql_tags.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/sql_tags.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/xml_tags.jsp b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/xml_tags.jsp
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/xml_tags.jsp
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/WEB-INF/views/xml_tags.jsp
diff --git a/spring-mvc-forms-jsp/src/main/webapp/css/user.css b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/css/user.css
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/css/user.css
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/css/user.css
diff --git a/spring-mvc-forms-jsp/src/main/webapp/js/app.js b/spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/js/app.js
similarity index 100%
rename from spring-mvc-forms-jsp/src/main/webapp/js/app.js
rename to spring-web-modules/spring-mvc-forms-jsp/src/main/webapp/js/app.js
diff --git a/spring-mvc-forms-jsp/src/test/java/org/baeldung/SpringContextTest.java b/spring-web-modules/spring-mvc-forms-jsp/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-mvc-forms-jsp/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-mvc-forms-jsp/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-mvc-forms-thymeleaf/README.md b/spring-web-modules/spring-mvc-forms-thymeleaf/README.md
similarity index 100%
rename from spring-mvc-forms-thymeleaf/README.md
rename to spring-web-modules/spring-mvc-forms-thymeleaf/README.md
diff --git a/spring-mvc-forms-thymeleaf/pom.xml b/spring-web-modules/spring-mvc-forms-thymeleaf/pom.xml
similarity index 96%
rename from spring-mvc-forms-thymeleaf/pom.xml
rename to spring-web-modules/spring-mvc-forms-thymeleaf/pom.xml
index 2aed7f70ad..641f64b93c 100644
--- a/spring-mvc-forms-thymeleaf/pom.xml
+++ b/spring-web-modules/spring-mvc-forms-thymeleaf/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/Book.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/Book.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/Book.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/Book.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/BookService.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/BookService.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/BookService.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/BookService.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/BooksCreationDto.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/BooksCreationDto.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/BooksCreationDto.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/BooksCreationDto.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/Config.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/Config.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/Config.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/Config.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/InMemoryBookService.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/InMemoryBookService.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/InMemoryBookService.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/InMemoryBookService.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/ListBindingApplication.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/ListBindingApplication.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/ListBindingApplication.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/ListBindingApplication.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/MultipleBooksController.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/MultipleBooksController.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/MultipleBooksController.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/listbindingexample/MultipleBooksController.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/Config.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/Config.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/Config.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/Config.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/SessionAttrsApplication.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/SessionAttrsApplication.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/SessionAttrsApplication.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/SessionAttrsApplication.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoControllerWithScopedProxy.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoControllerWithScopedProxy.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoControllerWithScopedProxy.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoControllerWithScopedProxy.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoControllerWithSessionAttributes.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoControllerWithSessionAttributes.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoControllerWithSessionAttributes.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoControllerWithSessionAttributes.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoItem.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoItem.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoItem.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoItem.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoList.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoList.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoList.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/java/com/baeldung/sessionattrs/TodoList.java
diff --git a/spring-mvc-forms-thymeleaf/src/main/resources/application.properties b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/application.properties
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/resources/application.properties
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/application.properties
diff --git a/spring-rest-angular/src/main/resources/logback.xml b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/logback.xml
similarity index 100%
rename from spring-rest-angular/src/main/resources/logback.xml
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/logback.xml
diff --git a/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/allBooks.html b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/allBooks.html
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/resources/templates/books/allBooks.html
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/allBooks.html
diff --git a/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/createBooksForm.html b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/createBooksForm.html
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/resources/templates/books/createBooksForm.html
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/createBooksForm.html
diff --git a/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/editBooksForm.html b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/editBooksForm.html
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/resources/templates/books/editBooksForm.html
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/editBooksForm.html
diff --git a/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/index.html b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/index.html
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/resources/templates/books/index.html
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/books/index.html
diff --git a/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/index.html b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/index.html
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/index.html
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/index.html
diff --git a/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/scopedproxyform.html b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/scopedproxyform.html
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/scopedproxyform.html
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/scopedproxyform.html
diff --git a/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/scopedproxytodos.html b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/scopedproxytodos.html
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/scopedproxytodos.html
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/scopedproxytodos.html
diff --git a/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/sessionattributesform.html b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/sessionattributesform.html
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/sessionattributesform.html
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/sessionattributesform.html
diff --git a/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/sessionattributestodos.html b/spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/sessionattributestodos.html
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/sessionattributestodos.html
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/main/resources/templates/sessionattrs/sessionattributestodos.html
diff --git a/spring-mvc-forms-thymeleaf/src/test/java/org/baeldung/listbindingexample/SpringContextTest.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/listbindingexample/SpringContextTest.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/test/java/org/baeldung/listbindingexample/SpringContextTest.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/listbindingexample/SpringContextTest.java
diff --git a/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/SessionAttrsApplicationIntegrationTest.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/SessionAttrsApplicationIntegrationTest.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/SessionAttrsApplicationIntegrationTest.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/SessionAttrsApplicationIntegrationTest.java
diff --git a/spring-mvc-forms-thymeleaf/src/test/java/org/baeldung/sessionattrs/SpringContextTest.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/SpringContextTest.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/test/java/org/baeldung/sessionattrs/SpringContextTest.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/SpringContextTest.java
diff --git a/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TestConfig.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TestConfig.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TestConfig.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TestConfig.java
diff --git a/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TodoControllerWithScopedProxyIntegrationTest.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TodoControllerWithScopedProxyIntegrationTest.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TodoControllerWithScopedProxyIntegrationTest.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TodoControllerWithScopedProxyIntegrationTest.java
diff --git a/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TodoControllerWithSessionAttributesIntegrationTest.java b/spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TodoControllerWithSessionAttributesIntegrationTest.java
similarity index 100%
rename from spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TodoControllerWithSessionAttributesIntegrationTest.java
rename to spring-web-modules/spring-mvc-forms-thymeleaf/src/test/java/com/baeldung/sessionattrs/TodoControllerWithSessionAttributesIntegrationTest.java
diff --git a/spring-mvc-java-2/.gitignore b/spring-web-modules/spring-mvc-java-2/.gitignore
similarity index 100%
rename from spring-mvc-java-2/.gitignore
rename to spring-web-modules/spring-mvc-java-2/.gitignore
diff --git a/spring-mvc-java-2/README.md b/spring-web-modules/spring-mvc-java-2/README.md
similarity index 100%
rename from spring-mvc-java-2/README.md
rename to spring-web-modules/spring-mvc-java-2/README.md
diff --git a/spring-mvc-java-2/pom.xml b/spring-web-modules/spring-mvc-java-2/pom.xml
similarity index 97%
rename from spring-mvc-java-2/pom.xml
rename to spring-web-modules/spring-mvc-java-2/pom.xml
index 533a24771a..8a025defac 100644
--- a/spring-mvc-java-2/pom.xml
+++ b/spring-web-modules/spring-mvc-java-2/pom.xml
@@ -12,7 +12,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheControlController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheControlController.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheControlController.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheControlController.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheWebConfig.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheWebConfig.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheWebConfig.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/cache/CacheWebConfig.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/datetime/DateTimeConfig.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/datetime/DateTimeConfig.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/datetime/DateTimeConfig.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/datetime/DateTimeConfig.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/datetime/DateTimeController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/datetime/DateTimeController.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/datetime/DateTimeController.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/datetime/DateTimeController.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/matrix/config/MatrixWebConfig.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/config/MatrixWebConfig.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/matrix/config/MatrixWebConfig.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/config/MatrixWebConfig.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/CompanyController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/CompanyController.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/CompanyController.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/CompanyController.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/EmployeeController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/EmployeeController.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/EmployeeController.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/controller/EmployeeController.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Company.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Company.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Company.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Company.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Employee.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Employee.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Employee.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/matrix/model/Employee.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/multiparttesting/MultipartPostRequestController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/multiparttesting/MultipartPostRequestController.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/multiparttesting/MultipartPostRequestController.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/multiparttesting/MultipartPostRequestController.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/CustomWebMvcConfigurationSupport.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/CustomWebMvcConfigurationSupport.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/CustomWebMvcConfigurationSupport.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/CustomWebMvcConfigurationSupport.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/SiteController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/SiteController.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/SiteController.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable.dottruncated/SiteController.java
diff --git a/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable/PathVariableAnnotationController.java b/spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable/PathVariableAnnotationController.java
similarity index 100%
rename from spring-mvc-java-2/src/main/java/com/baeldung/pathvariable/PathVariableAnnotationController.java
rename to spring-web-modules/spring-mvc-java-2/src/main/java/com/baeldung/pathvariable/PathVariableAnnotationController.java
diff --git a/spring-mvc-java-2/src/main/resources/targetFile.tmp b/spring-web-modules/spring-mvc-java-2/src/main/resources/targetFile.tmp
similarity index 100%
rename from spring-mvc-java-2/src/main/resources/targetFile.tmp
rename to spring-web-modules/spring-mvc-java-2/src/main/resources/targetFile.tmp
diff --git a/spring-mvc-java-2/src/main/webapp/WEB-INF/mvc-servlet.xml b/spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/mvc-servlet.xml
similarity index 100%
rename from spring-mvc-java-2/src/main/webapp/WEB-INF/mvc-servlet.xml
rename to spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/mvc-servlet.xml
diff --git a/spring-mvc-java-2/src/main/webapp/WEB-INF/view/companyHome.jsp b/spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/view/companyHome.jsp
similarity index 100%
rename from spring-mvc-java-2/src/main/webapp/WEB-INF/view/companyHome.jsp
rename to spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/view/companyHome.jsp
diff --git a/spring-mvc-java-2/src/main/webapp/WEB-INF/view/companyView.jsp b/spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/view/companyView.jsp
similarity index 100%
rename from spring-mvc-java-2/src/main/webapp/WEB-INF/view/companyView.jsp
rename to spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/view/companyView.jsp
diff --git a/spring-mvc-java-2/src/main/webapp/WEB-INF/view/employeeHome.jsp b/spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/view/employeeHome.jsp
similarity index 100%
rename from spring-mvc-java-2/src/main/webapp/WEB-INF/view/employeeHome.jsp
rename to spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/view/employeeHome.jsp
diff --git a/spring-mvc-java-2/src/main/webapp/WEB-INF/view/employeeView.jsp b/spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/view/employeeView.jsp
similarity index 100%
rename from spring-mvc-java-2/src/main/webapp/WEB-INF/view/employeeView.jsp
rename to spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/view/employeeView.jsp
diff --git a/spring-mvc-java-2/src/main/webapp/WEB-INF/web.xml b/spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/web.xml
similarity index 100%
rename from spring-mvc-java-2/src/main/webapp/WEB-INF/web.xml
rename to spring-web-modules/spring-mvc-java-2/src/main/webapp/WEB-INF/web.xml
diff --git a/spring-web-modules/spring-mvc-java-2/src/main/webapp/resources/hello.css b/spring-web-modules/spring-mvc-java-2/src/main/webapp/resources/hello.css
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/spring-mvc-java-2/src/test/java/com/baeldung/cache/CacheControlControllerIntegrationTest.java b/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/cache/CacheControlControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-java-2/src/test/java/com/baeldung/cache/CacheControlControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/cache/CacheControlControllerIntegrationTest.java
diff --git a/spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeMvcIntegrationTest.java b/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeMvcIntegrationTest.java
similarity index 100%
rename from spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeMvcIntegrationTest.java
rename to spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeMvcIntegrationTest.java
diff --git a/spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeNoMvcIntegrationTest.java b/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeNoMvcIntegrationTest.java
similarity index 100%
rename from spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeNoMvcIntegrationTest.java
rename to spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/matrix/EmployeeNoMvcIntegrationTest.java
diff --git a/spring-mvc-java-2/src/test/java/com/baeldung/multipart/file/ConvertMultipartFileUnitTest.java b/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/multipart/file/ConvertMultipartFileUnitTest.java
similarity index 100%
rename from spring-mvc-java-2/src/test/java/com/baeldung/multipart/file/ConvertMultipartFileUnitTest.java
rename to spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/multipart/file/ConvertMultipartFileUnitTest.java
diff --git a/spring-mvc-java-2/src/test/java/com/baeldung/multiparttesting/MultipartPostRequestControllerUnitTest.java b/spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/multiparttesting/MultipartPostRequestControllerUnitTest.java
similarity index 100%
rename from spring-mvc-java-2/src/test/java/com/baeldung/multiparttesting/MultipartPostRequestControllerUnitTest.java
rename to spring-web-modules/spring-mvc-java-2/src/test/java/com/baeldung/multiparttesting/MultipartPostRequestControllerUnitTest.java
diff --git a/spring-mvc-java/.gitignore b/spring-web-modules/spring-mvc-java/.gitignore
similarity index 100%
rename from spring-mvc-java/.gitignore
rename to spring-web-modules/spring-mvc-java/.gitignore
diff --git a/spring-mvc-java/README.md b/spring-web-modules/spring-mvc-java/README.md
similarity index 92%
rename from spring-mvc-java/README.md
rename to spring-web-modules/spring-mvc-java/README.md
index 877d92901a..afd1aea3bf 100644
--- a/spring-mvc-java/README.md
+++ b/spring-web-modules/spring-mvc-java/README.md
@@ -4,7 +4,7 @@ This module contains articles about Spring MVC with Java configuration
### The Course
-The "REST With Spring" Classes: http://bit.ly/restwithspring
+The "REST With Spring" Classes: https://bit.ly/restwithspring
### Relevant Articles:
- [Integration Testing in Spring](https://www.baeldung.com/integration-testing-in-spring)
diff --git a/spring-mvc-java/persons.xls b/spring-web-modules/spring-mvc-java/persons.xls
similarity index 100%
rename from spring-mvc-java/persons.xls
rename to spring-web-modules/spring-mvc-java/persons.xls
diff --git a/spring-mvc-java/persons.xlsx b/spring-web-modules/spring-mvc-java/persons.xlsx
similarity index 100%
rename from spring-mvc-java/persons.xlsx
rename to spring-web-modules/spring-mvc-java/persons.xlsx
diff --git a/spring-mvc-java/pom.xml b/spring-web-modules/spring-mvc-java/pom.xml
similarity index 97%
rename from spring-mvc-java/pom.xml
rename to spring-web-modules/spring-mvc-java/pom.xml
index a45e9c8521..1324511215 100644
--- a/spring-mvc-java/pom.xml
+++ b/spring-web-modules/spring-mvc-java/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
@@ -234,10 +234,6 @@
19.0
- 3.5
- 1.3.2
- 2.5
- 1.4
2.2.0
diff --git a/spring-mvc-java/src/main/java/com/baeldung/SpringMVCApplication.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/SpringMVCApplication.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/SpringMVCApplication.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/SpringMVCApplication.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/accessparamsjs/App.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/accessparamsjs/App.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/accessparamsjs/App.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/accessparamsjs/App.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/accessparamsjs/Controller.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/accessparamsjs/Controller.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/accessparamsjs/Controller.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/accessparamsjs/Controller.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/cache/BookService.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/cache/BookService.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/cache/BookService.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/cache/BookService.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/cache/CustomKeyGenerator.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/cache/CustomKeyGenerator.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/cache/CustomKeyGenerator.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/cache/CustomKeyGenerator.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/excel/ExcelPOIHelper.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/excel/ExcelPOIHelper.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/excel/ExcelPOIHelper.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/excel/ExcelPOIHelper.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/excel/MyCell.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/excel/MyCell.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/excel/MyCell.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/excel/MyCell.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/filters/EmptyParamFilter.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/filters/EmptyParamFilter.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/filters/EmptyParamFilter.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/filters/EmptyParamFilter.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/listeners/AppListener.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/AppListener.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/listeners/AppListener.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/AppListener.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/listeners/RequestListener.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/RequestListener.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/listeners/RequestListener.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/listeners/RequestListener.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/model/Article.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/model/Article.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/model/Article.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/model/Article.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/model/Book.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/model/Book.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/model/Book.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/model/Book.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/model/FormDataWithFile.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/model/FormDataWithFile.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/model/FormDataWithFile.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/model/FormDataWithFile.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/model/Greeting.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/model/Greeting.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/model/Greeting.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/model/Greeting.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/model/User.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/model/User.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/model/User.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/model/User.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/servlets/CounterServlet.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/CounterServlet.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/servlets/CounterServlet.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/CounterServlet.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/servlets/UppercaseServlet.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/UppercaseServlet.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/servlets/UppercaseServlet.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/servlets/UppercaseServlet.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/ApplicationCacheConfig.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/ApplicationCacheConfig.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/spring/web/config/ApplicationCacheConfig.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/ApplicationCacheConfig.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/MainWebAppInitializer.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/MainWebAppInitializer.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/spring/web/config/MainWebAppInitializer.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/MainWebAppInitializer.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/WebConfig.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/WebConfig.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/spring/web/config/WebConfig.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/spring/web/config/WebConfig.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/BeanA.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/BeanA.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/BeanA.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/BeanA.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/BeanB.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/BeanB.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/BeanB.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/BeanB.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/ExcelController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/ExcelController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/ExcelController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/ExcelController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/FileUploadController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/FileUploadController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/FileUploadController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/FileUploadController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/GreetController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/GreetController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/GreetController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/GreetController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/ImageController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/ImageController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/ImageController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/ImageController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/MultipartFileUploadStubController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/MultipartFileUploadStubController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/MultipartFileUploadStubController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/MultipartFileUploadStubController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/SampleController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/SampleController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/SampleController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/SampleController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/UserController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/UserController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/UserController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/UserController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/message/MessageController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/message/MessageController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/message/MessageController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/message/MessageController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithMapParamController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithMapParamController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithMapParamController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithMapParamController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithOptionalParamController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithOptionalParamController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithOptionalParamController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithOptionalParamController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithRequiredAttributeController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithRequiredAttributeController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithRequiredAttributeController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithRequiredAttributeController.java
diff --git a/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithTwoSeparateMethodsController.java b/spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithTwoSeparateMethodsController.java
similarity index 100%
rename from spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithTwoSeparateMethodsController.java
rename to spring-web-modules/spring-mvc-java/src/main/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithTwoSeparateMethodsController.java
diff --git a/spring-mvc-java/src/main/resources/annotations.properties b/spring-web-modules/spring-mvc-java/src/main/resources/annotations.properties
similarity index 100%
rename from spring-mvc-java/src/main/resources/annotations.properties
rename to spring-web-modules/spring-mvc-java/src/main/resources/annotations.properties
diff --git a/spring-mvc-java/src/main/resources/annotations.xml b/spring-web-modules/spring-mvc-java/src/main/resources/annotations.xml
similarity index 100%
rename from spring-mvc-java/src/main/resources/annotations.xml
rename to spring-web-modules/spring-mvc-java/src/main/resources/annotations.xml
diff --git a/spring-mvc-java/src/main/resources/application.properties b/spring-web-modules/spring-mvc-java/src/main/resources/application.properties
similarity index 100%
rename from spring-mvc-java/src/main/resources/application.properties
rename to spring-web-modules/spring-mvc-java/src/main/resources/application.properties
diff --git a/spring-mvc-java/src/main/resources/logback.xml b/spring-web-modules/spring-mvc-java/src/main/resources/logback.xml
similarity index 100%
rename from spring-mvc-java/src/main/resources/logback.xml
rename to spring-web-modules/spring-mvc-java/src/main/resources/logback.xml
diff --git a/spring-mvc-java/src/main/resources/messages_en.properties b/spring-web-modules/spring-mvc-java/src/main/resources/messages_en.properties
similarity index 100%
rename from spring-mvc-java/src/main/resources/messages_en.properties
rename to spring-web-modules/spring-mvc-java/src/main/resources/messages_en.properties
diff --git a/spring-mvc-java/src/main/resources/mvc-configuration.xml b/spring-web-modules/spring-mvc-java/src/main/resources/mvc-configuration.xml
similarity index 100%
rename from spring-mvc-java/src/main/resources/mvc-configuration.xml
rename to spring-web-modules/spring-mvc-java/src/main/resources/mvc-configuration.xml
diff --git a/spring-mvc-java/src/main/resources/templates/thymeleaf/index.html b/spring-web-modules/spring-mvc-java/src/main/resources/templates/thymeleaf/index.html
similarity index 100%
rename from spring-mvc-java/src/main/resources/templates/thymeleaf/index.html
rename to spring-web-modules/spring-mvc-java/src/main/resources/templates/thymeleaf/index.html
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/images/image-example.jpg b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/images/image-example.jpg
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/images/image-example.jpg
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/images/image-example.jpg
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/jsp/index.jsp b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/jsp/index.jsp
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/jsp/index.jsp
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/jsp/index.jsp
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/mvc-servlet.xml b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/mvc-servlet.xml
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/mvc-servlet.xml
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/mvc-servlet.xml
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/templates/footer.html b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/templates/footer.html
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/templates/footer.html
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/templates/footer.html
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/templates/hello.html b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/templates/hello.html
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/templates/hello.html
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/templates/hello.html
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/templates/index.html b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/templates/index.html
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/templates/index.html
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/templates/index.html
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/templates/message.html b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/templates/message.html
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/templates/message.html
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/templates/message.html
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/view/excel.jsp b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/view/excel.jsp
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/view/excel.jsp
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/view/excel.jsp
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/view/fileUploadForm.jsp b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/view/fileUploadForm.jsp
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/view/fileUploadForm.jsp
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/view/fileUploadForm.jsp
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/view/fileUploadView.jsp b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/view/fileUploadView.jsp
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/view/fileUploadView.jsp
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/view/fileUploadView.jsp
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/view/index.jsp b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/view/index.jsp
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/view/index.jsp
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/view/index.jsp
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/view/sample.jsp b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/view/sample.jsp
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/view/sample.jsp
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/view/sample.jsp
diff --git a/spring-mvc-java/src/main/webapp/WEB-INF/web_old.xml b/spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/web_old.xml
similarity index 100%
rename from spring-mvc-java/src/main/webapp/WEB-INF/web_old.xml
rename to spring-web-modules/spring-mvc-java/src/main/webapp/WEB-INF/web_old.xml
diff --git a/spring-mvc-java/src/main/webapp/js/jquery.js b/spring-web-modules/spring-mvc-java/src/main/webapp/js/jquery.js
similarity index 100%
rename from spring-mvc-java/src/main/webapp/js/jquery.js
rename to spring-web-modules/spring-mvc-java/src/main/webapp/js/jquery.js
diff --git a/spring-mvc-java/src/main/webapp/js/script-async-jquery.js b/spring-web-modules/spring-mvc-java/src/main/webapp/js/script-async-jquery.js
similarity index 100%
rename from spring-mvc-java/src/main/webapp/js/script-async-jquery.js
rename to spring-web-modules/spring-mvc-java/src/main/webapp/js/script-async-jquery.js
diff --git a/spring-mvc-java/src/main/webapp/js/script-async.js b/spring-web-modules/spring-mvc-java/src/main/webapp/js/script-async.js
similarity index 100%
rename from spring-mvc-java/src/main/webapp/js/script-async.js
rename to spring-web-modules/spring-mvc-java/src/main/webapp/js/script-async.js
diff --git a/spring-mvc-java/src/main/webapp/js/script.js b/spring-web-modules/spring-mvc-java/src/main/webapp/js/script.js
similarity index 100%
rename from spring-mvc-java/src/main/webapp/js/script.js
rename to spring-web-modules/spring-mvc-java/src/main/webapp/js/script.js
diff --git a/spring-mvc-java/src/test/java/com/baeldung/accessparamsjs/ControllerUnitTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/accessparamsjs/ControllerUnitTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/accessparamsjs/ControllerUnitTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/accessparamsjs/ControllerUnitTest.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitAndJUnitLiveTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitAndJUnitLiveTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitAndJUnitLiveTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitAndJUnitLiveTest.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitAndSpringLiveTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitAndSpringLiveTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitAndSpringLiveTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitAndSpringLiveTest.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitWebScrapingLiveTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitWebScrapingLiveTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitWebScrapingLiveTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/htmlunit/HtmlUnitWebScrapingLiveTest.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/htmlunit/TestConfig.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/htmlunit/TestConfig.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/htmlunit/TestConfig.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/htmlunit/TestConfig.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerIntegrationTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerIntegrationTest.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerRealIntegrationTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerRealIntegrationTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerRealIntegrationTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerRealIntegrationTest.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerUnitTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerUnitTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerUnitTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/GreetControllerUnitTest.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/web/controller/README.md b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/README.md
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/web/controller/README.md
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/README.md
diff --git a/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerIntegrationTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerIntegrationTest.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerWithOptionalParamIntegrationTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerWithOptionalParamIntegrationTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerWithOptionalParamIntegrationTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerWithOptionalParamIntegrationTest.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerWithRequiredAttributeIntegrationTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerWithRequiredAttributeIntegrationTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerWithRequiredAttributeIntegrationTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerControllerWithRequiredAttributeIntegrationTest.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithMapParamIntegrationTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithMapParamIntegrationTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithMapParamIntegrationTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithMapParamIntegrationTest.java
diff --git a/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithTwoSeparateMethodsIntegrationTest.java b/spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithTwoSeparateMethodsIntegrationTest.java
similarity index 100%
rename from spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithTwoSeparateMethodsIntegrationTest.java
rename to spring-web-modules/spring-mvc-java/src/test/java/com/baeldung/web/controller/optionalpathvars/ArticleViewerWithTwoSeparateMethodsIntegrationTest.java
diff --git a/spring-mvc-java/src/test/resources/.gitignore b/spring-web-modules/spring-mvc-java/src/test/resources/.gitignore
similarity index 100%
rename from spring-mvc-java/src/test/resources/.gitignore
rename to spring-web-modules/spring-mvc-java/src/test/resources/.gitignore
diff --git a/spring-mvc-java/src/test/resources/logback-test.xml b/spring-web-modules/spring-mvc-java/src/test/resources/logback-test.xml
similarity index 100%
rename from spring-mvc-java/src/test/resources/logback-test.xml
rename to spring-web-modules/spring-mvc-java/src/test/resources/logback-test.xml
diff --git a/spring-mvc-velocity/README.md b/spring-web-modules/spring-mvc-velocity/README.md
similarity index 100%
rename from spring-mvc-velocity/README.md
rename to spring-web-modules/spring-mvc-velocity/README.md
diff --git a/spring-mvc-velocity/pom.xml b/spring-web-modules/spring-mvc-velocity/pom.xml
similarity index 98%
rename from spring-mvc-velocity/pom.xml
rename to spring-web-modules/spring-mvc-velocity/pom.xml
index 2269f05fa4..05016962a5 100644
--- a/spring-mvc-velocity/pom.xml
+++ b/spring-web-modules/spring-mvc-velocity/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-spring-4
0.0.1-SNAPSHOT
- ../parent-spring-4
+ ../../parent-spring-4
diff --git a/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/controller/MainController.java b/spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/controller/MainController.java
similarity index 100%
rename from spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/controller/MainController.java
rename to spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/controller/MainController.java
diff --git a/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/domain/Tutorial.java b/spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/domain/Tutorial.java
similarity index 100%
rename from spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/domain/Tutorial.java
rename to spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/domain/Tutorial.java
diff --git a/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/service/ITutorialsService.java b/spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/service/ITutorialsService.java
similarity index 100%
rename from spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/service/ITutorialsService.java
rename to spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/service/ITutorialsService.java
diff --git a/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/service/TutorialsService.java b/spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/service/TutorialsService.java
similarity index 100%
rename from spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/service/TutorialsService.java
rename to spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/service/TutorialsService.java
diff --git a/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/spring/config/MainWebAppInitializer.java b/spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/spring/config/MainWebAppInitializer.java
similarity index 100%
rename from spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/spring/config/MainWebAppInitializer.java
rename to spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/spring/config/MainWebAppInitializer.java
diff --git a/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/spring/config/WebConfig.java b/spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/spring/config/WebConfig.java
similarity index 100%
rename from spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/spring/config/WebConfig.java
rename to spring-web-modules/spring-mvc-velocity/src/main/java/com/baeldung/mvc/velocity/spring/config/WebConfig.java
diff --git a/spring-rest-shell/src/main/resources/logback.xml b/spring-web-modules/spring-mvc-velocity/src/main/resources/logback.xml
similarity index 100%
rename from spring-rest-shell/src/main/resources/logback.xml
rename to spring-web-modules/spring-mvc-velocity/src/main/resources/logback.xml
diff --git a/spring-mvc-velocity/src/main/webapp/WEB-INF/fragments/footer.vm b/spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/fragments/footer.vm
similarity index 100%
rename from spring-mvc-velocity/src/main/webapp/WEB-INF/fragments/footer.vm
rename to spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/fragments/footer.vm
diff --git a/spring-mvc-velocity/src/main/webapp/WEB-INF/fragments/header.vm b/spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/fragments/header.vm
similarity index 100%
rename from spring-mvc-velocity/src/main/webapp/WEB-INF/fragments/header.vm
rename to spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/fragments/header.vm
diff --git a/spring-mvc-velocity/src/main/webapp/WEB-INF/layouts/layout.vm b/spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/layouts/layout.vm
similarity index 100%
rename from spring-mvc-velocity/src/main/webapp/WEB-INF/layouts/layout.vm
rename to spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/layouts/layout.vm
diff --git a/spring-mvc-velocity/src/main/webapp/WEB-INF/mvc-servlet.xml b/spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/mvc-servlet.xml
similarity index 100%
rename from spring-mvc-velocity/src/main/webapp/WEB-INF/mvc-servlet.xml
rename to spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/mvc-servlet.xml
diff --git a/spring-mvc-velocity/src/main/webapp/WEB-INF/spring-context.xml b/spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/spring-context.xml
similarity index 100%
rename from spring-mvc-velocity/src/main/webapp/WEB-INF/spring-context.xml
rename to spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/spring-context.xml
diff --git a/spring-mvc-velocity/src/main/webapp/WEB-INF/views/index.vm b/spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/views/index.vm
similarity index 100%
rename from spring-mvc-velocity/src/main/webapp/WEB-INF/views/index.vm
rename to spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/views/index.vm
diff --git a/spring-mvc-velocity/src/main/webapp/WEB-INF/views/list.vm b/spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/views/list.vm
similarity index 100%
rename from spring-mvc-velocity/src/main/webapp/WEB-INF/views/list.vm
rename to spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/views/list.vm
diff --git a/spring-mvc-velocity/src/main/webapp/WEB-INF/web_old.xml b/spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/web_old.xml
similarity index 100%
rename from spring-mvc-velocity/src/main/webapp/WEB-INF/web_old.xml
rename to spring-web-modules/spring-mvc-velocity/src/main/webapp/WEB-INF/web_old.xml
diff --git a/spring-mvc-velocity/src/test/java/com/baeldung/mvc/velocity/test/DataContentControllerIntegrationTest.java b/spring-web-modules/spring-mvc-velocity/src/test/java/com/baeldung/mvc/velocity/test/DataContentControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-velocity/src/test/java/com/baeldung/mvc/velocity/test/DataContentControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-velocity/src/test/java/com/baeldung/mvc/velocity/test/DataContentControllerIntegrationTest.java
diff --git a/spring-mvc-velocity/src/test/java/com/baeldung/mvc/velocity/test/config/TestConfig.java b/spring-web-modules/spring-mvc-velocity/src/test/java/com/baeldung/mvc/velocity/test/config/TestConfig.java
similarity index 100%
rename from spring-mvc-velocity/src/test/java/com/baeldung/mvc/velocity/test/config/TestConfig.java
rename to spring-web-modules/spring-mvc-velocity/src/test/java/com/baeldung/mvc/velocity/test/config/TestConfig.java
diff --git a/spring-mvc-velocity/src/test/java/org/baeldung/SpringContextTest.java b/spring-web-modules/spring-mvc-velocity/src/test/java/org/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-mvc-velocity/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-mvc-velocity/src/test/java/org/baeldung/SpringContextTest.java
diff --git a/spring-mvc-velocity/src/test/resources/mvc-servlet.xml b/spring-web-modules/spring-mvc-velocity/src/test/resources/mvc-servlet.xml
similarity index 100%
rename from spring-mvc-velocity/src/test/resources/mvc-servlet.xml
rename to spring-web-modules/spring-mvc-velocity/src/test/resources/mvc-servlet.xml
diff --git a/spring-mvc-views/README.md b/spring-web-modules/spring-mvc-views/README.md
similarity index 100%
rename from spring-mvc-views/README.md
rename to spring-web-modules/spring-mvc-views/README.md
diff --git a/spring-mvc-views/pom.xml b/spring-web-modules/spring-mvc-views/pom.xml
similarity index 98%
rename from spring-mvc-views/pom.xml
rename to spring-web-modules/spring-mvc-views/pom.xml
index 452805bd53..2c3be5a33e 100644
--- a/spring-mvc-views/pom.xml
+++ b/spring-web-modules/spring-mvc-views/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-spring-5
0.0.1-SNAPSHOT
- ../parent-spring-5
+ parent-spring-5/pom.xml
diff --git a/spring-mvc-views/src/main/java/com/baeldung/themes/config/DataSourceConfig.java b/spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/DataSourceConfig.java
similarity index 100%
rename from spring-mvc-views/src/main/java/com/baeldung/themes/config/DataSourceConfig.java
rename to spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/DataSourceConfig.java
diff --git a/spring-mvc-views/src/main/java/com/baeldung/themes/config/InitSecurity.java b/spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/InitSecurity.java
similarity index 100%
rename from spring-mvc-views/src/main/java/com/baeldung/themes/config/InitSecurity.java
rename to spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/InitSecurity.java
diff --git a/spring-mvc-views/src/main/java/com/baeldung/themes/config/SecurityConfig.java b/spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/SecurityConfig.java
similarity index 100%
rename from spring-mvc-views/src/main/java/com/baeldung/themes/config/SecurityConfig.java
rename to spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/SecurityConfig.java
diff --git a/spring-mvc-views/src/main/java/com/baeldung/themes/config/ThemeMVCConfig.java b/spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/ThemeMVCConfig.java
similarity index 100%
rename from spring-mvc-views/src/main/java/com/baeldung/themes/config/ThemeMVCConfig.java
rename to spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/ThemeMVCConfig.java
diff --git a/spring-mvc-views/src/main/java/com/baeldung/themes/config/TilesApplicationConfiguration.java b/spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/TilesApplicationConfiguration.java
similarity index 100%
rename from spring-mvc-views/src/main/java/com/baeldung/themes/config/TilesApplicationConfiguration.java
rename to spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/TilesApplicationConfiguration.java
diff --git a/spring-mvc-views/src/main/java/com/baeldung/themes/config/WebInitializer.java b/spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/WebInitializer.java
similarity index 100%
rename from spring-mvc-views/src/main/java/com/baeldung/themes/config/WebInitializer.java
rename to spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/config/WebInitializer.java
diff --git a/spring-mvc-views/src/main/java/com/baeldung/themes/controllers/AppController.java b/spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/controllers/AppController.java
similarity index 100%
rename from spring-mvc-views/src/main/java/com/baeldung/themes/controllers/AppController.java
rename to spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/controllers/AppController.java
diff --git a/spring-mvc-views/src/main/java/com/baeldung/themes/controllers/TilesController.java b/spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/controllers/TilesController.java
similarity index 100%
rename from spring-mvc-views/src/main/java/com/baeldung/themes/controllers/TilesController.java
rename to spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/controllers/TilesController.java
diff --git a/spring-mvc-views/src/main/java/com/baeldung/themes/domain/UserPreference.java b/spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/domain/UserPreference.java
similarity index 100%
rename from spring-mvc-views/src/main/java/com/baeldung/themes/domain/UserPreference.java
rename to spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/domain/UserPreference.java
diff --git a/spring-mvc-views/src/main/java/com/baeldung/themes/repository/UserPreferenceRepository.java b/spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/repository/UserPreferenceRepository.java
similarity index 100%
rename from spring-mvc-views/src/main/java/com/baeldung/themes/repository/UserPreferenceRepository.java
rename to spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/repository/UserPreferenceRepository.java
diff --git a/spring-mvc-views/src/main/java/com/baeldung/themes/resolver/UserPreferenceThemeResolver.java b/spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/resolver/UserPreferenceThemeResolver.java
similarity index 100%
rename from spring-mvc-views/src/main/java/com/baeldung/themes/resolver/UserPreferenceThemeResolver.java
rename to spring-web-modules/spring-mvc-views/src/main/java/com/baeldung/themes/resolver/UserPreferenceThemeResolver.java
diff --git a/spring-mvc-views/src/main/resources/dark.properties b/spring-web-modules/spring-mvc-views/src/main/resources/dark.properties
similarity index 100%
rename from spring-mvc-views/src/main/resources/dark.properties
rename to spring-web-modules/spring-mvc-views/src/main/resources/dark.properties
diff --git a/spring-mvc-views/src/main/resources/dark_en_US.properties b/spring-web-modules/spring-mvc-views/src/main/resources/dark_en_US.properties
similarity index 100%
rename from spring-mvc-views/src/main/resources/dark_en_US.properties
rename to spring-web-modules/spring-mvc-views/src/main/resources/dark_en_US.properties
diff --git a/spring-mvc-views/src/main/resources/db/sql/create-db.sql b/spring-web-modules/spring-mvc-views/src/main/resources/db/sql/create-db.sql
similarity index 100%
rename from spring-mvc-views/src/main/resources/db/sql/create-db.sql
rename to spring-web-modules/spring-mvc-views/src/main/resources/db/sql/create-db.sql
diff --git a/spring-mvc-views/src/main/resources/db/sql/insert-data.sql b/spring-web-modules/spring-mvc-views/src/main/resources/db/sql/insert-data.sql
similarity index 100%
rename from spring-mvc-views/src/main/resources/db/sql/insert-data.sql
rename to spring-web-modules/spring-mvc-views/src/main/resources/db/sql/insert-data.sql
diff --git a/spring-mvc-views/src/main/resources/light.properties b/spring-web-modules/spring-mvc-views/src/main/resources/light.properties
similarity index 100%
rename from spring-mvc-views/src/main/resources/light.properties
rename to spring-web-modules/spring-mvc-views/src/main/resources/light.properties
diff --git a/spring-mvc-views/src/main/resources/light_en_US.properties b/spring-web-modules/spring-mvc-views/src/main/resources/light_en_US.properties
similarity index 100%
rename from spring-mvc-views/src/main/resources/light_en_US.properties
rename to spring-web-modules/spring-mvc-views/src/main/resources/light_en_US.properties
diff --git a/spring-mvc-views/src/main/resources/themes/black.css b/spring-web-modules/spring-mvc-views/src/main/resources/themes/black.css
similarity index 100%
rename from spring-mvc-views/src/main/resources/themes/black.css
rename to spring-web-modules/spring-mvc-views/src/main/resources/themes/black.css
diff --git a/spring-mvc-views/src/main/resources/themes/white.css b/spring-web-modules/spring-mvc-views/src/main/resources/themes/white.css
similarity index 100%
rename from spring-mvc-views/src/main/resources/themes/white.css
rename to spring-web-modules/spring-mvc-views/src/main/resources/themes/white.css
diff --git a/spring-mvc-views/src/main/webapp/WEB-INF/index.jsp b/spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/index.jsp
similarity index 100%
rename from spring-mvc-views/src/main/webapp/WEB-INF/index.jsp
rename to spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/index.jsp
diff --git a/spring-mvc-views/src/main/webapp/WEB-INF/views/pages/apachetiles.jsp b/spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/pages/apachetiles.jsp
similarity index 100%
rename from spring-mvc-views/src/main/webapp/WEB-INF/views/pages/apachetiles.jsp
rename to spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/pages/apachetiles.jsp
diff --git a/spring-mvc-views/src/main/webapp/WEB-INF/views/pages/home.jsp b/spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/pages/home.jsp
similarity index 100%
rename from spring-mvc-views/src/main/webapp/WEB-INF/views/pages/home.jsp
rename to spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/pages/home.jsp
diff --git a/spring-mvc-views/src/main/webapp/WEB-INF/views/pages/springmvc.jsp b/spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/pages/springmvc.jsp
similarity index 100%
rename from spring-mvc-views/src/main/webapp/WEB-INF/views/pages/springmvc.jsp
rename to spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/pages/springmvc.jsp
diff --git a/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/layouts/defaultLayout.jsp b/spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/layouts/defaultLayout.jsp
similarity index 100%
rename from spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/layouts/defaultLayout.jsp
rename to spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/layouts/defaultLayout.jsp
diff --git a/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultFooter.jsp b/spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultFooter.jsp
similarity index 100%
rename from spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultFooter.jsp
rename to spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultFooter.jsp
diff --git a/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultHeader.jsp b/spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultHeader.jsp
similarity index 100%
rename from spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultHeader.jsp
rename to spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultHeader.jsp
diff --git a/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultMenu.jsp b/spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultMenu.jsp
similarity index 100%
rename from spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultMenu.jsp
rename to spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/templates/defaultMenu.jsp
diff --git a/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/tiles.xml b/spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/tiles.xml
similarity index 100%
rename from spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/tiles.xml
rename to spring-web-modules/spring-mvc-views/src/main/webapp/WEB-INF/views/tiles/tiles.xml
diff --git a/spring-mvc-views/src/main/webapp/static/css/app.css b/spring-web-modules/spring-mvc-views/src/main/webapp/static/css/app.css
similarity index 100%
rename from spring-mvc-views/src/main/webapp/static/css/app.css
rename to spring-web-modules/spring-mvc-views/src/main/webapp/static/css/app.css
diff --git a/spring-mvc-webflow/README.md b/spring-web-modules/spring-mvc-webflow/README.md
similarity index 100%
rename from spring-mvc-webflow/README.md
rename to spring-web-modules/spring-mvc-webflow/README.md
diff --git a/spring-mvc-webflow/pom.xml b/spring-web-modules/spring-mvc-webflow/pom.xml
similarity index 100%
rename from spring-mvc-webflow/pom.xml
rename to spring-web-modules/spring-mvc-webflow/pom.xml
diff --git a/spring-mvc-webflow/src/main/java/org/baeldung/servlet/WebInitializer.java b/spring-web-modules/spring-mvc-webflow/src/main/java/org/baeldung/servlet/WebInitializer.java
similarity index 100%
rename from spring-mvc-webflow/src/main/java/org/baeldung/servlet/WebInitializer.java
rename to spring-web-modules/spring-mvc-webflow/src/main/java/org/baeldung/servlet/WebInitializer.java
diff --git a/spring-mvc-webflow/src/main/java/org/baeldung/spring/WebFlowConfig.java b/spring-web-modules/spring-mvc-webflow/src/main/java/org/baeldung/spring/WebFlowConfig.java
similarity index 100%
rename from spring-mvc-webflow/src/main/java/org/baeldung/spring/WebFlowConfig.java
rename to spring-web-modules/spring-mvc-webflow/src/main/java/org/baeldung/spring/WebFlowConfig.java
diff --git a/spring-mvc-webflow/src/main/java/org/baeldung/spring/WebMvcConfig.java b/spring-web-modules/spring-mvc-webflow/src/main/java/org/baeldung/spring/WebMvcConfig.java
similarity index 100%
rename from spring-mvc-webflow/src/main/java/org/baeldung/spring/WebMvcConfig.java
rename to spring-web-modules/spring-mvc-webflow/src/main/java/org/baeldung/spring/WebMvcConfig.java
diff --git a/spring-mvc-webflow/src/main/resources/flow-definition.xml b/spring-web-modules/spring-mvc-webflow/src/main/resources/flow-definition.xml
similarity index 100%
rename from spring-mvc-webflow/src/main/resources/flow-definition.xml
rename to spring-web-modules/spring-mvc-webflow/src/main/resources/flow-definition.xml
diff --git a/spring-mvc-webflow/src/main/resources/logback.xml b/spring-web-modules/spring-mvc-webflow/src/main/resources/logback.xml
similarity index 100%
rename from spring-mvc-webflow/src/main/resources/logback.xml
rename to spring-web-modules/spring-mvc-webflow/src/main/resources/logback.xml
diff --git a/spring-mvc-webflow/src/main/webapp/WEB-INF/flows/activation-flow.xml b/spring-web-modules/spring-mvc-webflow/src/main/webapp/WEB-INF/flows/activation-flow.xml
similarity index 100%
rename from spring-mvc-webflow/src/main/webapp/WEB-INF/flows/activation-flow.xml
rename to spring-web-modules/spring-mvc-webflow/src/main/webapp/WEB-INF/flows/activation-flow.xml
diff --git a/spring-mvc-webflow/src/main/webapp/WEB-INF/view/activation.jsp b/spring-web-modules/spring-mvc-webflow/src/main/webapp/WEB-INF/view/activation.jsp
similarity index 100%
rename from spring-mvc-webflow/src/main/webapp/WEB-INF/view/activation.jsp
rename to spring-web-modules/spring-mvc-webflow/src/main/webapp/WEB-INF/view/activation.jsp
diff --git a/spring-mvc-webflow/src/main/webapp/WEB-INF/view/failure.jsp b/spring-web-modules/spring-mvc-webflow/src/main/webapp/WEB-INF/view/failure.jsp
similarity index 100%
rename from spring-mvc-webflow/src/main/webapp/WEB-INF/view/failure.jsp
rename to spring-web-modules/spring-mvc-webflow/src/main/webapp/WEB-INF/view/failure.jsp
diff --git a/spring-mvc-webflow/src/main/webapp/WEB-INF/view/sample.jsp b/spring-web-modules/spring-mvc-webflow/src/main/webapp/WEB-INF/view/sample.jsp
similarity index 100%
rename from spring-mvc-webflow/src/main/webapp/WEB-INF/view/sample.jsp
rename to spring-web-modules/spring-mvc-webflow/src/main/webapp/WEB-INF/view/sample.jsp
diff --git a/spring-mvc-webflow/src/main/webapp/WEB-INF/view/success.jsp b/spring-web-modules/spring-mvc-webflow/src/main/webapp/WEB-INF/view/success.jsp
similarity index 100%
rename from spring-mvc-webflow/src/main/webapp/WEB-INF/view/success.jsp
rename to spring-web-modules/spring-mvc-webflow/src/main/webapp/WEB-INF/view/success.jsp
diff --git a/spring-mvc-webflow/src/test/java/org/baeldung/SpringContextTest.java b/spring-web-modules/spring-mvc-webflow/src/test/java/org/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-mvc-webflow/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-mvc-webflow/src/test/java/org/baeldung/SpringContextTest.java
diff --git a/spring-mvc-xml/.gitignore b/spring-web-modules/spring-mvc-xml/.gitignore
similarity index 100%
rename from spring-mvc-xml/.gitignore
rename to spring-web-modules/spring-mvc-xml/.gitignore
diff --git a/spring-mvc-xml/README.md b/spring-web-modules/spring-mvc-xml/README.md
similarity index 91%
rename from spring-mvc-xml/README.md
rename to spring-web-modules/spring-mvc-xml/README.md
index 0adf127aaa..3fbea3626b 100644
--- a/spring-mvc-xml/README.md
+++ b/spring-web-modules/spring-mvc-xml/README.md
@@ -17,6 +17,7 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
- [A Java Web Application Without a web.xml](https://www.baeldung.com/java-web-app-without-web-xml)
- [Validating RequestParams and PathVariables in Spring](https://www.baeldung.com/spring-validate-requestparam-pathvariable)
- [Debugging the Spring MVC 404 “No mapping found for HTTP request” Error](https://www.baeldung.com/spring-mvc-404-error)
+- [Introduction to Servlets and Servlet Containers](https://www.baeldung.com/java-servlets-containers-intro)
## Spring MVC with XML Configuration Example Project
diff --git a/spring-mvc-xml/pom.xml b/spring-web-modules/spring-mvc-xml/pom.xml
similarity index 100%
rename from spring-mvc-xml/pom.xml
rename to spring-web-modules/spring-mvc-xml/pom.xml
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/jsp/ExampleOne.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/jsp/ExampleOne.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/jsp/ExampleOne.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/jsp/ExampleOne.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/jsp/ExampleThree.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/jsp/ExampleThree.java
similarity index 83%
rename from spring-mvc-xml/src/main/java/com/baeldung/jsp/ExampleThree.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/jsp/ExampleThree.java
index 7269f917b4..73132704c8 100644
--- a/spring-mvc-xml/src/main/java/com/baeldung/jsp/ExampleThree.java
+++ b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/jsp/ExampleThree.java
@@ -10,11 +10,15 @@ import javax.servlet.http.HttpServletResponse;
@WebServlet(name = "ExampleThree", description = "JSP Servlet With Annotations", urlPatterns = { "/ExampleThree" })
public class ExampleThree extends HttpServlet {
private static final long serialVersionUID = 1L;
+
+ private String instanceMessage;
@Override
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String message = request.getParameter("message");
+ instanceMessage = request.getParameter("message");
request.setAttribute("text", message);
+ request.setAttribute("unsafeText", instanceMessage);
request.getRequestDispatcher("/jsp/ExampleThree.jsp").forward(request, response);
}
}
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/ClientWebConfig.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/ClientWebConfig.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/ClientWebConfig.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/ClientWebConfig.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/ClientWebConfigJava.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/ClientWebConfigJava.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/ClientWebConfigJava.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/ClientWebConfigJava.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ConstraintViolationExceptionHandler.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ConstraintViolationExceptionHandler.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ConstraintViolationExceptionHandler.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ConstraintViolationExceptionHandler.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ErrorController.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ErrorController.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ErrorController.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ErrorController.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/GeoIPTestController.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/GeoIPTestController.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/controller/GeoIPTestController.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/GeoIPTestController.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/GreetingController.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/GreetingController.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/controller/GreetingController.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/GreetingController.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloController.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloController.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloController.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloController.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloGuestController.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloGuestController.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloGuestController.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloGuestController.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloWorldController.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloWorldController.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloWorldController.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/HelloWorldController.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ImageController.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ImageController.java
similarity index 97%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ImageController.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ImageController.java
index fc46c07e06..c02e76d4c0 100644
--- a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ImageController.java
+++ b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/ImageController.java
@@ -1,61 +1,61 @@
-package com.baeldung.spring.controller;
-
-import org.apache.commons.io.IOUtils;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.core.io.Resource;
-import org.springframework.http.*;
-import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RequestMethod;
-import org.springframework.web.bind.annotation.ResponseBody;
-import org.springframework.web.context.support.ServletContextResource;
-
-import javax.servlet.ServletContext;
-import javax.servlet.http.HttpServletResponse;
-import java.io.IOException;
-import java.io.InputStream;
-
-@Controller
-public class ImageController {
-
- @Autowired
- private ServletContext servletContext;
-
- @RequestMapping(value = "/image-view", method = RequestMethod.GET)
- public String imageView() throws IOException {
- return "image-download";
- }
-
- @RequestMapping(value = "/image-manual-response", method = RequestMethod.GET)
- public void getImageAsByteArray(HttpServletResponse response) throws IOException {
- final InputStream in = servletContext.getResourceAsStream("/WEB-INF/images/image-example.jpg");
- response.setContentType(MediaType.IMAGE_JPEG_VALUE);
- IOUtils.copy(in, response.getOutputStream());
- }
-
- @RequestMapping(value = "/image-byte-array", method = RequestMethod.GET)
- @ResponseBody
- public byte[] getImageAsByteArray() throws IOException {
- final InputStream in = servletContext.getResourceAsStream("/WEB-INF/images/image-example.jpg");
- return IOUtils.toByteArray(in);
- }
-
- @RequestMapping(value = "/image-response-entity", method = RequestMethod.GET)
- public ResponseEntity getImageAsResponseEntity() throws IOException {
- ResponseEntity responseEntity;
- final HttpHeaders headers = new HttpHeaders();
- final InputStream in = servletContext.getResourceAsStream("/WEB-INF/images/image-example.jpg");
- byte[] media = IOUtils.toByteArray(in);
- headers.setCacheControl(CacheControl.noCache().getHeaderValue());
- responseEntity = new ResponseEntity<>(media, headers, HttpStatus.OK);
- return responseEntity;
- }
-
- @RequestMapping(value = "/image-resource", method = RequestMethod.GET)
- @ResponseBody
- public ResponseEntity getImageAsResource() {
- final HttpHeaders headers = new HttpHeaders();
- Resource resource = new ServletContextResource(servletContext, "/WEB-INF/images/image-example.jpg");
- return new ResponseEntity<>(resource, headers, HttpStatus.OK);
- }
-}
+package com.baeldung.spring.controller;
+
+import org.apache.commons.io.IOUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.core.io.Resource;
+import org.springframework.http.*;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.ResponseBody;
+import org.springframework.web.context.support.ServletContextResource;
+
+import javax.servlet.ServletContext;
+import javax.servlet.http.HttpServletResponse;
+import java.io.IOException;
+import java.io.InputStream;
+
+@Controller
+public class ImageController {
+
+ @Autowired
+ private ServletContext servletContext;
+
+ @RequestMapping(value = "/image-view", method = RequestMethod.GET)
+ public String imageView() throws IOException {
+ return "image-download";
+ }
+
+ @RequestMapping(value = "/image-manual-response", method = RequestMethod.GET)
+ public void getImageAsByteArray(HttpServletResponse response) throws IOException {
+ final InputStream in = servletContext.getResourceAsStream("/WEB-INF/images/image-example.jpg");
+ response.setContentType(MediaType.IMAGE_JPEG_VALUE);
+ IOUtils.copy(in, response.getOutputStream());
+ }
+
+ @RequestMapping(value = "/image-byte-array", method = RequestMethod.GET)
+ @ResponseBody
+ public byte[] getImageAsByteArray() throws IOException {
+ final InputStream in = servletContext.getResourceAsStream("/WEB-INF/images/image-example.jpg");
+ return IOUtils.toByteArray(in);
+ }
+
+ @RequestMapping(value = "/image-response-entity", method = RequestMethod.GET)
+ public ResponseEntity getImageAsResponseEntity() throws IOException {
+ ResponseEntity responseEntity;
+ final HttpHeaders headers = new HttpHeaders();
+ final InputStream in = servletContext.getResourceAsStream("/WEB-INF/images/image-example.jpg");
+ byte[] media = IOUtils.toByteArray(in);
+ headers.setCacheControl(CacheControl.noCache().getHeaderValue());
+ responseEntity = new ResponseEntity<>(media, headers, HttpStatus.OK);
+ return responseEntity;
+ }
+
+ @RequestMapping(value = "/image-resource", method = RequestMethod.GET)
+ @ResponseBody
+ public ResponseEntity getImageAsResource() {
+ final HttpHeaders headers = new HttpHeaders();
+ Resource resource = new ServletContextResource(servletContext, "/WEB-INF/images/image-example.jpg");
+ return new ResponseEntity<>(resource, headers, HttpStatus.OK);
+ }
+}
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/PersonController.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/PersonController.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/controller/PersonController.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/PersonController.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/RequestAndPathVariableValidationController.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/RequestAndPathVariableValidationController.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/controller/RequestAndPathVariableValidationController.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/RequestAndPathVariableValidationController.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/WelcomeController.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/WelcomeController.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/controller/WelcomeController.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/controller/WelcomeController.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/form/GeoIP.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/form/GeoIP.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/form/GeoIP.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/form/GeoIP.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/form/Person.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/form/Person.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/form/Person.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/form/Person.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/service/RawDBDemoGeoIPLocationService.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/service/RawDBDemoGeoIPLocationService.java
similarity index 100%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/service/RawDBDemoGeoIPLocationService.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/service/RawDBDemoGeoIPLocationService.java
diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/validator/PersonValidator.java b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/validator/PersonValidator.java
similarity index 96%
rename from spring-mvc-xml/src/main/java/com/baeldung/spring/validator/PersonValidator.java
rename to spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/validator/PersonValidator.java
index f7625bacd9..cda756cdfc 100644
--- a/spring-mvc-xml/src/main/java/com/baeldung/spring/validator/PersonValidator.java
+++ b/spring-web-modules/spring-mvc-xml/src/main/java/com/baeldung/spring/validator/PersonValidator.java
@@ -1,22 +1,22 @@
-package com.baeldung.spring.validator;
-
-import com.baeldung.spring.form.Person;
-import org.springframework.stereotype.Component;
-import org.springframework.validation.Errors;
-import org.springframework.validation.ValidationUtils;
-import org.springframework.validation.Validator;
-
-@Component
-public class PersonValidator implements Validator {
-
- @Override
- public boolean supports(final Class calzz) {
- return Person.class.isAssignableFrom(calzz);
- }
-
- @Override
- public void validate(final Object obj, final Errors errors) {
-
- ValidationUtils.rejectIfEmptyOrWhitespace(errors, "name", "required.name");
- }
+package com.baeldung.spring.validator;
+
+import com.baeldung.spring.form.Person;
+import org.springframework.stereotype.Component;
+import org.springframework.validation.Errors;
+import org.springframework.validation.ValidationUtils;
+import org.springframework.validation.Validator;
+
+@Component
+public class PersonValidator implements Validator {
+
+ @Override
+ public boolean supports(final Class calzz) {
+ return Person.class.isAssignableFrom(calzz);
+ }
+
+ @Override
+ public void validate(final Object obj, final Errors errors) {
+
+ ValidationUtils.rejectIfEmptyOrWhitespace(errors, "name", "required.name");
+ }
}
\ No newline at end of file
diff --git a/spring-mvc-xml/src/main/resources/contentManagementWebMvcConfig.xml b/spring-web-modules/spring-mvc-xml/src/main/resources/contentManagementWebMvcConfig.xml
similarity index 100%
rename from spring-mvc-xml/src/main/resources/contentManagementWebMvcConfig.xml
rename to spring-web-modules/spring-mvc-xml/src/main/resources/contentManagementWebMvcConfig.xml
diff --git a/spring-mvc-xml/src/main/resources/logback.xml b/spring-web-modules/spring-mvc-xml/src/main/resources/logback.xml
similarity index 100%
rename from spring-mvc-xml/src/main/resources/logback.xml
rename to spring-web-modules/spring-mvc-xml/src/main/resources/logback.xml
diff --git a/spring-web-modules/spring-mvc-xml/src/main/resources/messages.properties b/spring-web-modules/spring-mvc-xml/src/main/resources/messages.properties
new file mode 100644
index 0000000000..8d886c8449
--- /dev/null
+++ b/spring-web-modules/spring-mvc-xml/src/main/resources/messages.properties
@@ -0,0 +1,2 @@
+required.name = Name is required!
+NotEmpty.person.password = Password is required!
\ No newline at end of file
diff --git a/spring-mvc-xml/src/main/resources/webMvcConfig.xml b/spring-web-modules/spring-mvc-xml/src/main/resources/webMvcConfig.xml
similarity index 100%
rename from spring-mvc-xml/src/main/resources/webMvcConfig.xml
rename to spring-web-modules/spring-mvc-xml/src/main/resources/webMvcConfig.xml
diff --git a/spring-mvc-xml/src/main/webapp/GeoIpTest.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/GeoIpTest.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/GeoIpTest.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/GeoIpTest.jsp
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/crash/commands/message.groovy b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/crash/commands/message.groovy
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/crash/commands/message.groovy
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/crash/commands/message.groovy
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/crash/commands/message2.java b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/crash/commands/message2.java
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/crash/commands/message2.java
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/crash/commands/message2.java
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/crash/crash.properties b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/crash/crash.properties
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/crash/crash.properties
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/crash/crash.properties
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/crash/telnet.properties b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/crash/telnet.properties
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/crash/telnet.properties
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/crash/telnet.properties
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/images/image-example.jpg b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/images/image-example.jpg
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/images/image-example.jpg
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/images/image-example.jpg
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/mvc-servlet.xml b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/mvc-servlet.xml
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/mvc-servlet.xml
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/mvc-servlet.xml
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/view/error.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/error.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/view/error.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/error.jsp
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/view/errorPage.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/errorPage.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/view/errorPage.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/errorPage.jsp
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/view/greeting.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/greeting.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/view/greeting.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/greeting.jsp
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/view/hello.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/hello.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/view/hello.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/hello.jsp
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/view/helloworld.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/helloworld.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/view/helloworld.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/helloworld.jsp
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/view/image-download.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/image-download.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/view/image-download.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/image-download.jsp
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/view/personForm.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/personForm.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/view/personForm.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/personForm.jsp
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/view/personView.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/personView.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/view/personView.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/personView.jsp
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/view/sample.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/sample.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/view/sample.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/sample.jsp
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/view/welcome.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/welcome.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/view/welcome.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/view/welcome.jsp
diff --git a/spring-mvc-xml/src/main/webapp/WEB-INF/web.xml b/spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/web.xml
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/WEB-INF/web.xml
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/WEB-INF/web.xml
diff --git a/spring-mvc-xml/src/main/webapp/index.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/index.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/index.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/index.jsp
diff --git a/spring-mvc-xml/src/main/webapp/jsp/ExampleThree.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/jsp/ExampleThree.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/jsp/ExampleThree.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/jsp/ExampleThree.jsp
diff --git a/spring-mvc-xml/src/main/webapp/jsp/ExampleTwo.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/jsp/ExampleTwo.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/jsp/ExampleTwo.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/jsp/ExampleTwo.jsp
diff --git a/spring-mvc-xml/src/main/webapp/jsp/index.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/jsp/index.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/jsp/index.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/jsp/index.jsp
diff --git a/spring-mvc-xml/src/main/webapp/spring-handler-index.jsp b/spring-web-modules/spring-mvc-xml/src/main/webapp/spring-handler-index.jsp
similarity index 100%
rename from spring-mvc-xml/src/main/webapp/spring-handler-index.jsp
rename to spring-web-modules/spring-mvc-xml/src/main/webapp/spring-handler-index.jsp
diff --git a/spring-mvc-xml/src/test/java/org/baeldung/SpringContextTest.java b/spring-web-modules/spring-mvc-xml/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-mvc-xml/src/test/java/org/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-mvc-xml/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-mvc-xml/src/test/java/com/baeldung/geoip/GeoIpIntegrationTest.java b/spring-web-modules/spring-mvc-xml/src/test/java/com/baeldung/geoip/GeoIpIntegrationTest.java
similarity index 100%
rename from spring-mvc-xml/src/test/java/com/baeldung/geoip/GeoIpIntegrationTest.java
rename to spring-web-modules/spring-mvc-xml/src/test/java/com/baeldung/geoip/GeoIpIntegrationTest.java
diff --git a/spring-mvc-xml/src/test/java/com/baeldung/spring/controller/RequestAndPathVariableValidationControllerIntegrationTest.java b/spring-web-modules/spring-mvc-xml/src/test/java/com/baeldung/spring/controller/RequestAndPathVariableValidationControllerIntegrationTest.java
similarity index 100%
rename from spring-mvc-xml/src/test/java/com/baeldung/spring/controller/RequestAndPathVariableValidationControllerIntegrationTest.java
rename to spring-web-modules/spring-mvc-xml/src/test/java/com/baeldung/spring/controller/RequestAndPathVariableValidationControllerIntegrationTest.java
diff --git a/spring-rest-angular/README.md b/spring-web-modules/spring-rest-angular/README.md
similarity index 100%
rename from spring-rest-angular/README.md
rename to spring-web-modules/spring-rest-angular/README.md
diff --git a/spring-rest-angular/pom.xml b/spring-web-modules/spring-rest-angular/pom.xml
similarity index 97%
rename from spring-rest-angular/pom.xml
rename to spring-web-modules/spring-rest-angular/pom.xml
index 1d50b4c76c..eb1ec8696c 100644
--- a/spring-rest-angular/pom.xml
+++ b/spring-web-modules/spring-rest-angular/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-rest-angular/src/main/java/com/baeldung/web/dao/StudentRepository.java b/spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/dao/StudentRepository.java
similarity index 100%
rename from spring-rest-angular/src/main/java/com/baeldung/web/dao/StudentRepository.java
rename to spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/dao/StudentRepository.java
diff --git a/spring-rest-angular/src/main/java/com/baeldung/web/entity/Student.java b/spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/entity/Student.java
similarity index 100%
rename from spring-rest-angular/src/main/java/com/baeldung/web/entity/Student.java
rename to spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/entity/Student.java
diff --git a/spring-rest-angular/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java b/spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java
similarity index 100%
rename from spring-rest-angular/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java
rename to spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java
diff --git a/spring-rest-angular/src/main/java/com/baeldung/web/main/Application.java b/spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/main/Application.java
similarity index 100%
rename from spring-rest-angular/src/main/java/com/baeldung/web/main/Application.java
rename to spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/main/Application.java
diff --git a/spring-rest-angular/src/main/java/com/baeldung/web/main/PersistenceConfig.java b/spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/main/PersistenceConfig.java
similarity index 100%
rename from spring-rest-angular/src/main/java/com/baeldung/web/main/PersistenceConfig.java
rename to spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/main/PersistenceConfig.java
diff --git a/spring-rest-angular/src/main/java/com/baeldung/web/rest/StudentDirectoryRestController.java b/spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/rest/StudentDirectoryRestController.java
similarity index 100%
rename from spring-rest-angular/src/main/java/com/baeldung/web/rest/StudentDirectoryRestController.java
rename to spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/rest/StudentDirectoryRestController.java
diff --git a/spring-rest-angular/src/main/java/com/baeldung/web/service/IOperations.java b/spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/service/IOperations.java
similarity index 100%
rename from spring-rest-angular/src/main/java/com/baeldung/web/service/IOperations.java
rename to spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/service/IOperations.java
diff --git a/spring-rest-angular/src/main/java/com/baeldung/web/service/StudentService.java b/spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/service/StudentService.java
similarity index 100%
rename from spring-rest-angular/src/main/java/com/baeldung/web/service/StudentService.java
rename to spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/service/StudentService.java
diff --git a/spring-rest-angular/src/main/java/com/baeldung/web/service/StudentServiceImpl.java b/spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/service/StudentServiceImpl.java
similarity index 100%
rename from spring-rest-angular/src/main/java/com/baeldung/web/service/StudentServiceImpl.java
rename to spring-web-modules/spring-rest-angular/src/main/java/com/baeldung/web/service/StudentServiceImpl.java
diff --git a/spring-rest-angular/src/main/resources/application.properties b/spring-web-modules/spring-rest-angular/src/main/resources/application.properties
similarity index 100%
rename from spring-rest-angular/src/main/resources/application.properties
rename to spring-web-modules/spring-rest-angular/src/main/resources/application.properties
diff --git a/spring-rest-angular/src/main/resources/data.sql b/spring-web-modules/spring-rest-angular/src/main/resources/data.sql
similarity index 100%
rename from spring-rest-angular/src/main/resources/data.sql
rename to spring-web-modules/spring-rest-angular/src/main/resources/data.sql
diff --git a/spring-session/spring-session-jdbc/src/main/resources/logback.xml b/spring-web-modules/spring-rest-angular/src/main/resources/logback.xml
similarity index 100%
rename from spring-session/spring-session-jdbc/src/main/resources/logback.xml
rename to spring-web-modules/spring-rest-angular/src/main/resources/logback.xml
diff --git a/spring-rest-angular/src/main/webapp/WEB-INF/web.xml b/spring-web-modules/spring-rest-angular/src/main/webapp/WEB-INF/web.xml
similarity index 100%
rename from spring-rest-angular/src/main/webapp/WEB-INF/web.xml
rename to spring-web-modules/spring-rest-angular/src/main/webapp/WEB-INF/web.xml
diff --git a/spring-rest-angular/src/main/webapp/index.html b/spring-web-modules/spring-rest-angular/src/main/webapp/index.html
similarity index 100%
rename from spring-rest-angular/src/main/webapp/index.html
rename to spring-web-modules/spring-rest-angular/src/main/webapp/index.html
diff --git a/spring-rest-angular/src/main/webapp/view/app.js b/spring-web-modules/spring-rest-angular/src/main/webapp/view/app.js
similarity index 100%
rename from spring-rest-angular/src/main/webapp/view/app.js
rename to spring-web-modules/spring-rest-angular/src/main/webapp/view/app.js
diff --git a/spring-rest-angular/src/test/java/com/baeldung/SpringContextTest.java b/spring-web-modules/spring-rest-angular/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-rest-angular/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-rest-angular/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-rest-angular/src/test/java/com/baeldung/web/service/StudentServiceIntegrationTest.java b/spring-web-modules/spring-rest-angular/src/test/java/com/baeldung/web/service/StudentServiceIntegrationTest.java
similarity index 100%
rename from spring-rest-angular/src/test/java/com/baeldung/web/service/StudentServiceIntegrationTest.java
rename to spring-web-modules/spring-rest-angular/src/test/java/com/baeldung/web/service/StudentServiceIntegrationTest.java
diff --git a/spring-rest-http-2/README.md b/spring-web-modules/spring-rest-http-2/README.md
similarity index 100%
rename from spring-rest-http-2/README.md
rename to spring-web-modules/spring-rest-http-2/README.md
diff --git a/spring-rest-http-2/pom.xml b/spring-web-modules/spring-rest-http-2/pom.xml
similarity index 95%
rename from spring-rest-http-2/pom.xml
rename to spring-web-modules/spring-rest-http-2/pom.xml
index 8678d7243d..6aa8be365c 100644
--- a/spring-rest-http-2/pom.xml
+++ b/spring-web-modules/spring-rest-http-2/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-rest-http-2/src/main/java/com/baeldung/SpringBootRest2Application.java b/spring-web-modules/spring-rest-http-2/src/main/java/com/baeldung/SpringBootRest2Application.java
similarity index 100%
rename from spring-rest-http-2/src/main/java/com/baeldung/SpringBootRest2Application.java
rename to spring-web-modules/spring-rest-http-2/src/main/java/com/baeldung/SpringBootRest2Application.java
diff --git a/spring-rest-http-2/src/main/java/com/baeldung/swaggerui/disable/config/SwaggerConfig.java b/spring-web-modules/spring-rest-http-2/src/main/java/com/baeldung/swaggerui/disable/config/SwaggerConfig.java
similarity index 100%
rename from spring-rest-http-2/src/main/java/com/baeldung/swaggerui/disable/config/SwaggerConfig.java
rename to spring-web-modules/spring-rest-http-2/src/main/java/com/baeldung/swaggerui/disable/config/SwaggerConfig.java
diff --git a/spring-rest-http-2/src/main/java/com/baeldung/swaggerui/disable/controllers/VersionController.java b/spring-web-modules/spring-rest-http-2/src/main/java/com/baeldung/swaggerui/disable/controllers/VersionController.java
similarity index 100%
rename from spring-rest-http-2/src/main/java/com/baeldung/swaggerui/disable/controllers/VersionController.java
rename to spring-web-modules/spring-rest-http-2/src/main/java/com/baeldung/swaggerui/disable/controllers/VersionController.java
diff --git a/spring-rest-http/README.md b/spring-web-modules/spring-rest-http/README.md
similarity index 100%
rename from spring-rest-http/README.md
rename to spring-web-modules/spring-rest-http/README.md
diff --git a/spring-rest-http/pom.xml b/spring-web-modules/spring-rest-http/pom.xml
similarity index 97%
rename from spring-rest-http/pom.xml
rename to spring-web-modules/spring-rest-http/pom.xml
index 18b7e0af05..422bcd32f7 100644
--- a/spring-rest-http/pom.xml
+++ b/spring-web-modules/spring-rest-http/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-rest-http/src/main/java/com/baeldung/CustomerSpringBootRestApplication.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/CustomerSpringBootRestApplication.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/CustomerSpringBootRestApplication.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/CustomerSpringBootRestApplication.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/config/MvcConfig.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/config/MvcConfig.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/config/MvcConfig.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/config/MvcConfig.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/controllers/DeferredResultController.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/controllers/DeferredResultController.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/controllers/DeferredResultController.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/controllers/DeferredResultController.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/model/Customer.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/model/Customer.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/model/Customer.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/model/Customer.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/requestmapping/BarMappingExamplesController.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/requestmapping/BarMappingExamplesController.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/requestmapping/BarMappingExamplesController.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/requestmapping/BarMappingExamplesController.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/requestmapping/BazzNewMappingsExampleController.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/requestmapping/BazzNewMappingsExampleController.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/requestmapping/BazzNewMappingsExampleController.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/requestmapping/BazzNewMappingsExampleController.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/requestmapping/FooMappingExamplesController.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/requestmapping/FooMappingExamplesController.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/requestmapping/FooMappingExamplesController.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/requestmapping/FooMappingExamplesController.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/service/CustomerIdGenerator.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/service/CustomerIdGenerator.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/service/CustomerIdGenerator.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/service/CustomerIdGenerator.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/service/CustomerService.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/service/CustomerService.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/service/CustomerService.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/service/CustomerService.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/service/impl/CustomerIdGeneratorImpl.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/service/impl/CustomerIdGeneratorImpl.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/service/impl/CustomerIdGeneratorImpl.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/service/impl/CustomerIdGeneratorImpl.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/service/impl/CustomerServiceImpl.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/service/impl/CustomerServiceImpl.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/service/impl/CustomerServiceImpl.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/service/impl/CustomerServiceImpl.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/web/controller/customer/CustomerRestController.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/controller/customer/CustomerRestController.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/web/controller/customer/CustomerRestController.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/controller/customer/CustomerRestController.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/web/controller/status/ExampleController.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/controller/status/ExampleController.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/web/controller/status/ExampleController.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/controller/status/ExampleController.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/web/controller/status/ForbiddenException.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/controller/status/ForbiddenException.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/web/controller/status/ForbiddenException.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/controller/status/ForbiddenException.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/web/dto/Bazz.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/dto/Bazz.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/web/dto/Bazz.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/dto/Bazz.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/web/dto/Foo.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/dto/Foo.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/web/dto/Foo.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/dto/Foo.java
diff --git a/spring-rest-http/src/main/java/com/baeldung/web/exception/CustomerNotFoundException.java b/spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/exception/CustomerNotFoundException.java
similarity index 100%
rename from spring-rest-http/src/main/java/com/baeldung/web/exception/CustomerNotFoundException.java
rename to spring-web-modules/spring-rest-http/src/main/java/com/baeldung/web/exception/CustomerNotFoundException.java
diff --git a/spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-date-format.yaml b/spring-web-modules/spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-date-format.yaml
similarity index 100%
rename from spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-date-format.yaml
rename to spring-web-modules/spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-date-format.yaml
diff --git a/spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-date-pattern.yaml b/spring-web-modules/spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-date-pattern.yaml
similarity index 100%
rename from spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-date-pattern.yaml
rename to spring-web-modules/spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-date-pattern.yaml
diff --git a/spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-datetime-format.yaml b/spring-web-modules/spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-datetime-format.yaml
similarity index 100%
rename from spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-datetime-format.yaml
rename to spring-web-modules/spring-rest-http/src/main/resources/openapi-dates-definitions/openapi-3-datetime-format.yaml
diff --git a/spring-rest-http/src/main/resources/openapi-queryparam-definitions/openapi-2.yaml b/spring-web-modules/spring-rest-http/src/main/resources/openapi-queryparam-definitions/openapi-2.yaml
similarity index 100%
rename from spring-rest-http/src/main/resources/openapi-queryparam-definitions/openapi-2.yaml
rename to spring-web-modules/spring-rest-http/src/main/resources/openapi-queryparam-definitions/openapi-2.yaml
diff --git a/spring-rest-http/src/main/resources/openapi-queryparam-definitions/openapi-3.yaml b/spring-web-modules/spring-rest-http/src/main/resources/openapi-queryparam-definitions/openapi-3.yaml
similarity index 100%
rename from spring-rest-http/src/main/resources/openapi-queryparam-definitions/openapi-3.yaml
rename to spring-web-modules/spring-rest-http/src/main/resources/openapi-queryparam-definitions/openapi-3.yaml
diff --git a/spring-rest-http/src/test/java/com/baeldung/requestmapping/BazzNewMappingsExampleIntegrationTest.java b/spring-web-modules/spring-rest-http/src/test/java/com/baeldung/requestmapping/BazzNewMappingsExampleIntegrationTest.java
similarity index 100%
rename from spring-rest-http/src/test/java/com/baeldung/requestmapping/BazzNewMappingsExampleIntegrationTest.java
rename to spring-web-modules/spring-rest-http/src/test/java/com/baeldung/requestmapping/BazzNewMappingsExampleIntegrationTest.java
diff --git a/spring-rest-http/src/test/java/com/baeldung/requestmapping/FooMappingExamplesControllerUnitTest.java b/spring-web-modules/spring-rest-http/src/test/java/com/baeldung/requestmapping/FooMappingExamplesControllerUnitTest.java
similarity index 100%
rename from spring-rest-http/src/test/java/com/baeldung/requestmapping/FooMappingExamplesControllerUnitTest.java
rename to spring-web-modules/spring-rest-http/src/test/java/com/baeldung/requestmapping/FooMappingExamplesControllerUnitTest.java
diff --git a/spring-rest-http/src/test/java/com/baeldung/responseheaders/ResponseHeaderLiveTest.java b/spring-web-modules/spring-rest-http/src/test/java/com/baeldung/responseheaders/ResponseHeaderLiveTest.java
similarity index 100%
rename from spring-rest-http/src/test/java/com/baeldung/responseheaders/ResponseHeaderLiveTest.java
rename to spring-web-modules/spring-rest-http/src/test/java/com/baeldung/responseheaders/ResponseHeaderLiveTest.java
diff --git a/spring-rest-http/src/test/java/com/baeldung/service/impl/CustomerIdGeneratorImplUnitTest.java b/spring-web-modules/spring-rest-http/src/test/java/com/baeldung/service/impl/CustomerIdGeneratorImplUnitTest.java
similarity index 100%
rename from spring-rest-http/src/test/java/com/baeldung/service/impl/CustomerIdGeneratorImplUnitTest.java
rename to spring-web-modules/spring-rest-http/src/test/java/com/baeldung/service/impl/CustomerIdGeneratorImplUnitTest.java
diff --git a/spring-rest-http/src/test/java/com/baeldung/service/impl/CustomerServiceImplUnitTest.java b/spring-web-modules/spring-rest-http/src/test/java/com/baeldung/service/impl/CustomerServiceImplUnitTest.java
similarity index 100%
rename from spring-rest-http/src/test/java/com/baeldung/service/impl/CustomerServiceImplUnitTest.java
rename to spring-web-modules/spring-rest-http/src/test/java/com/baeldung/service/impl/CustomerServiceImplUnitTest.java
diff --git a/spring-rest-http/src/test/java/com/baeldung/uribuilder/SpringUriBuilderIntegrationTest.java b/spring-web-modules/spring-rest-http/src/test/java/com/baeldung/uribuilder/SpringUriBuilderIntegrationTest.java
similarity index 100%
rename from spring-rest-http/src/test/java/com/baeldung/uribuilder/SpringUriBuilderIntegrationTest.java
rename to spring-web-modules/spring-rest-http/src/test/java/com/baeldung/uribuilder/SpringUriBuilderIntegrationTest.java
diff --git a/spring-rest-http/src/test/java/com/baeldung/web/controller/customer/CustomerRestControllerIntegrationTest.java b/spring-web-modules/spring-rest-http/src/test/java/com/baeldung/web/controller/customer/CustomerRestControllerIntegrationTest.java
similarity index 100%
rename from spring-rest-http/src/test/java/com/baeldung/web/controller/customer/CustomerRestControllerIntegrationTest.java
rename to spring-web-modules/spring-rest-http/src/test/java/com/baeldung/web/controller/customer/CustomerRestControllerIntegrationTest.java
diff --git a/spring-rest-http/src/test/java/com/baeldung/web/controller/customer/CustomerRestControllerUnitTest.java b/spring-web-modules/spring-rest-http/src/test/java/com/baeldung/web/controller/customer/CustomerRestControllerUnitTest.java
similarity index 100%
rename from spring-rest-http/src/test/java/com/baeldung/web/controller/customer/CustomerRestControllerUnitTest.java
rename to spring-web-modules/spring-rest-http/src/test/java/com/baeldung/web/controller/customer/CustomerRestControllerUnitTest.java
diff --git a/spring-rest-http/src/test/java/com/baeldung/web/controller/status/ExampleControllerIntegrationTest.java b/spring-web-modules/spring-rest-http/src/test/java/com/baeldung/web/controller/status/ExampleControllerIntegrationTest.java
similarity index 100%
rename from spring-rest-http/src/test/java/com/baeldung/web/controller/status/ExampleControllerIntegrationTest.java
rename to spring-web-modules/spring-rest-http/src/test/java/com/baeldung/web/controller/status/ExampleControllerIntegrationTest.java
diff --git a/spring-rest-query-language/.gitignore b/spring-web-modules/spring-rest-query-language/.gitignore
similarity index 100%
rename from spring-rest-query-language/.gitignore
rename to spring-web-modules/spring-rest-query-language/.gitignore
diff --git a/spring-rest-query-language/README.md b/spring-web-modules/spring-rest-query-language/README.md
similarity index 100%
rename from spring-rest-query-language/README.md
rename to spring-web-modules/spring-rest-query-language/README.md
diff --git a/spring-rest-query-language/pom.xml b/spring-web-modules/spring-rest-query-language/pom.xml
similarity index 99%
rename from spring-rest-query-language/pom.xml
rename to spring-web-modules/spring-rest-query-language/pom.xml
index 2423528743..5e7ca023dd 100644
--- a/spring-rest-query-language/pom.xml
+++ b/spring-web-modules/spring-rest-query-language/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
@@ -140,7 +140,7 @@
org.hibernate
- hibernate-entitymanager
+ hibernate-core
xml-apis
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/GenericSpecificationsBuilder.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/GenericSpecificationsBuilder.java
similarity index 97%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/GenericSpecificationsBuilder.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/GenericSpecificationsBuilder.java
index 75fb4456c4..b6623e8885 100644
--- a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/GenericSpecificationsBuilder.java
+++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/GenericSpecificationsBuilder.java
@@ -1,100 +1,100 @@
-package com.baeldung.persistence.dao;
-
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.Deque;
-import java.util.LinkedList;
-import java.util.List;
-import java.util.function.Function;
-import java.util.stream.Collectors;
-
-import org.springframework.data.jpa.domain.Specification;
-
-import com.baeldung.web.util.SearchOperation;
-import com.baeldung.web.util.SpecSearchCriteria;
-
-public class GenericSpecificationsBuilder {
-
- private final List params;
-
- public GenericSpecificationsBuilder() {
- this.params = new ArrayList<>();
- }
-
- public final GenericSpecificationsBuilder with(final String key, final String operation, final Object value, final String prefix, final String suffix) {
- return with(null, key, operation, value, prefix, suffix);
- }
-
- public final GenericSpecificationsBuilder with(final String precedenceIndicator, final String key, final String operation, final Object value, final String prefix, final String suffix) {
- SearchOperation op = SearchOperation.getSimpleOperation(operation.charAt(0));
- if (op != null) {
- if (op == SearchOperation.EQUALITY) // the operation may be complex operation
- {
- final boolean startWithAsterisk = prefix != null && prefix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
- final boolean endWithAsterisk = suffix != null && suffix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
-
- if (startWithAsterisk && endWithAsterisk) {
- op = SearchOperation.CONTAINS;
- } else if (startWithAsterisk) {
- op = SearchOperation.ENDS_WITH;
- } else if (endWithAsterisk) {
- op = SearchOperation.STARTS_WITH;
- }
- }
- params.add(new SpecSearchCriteria(precedenceIndicator, key, op, value));
- }
- return this;
- }
-
- public Specification build(Function> converter) {
-
- if (params.size() == 0) {
- return null;
- }
-
- final List> specs = params.stream()
- .map(converter)
- .collect(Collectors.toCollection(ArrayList::new));
-
- Specification result = specs.get(0);
-
- for (int idx = 1; idx < specs.size(); idx++) {
- result = params.get(idx)
- .isOrPredicate()
- ? Specification.where(result)
- .or(specs.get(idx))
- : Specification.where(result)
- .and(specs.get(idx));
- }
-
- return result;
- }
-
- public Specification build(Deque> postFixedExprStack, Function> converter) {
-
- Deque> specStack = new LinkedList<>();
-
- Collections.reverse((List>) postFixedExprStack);
-
- while (!postFixedExprStack.isEmpty()) {
- Object mayBeOperand = postFixedExprStack.pop();
-
- if (!(mayBeOperand instanceof String)) {
- specStack.push(converter.apply((SpecSearchCriteria) mayBeOperand));
- } else {
- Specification operand1 = specStack.pop();
- Specification operand2 = specStack.pop();
- if (mayBeOperand.equals(SearchOperation.AND_OPERATOR))
- specStack.push(Specification.where(operand1)
- .and(operand2));
- else if (mayBeOperand.equals(SearchOperation.OR_OPERATOR))
- specStack.push(Specification.where(operand1)
- .or(operand2));
- }
-
- }
- return specStack.pop();
-
- }
-
-}
+package com.baeldung.persistence.dao;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.Deque;
+import java.util.LinkedList;
+import java.util.List;
+import java.util.function.Function;
+import java.util.stream.Collectors;
+
+import org.springframework.data.jpa.domain.Specification;
+
+import com.baeldung.web.util.SearchOperation;
+import com.baeldung.web.util.SpecSearchCriteria;
+
+public class GenericSpecificationsBuilder {
+
+ private final List params;
+
+ public GenericSpecificationsBuilder() {
+ this.params = new ArrayList<>();
+ }
+
+ public final GenericSpecificationsBuilder with(final String key, final String operation, final Object value, final String prefix, final String suffix) {
+ return with(null, key, operation, value, prefix, suffix);
+ }
+
+ public final GenericSpecificationsBuilder with(final String precedenceIndicator, final String key, final String operation, final Object value, final String prefix, final String suffix) {
+ SearchOperation op = SearchOperation.getSimpleOperation(operation.charAt(0));
+ if (op != null) {
+ if (op == SearchOperation.EQUALITY) // the operation may be complex operation
+ {
+ final boolean startWithAsterisk = prefix != null && prefix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
+ final boolean endWithAsterisk = suffix != null && suffix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
+
+ if (startWithAsterisk && endWithAsterisk) {
+ op = SearchOperation.CONTAINS;
+ } else if (startWithAsterisk) {
+ op = SearchOperation.ENDS_WITH;
+ } else if (endWithAsterisk) {
+ op = SearchOperation.STARTS_WITH;
+ }
+ }
+ params.add(new SpecSearchCriteria(precedenceIndicator, key, op, value));
+ }
+ return this;
+ }
+
+ public Specification build(Function> converter) {
+
+ if (params.size() == 0) {
+ return null;
+ }
+
+ final List> specs = params.stream()
+ .map(converter)
+ .collect(Collectors.toCollection(ArrayList::new));
+
+ Specification result = specs.get(0);
+
+ for (int idx = 1; idx < specs.size(); idx++) {
+ result = params.get(idx)
+ .isOrPredicate()
+ ? Specification.where(result)
+ .or(specs.get(idx))
+ : Specification.where(result)
+ .and(specs.get(idx));
+ }
+
+ return result;
+ }
+
+ public Specification build(Deque> postFixedExprStack, Function> converter) {
+
+ Deque> specStack = new LinkedList<>();
+
+ Collections.reverse((List>) postFixedExprStack);
+
+ while (!postFixedExprStack.isEmpty()) {
+ Object mayBeOperand = postFixedExprStack.pop();
+
+ if (!(mayBeOperand instanceof String)) {
+ specStack.push(converter.apply((SpecSearchCriteria) mayBeOperand));
+ } else {
+ Specification operand1 = specStack.pop();
+ Specification operand2 = specStack.pop();
+ if (mayBeOperand.equals(SearchOperation.AND_OPERATOR))
+ specStack.push(Specification.where(operand1)
+ .and(operand2));
+ else if (mayBeOperand.equals(SearchOperation.OR_OPERATOR))
+ specStack.push(Specification.where(operand1)
+ .or(operand2));
+ }
+
+ }
+ return specStack.pop();
+
+ }
+
+}
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/IUserDAO.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/IUserDAO.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/IUserDAO.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/IUserDAO.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserPredicate.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserPredicate.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserPredicate.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserPredicate.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserPredicatesBuilder.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserPredicatesBuilder.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserPredicatesBuilder.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserPredicatesBuilder.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserRepository.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserRepository.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserRepository.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/MyUserRepository.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserDAO.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserDAO.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserDAO.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserDAO.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserRepository.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserRepository.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserRepository.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserRepository.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSearchQueryCriteriaConsumer.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSearchQueryCriteriaConsumer.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSearchQueryCriteriaConsumer.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSearchQueryCriteriaConsumer.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecification.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecification.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecification.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecification.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecificationsBuilder.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecificationsBuilder.java
similarity index 97%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecificationsBuilder.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecificationsBuilder.java
index 72d7274226..eac1562294 100644
--- a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecificationsBuilder.java
+++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/UserSpecificationsBuilder.java
@@ -1,70 +1,70 @@
-package com.baeldung.persistence.dao;
-
-import java.util.ArrayList;
-import java.util.List;
-
-import org.springframework.data.jpa.domain.Specification;
-
-import com.baeldung.persistence.model.User;
-import com.baeldung.web.util.SearchOperation;
-import com.baeldung.web.util.SpecSearchCriteria;
-
-public final class UserSpecificationsBuilder {
-
- private final List params;
-
- public UserSpecificationsBuilder() {
- params = new ArrayList<>();
- }
-
- // API
-
- public final UserSpecificationsBuilder with(final String key, final String operation, final Object value, final String prefix, final String suffix) {
- return with(null, key, operation, value, prefix, suffix);
- }
-
- public final UserSpecificationsBuilder with(final String orPredicate, final String key, final String operation, final Object value, final String prefix, final String suffix) {
- SearchOperation op = SearchOperation.getSimpleOperation(operation.charAt(0));
- if (op != null) {
- if (op == SearchOperation.EQUALITY) { // the operation may be complex operation
- final boolean startWithAsterisk = prefix != null && prefix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
- final boolean endWithAsterisk = suffix != null && suffix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
-
- if (startWithAsterisk && endWithAsterisk) {
- op = SearchOperation.CONTAINS;
- } else if (startWithAsterisk) {
- op = SearchOperation.ENDS_WITH;
- } else if (endWithAsterisk) {
- op = SearchOperation.STARTS_WITH;
- }
- }
- params.add(new SpecSearchCriteria(orPredicate, key, op, value));
- }
- return this;
- }
-
- public Specification build() {
- if (params.size() == 0)
- return null;
-
- Specification result = new UserSpecification(params.get(0));
-
- for (int i = 1; i < params.size(); i++) {
- result = params.get(i).isOrPredicate()
- ? Specification.where(result).or(new UserSpecification(params.get(i)))
- : Specification.where(result).and(new UserSpecification(params.get(i)));
- }
-
- return result;
- }
-
- public final UserSpecificationsBuilder with(UserSpecification spec) {
- params.add(spec.getCriteria());
- return this;
- }
-
- public final UserSpecificationsBuilder with(SpecSearchCriteria criteria) {
- params.add(criteria);
- return this;
- }
-}
+package com.baeldung.persistence.dao;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.springframework.data.jpa.domain.Specification;
+
+import com.baeldung.persistence.model.User;
+import com.baeldung.web.util.SearchOperation;
+import com.baeldung.web.util.SpecSearchCriteria;
+
+public final class UserSpecificationsBuilder {
+
+ private final List params;
+
+ public UserSpecificationsBuilder() {
+ params = new ArrayList<>();
+ }
+
+ // API
+
+ public final UserSpecificationsBuilder with(final String key, final String operation, final Object value, final String prefix, final String suffix) {
+ return with(null, key, operation, value, prefix, suffix);
+ }
+
+ public final UserSpecificationsBuilder with(final String orPredicate, final String key, final String operation, final Object value, final String prefix, final String suffix) {
+ SearchOperation op = SearchOperation.getSimpleOperation(operation.charAt(0));
+ if (op != null) {
+ if (op == SearchOperation.EQUALITY) { // the operation may be complex operation
+ final boolean startWithAsterisk = prefix != null && prefix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
+ final boolean endWithAsterisk = suffix != null && suffix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
+
+ if (startWithAsterisk && endWithAsterisk) {
+ op = SearchOperation.CONTAINS;
+ } else if (startWithAsterisk) {
+ op = SearchOperation.ENDS_WITH;
+ } else if (endWithAsterisk) {
+ op = SearchOperation.STARTS_WITH;
+ }
+ }
+ params.add(new SpecSearchCriteria(orPredicate, key, op, value));
+ }
+ return this;
+ }
+
+ public Specification build() {
+ if (params.size() == 0)
+ return null;
+
+ Specification result = new UserSpecification(params.get(0));
+
+ for (int i = 1; i < params.size(); i++) {
+ result = params.get(i).isOrPredicate()
+ ? Specification.where(result).or(new UserSpecification(params.get(i)))
+ : Specification.where(result).and(new UserSpecification(params.get(i)));
+ }
+
+ return result;
+ }
+
+ public final UserSpecificationsBuilder with(UserSpecification spec) {
+ params.add(spec.getCriteria());
+ return this;
+ }
+
+ public final UserSpecificationsBuilder with(SpecSearchCriteria criteria) {
+ params.add(criteria);
+ return this;
+ }
+}
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/CustomRsqlVisitor.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/CustomRsqlVisitor.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/CustomRsqlVisitor.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/CustomRsqlVisitor.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecBuilder.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecBuilder.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecBuilder.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecBuilder.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecification.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecification.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecification.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/GenericRsqlSpecification.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/RsqlSearchOperation.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/RsqlSearchOperation.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/RsqlSearchOperation.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/dao/rsql/RsqlSearchOperation.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/MyUser.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/MyUser.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/model/MyUser.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/MyUser.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User_.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User_.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User_.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/persistence/model/User_.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/spring/Application.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/spring/Application.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/spring/Application.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/spring/Application.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/spring/PersistenceConfig.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/spring/PersistenceConfig.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/spring/PersistenceConfig.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/spring/PersistenceConfig.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/spring/WebConfig.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/spring/WebConfig.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/spring/WebConfig.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/spring/WebConfig.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/web/controller/HomeController.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/controller/HomeController.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/web/controller/HomeController.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/controller/HomeController.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/web/controller/UserController.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/controller/UserController.java
similarity index 97%
rename from spring-rest-query-language/src/main/java/com/baeldung/web/controller/UserController.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/controller/UserController.java
index 54e8618b27..73a97f84ae 100644
--- a/spring-rest-query-language/src/main/java/com/baeldung/web/controller/UserController.java
+++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/controller/UserController.java
@@ -1,171 +1,171 @@
-package com.baeldung.web.controller;
-
-import java.util.ArrayList;
-import java.util.List;
-import java.util.regex.Matcher;
-import java.util.regex.Pattern;
-
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.data.jpa.domain.Specification;
-import org.springframework.data.querydsl.binding.QuerydslPredicate;
-import org.springframework.http.HttpStatus;
-import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.RequestBody;
-import org.springframework.web.bind.annotation.RequestMapping;
-import org.springframework.web.bind.annotation.RequestMethod;
-import org.springframework.web.bind.annotation.RequestParam;
-import org.springframework.web.bind.annotation.ResponseBody;
-import org.springframework.web.bind.annotation.ResponseStatus;
-
-import com.baeldung.persistence.dao.GenericSpecificationsBuilder;
-import com.baeldung.persistence.dao.IUserDAO;
-import com.baeldung.persistence.dao.MyUserPredicatesBuilder;
-import com.baeldung.persistence.dao.MyUserRepository;
-import com.baeldung.persistence.dao.UserRepository;
-import com.baeldung.persistence.dao.UserSpecification;
-import com.baeldung.persistence.dao.UserSpecificationsBuilder;
-import com.baeldung.persistence.dao.rsql.CustomRsqlVisitor;
-import com.baeldung.persistence.model.MyUser;
-import com.baeldung.persistence.model.User;
-import com.baeldung.web.util.CriteriaParser;
-import com.baeldung.web.util.SearchCriteria;
-import com.baeldung.web.util.SearchOperation;
-import com.google.common.base.Joiner;
-import com.google.common.base.Preconditions;
-import com.querydsl.core.types.Predicate;
-import com.querydsl.core.types.dsl.BooleanExpression;
-
-import cz.jirutka.rsql.parser.RSQLParser;
-import cz.jirutka.rsql.parser.ast.Node;
-
-//@EnableSpringDataWebSupport
-@Controller
-@RequestMapping(value = "/auth/")
-public class UserController {
-
- @Autowired
- private IUserDAO service;
-
- @Autowired
- private UserRepository dao;
-
- @Autowired
- private MyUserRepository myUserRepository;
-
- public UserController() {
- super();
- }
-
- // API - READ
-
- @RequestMapping(method = RequestMethod.GET, value = "/users")
- @ResponseBody
- public List search(@RequestParam(value = "search", required = false) String search) {
- List params = new ArrayList();
- if (search != null) {
- Pattern pattern = Pattern.compile("(\\w+?)(:|<|>)(\\w+?),");
- Matcher matcher = pattern.matcher(search + ",");
- while (matcher.find()) {
- params.add(new SearchCriteria(matcher.group(1), matcher.group(2), matcher.group(3)));
- }
- }
- return service.searchUser(params);
- }
-
- @RequestMapping(method = RequestMethod.GET, value = "/users/spec")
- @ResponseBody
- public List findAllBySpecification(@RequestParam(value = "search") String search) {
- UserSpecificationsBuilder builder = new UserSpecificationsBuilder();
- String operationSetExper = Joiner.on("|")
- .join(SearchOperation.SIMPLE_OPERATION_SET);
- Pattern pattern = Pattern.compile("(\\w+?)(" + operationSetExper + ")(\\p{Punct}?)(\\w+?)(\\p{Punct}?),");
- Matcher matcher = pattern.matcher(search + ",");
- while (matcher.find()) {
- builder.with(matcher.group(1), matcher.group(2), matcher.group(4), matcher.group(3), matcher.group(5));
- }
-
- Specification spec = builder.build();
- return dao.findAll(spec);
- }
-
- @GetMapping(value = "/users/espec")
- @ResponseBody
- public List findAllByOrPredicate(@RequestParam(value = "search") String search) {
- Specification spec = resolveSpecification(search);
- return dao.findAll(spec);
- }
-
- @GetMapping(value = "/users/spec/adv")
- @ResponseBody
- public List findAllByAdvPredicate(@RequestParam(value = "search") String search) {
- Specification spec = resolveSpecificationFromInfixExpr(search);
- return dao.findAll(spec);
- }
-
- protected Specification resolveSpecificationFromInfixExpr(String searchParameters) {
- CriteriaParser parser = new CriteriaParser();
- GenericSpecificationsBuilder specBuilder = new GenericSpecificationsBuilder<>();
- return specBuilder.build(parser.parse(searchParameters), UserSpecification::new);
- }
-
- protected Specification resolveSpecification(String searchParameters) {
-
- UserSpecificationsBuilder builder = new UserSpecificationsBuilder();
- String operationSetExper = Joiner.on("|")
- .join(SearchOperation.SIMPLE_OPERATION_SET);
- Pattern pattern = Pattern.compile("(\\p{Punct}?)(\\w+?)(" + operationSetExper + ")(\\p{Punct}?)(\\w+?)(\\p{Punct}?),");
- Matcher matcher = pattern.matcher(searchParameters + ",");
- while (matcher.find()) {
- builder.with(matcher.group(1), matcher.group(2), matcher.group(3), matcher.group(5), matcher.group(4), matcher.group(6));
- }
- return builder.build();
- }
-
- @RequestMapping(method = RequestMethod.GET, value = "/myusers")
- @ResponseBody
- public Iterable findAllByQuerydsl(@RequestParam(value = "search") String search) {
- MyUserPredicatesBuilder builder = new MyUserPredicatesBuilder();
- if (search != null) {
- Pattern pattern = Pattern.compile("(\\w+?)(:|<|>)(\\w+?),");
- Matcher matcher = pattern.matcher(search + ",");
- while (matcher.find()) {
- builder.with(matcher.group(1), matcher.group(2), matcher.group(3));
- }
- }
- BooleanExpression exp = builder.build();
- return myUserRepository.findAll(exp);
- }
-
- @RequestMapping(method = RequestMethod.GET, value = "/users/rsql")
- @ResponseBody
- public List findAllByRsql(@RequestParam(value = "search") String search) {
- Node rootNode = new RSQLParser().parse(search);
- Specification spec = rootNode.accept(new CustomRsqlVisitor());
- return dao.findAll(spec);
- }
-
- @RequestMapping(method = RequestMethod.GET, value = "/api/myusers")
- @ResponseBody
- public Iterable findAllByWebQuerydsl(@QuerydslPredicate(root = MyUser.class) Predicate predicate) {
- return myUserRepository.findAll(predicate);
- }
-
- // API - WRITE
-
- @RequestMapping(method = RequestMethod.POST, value = "/users")
- @ResponseStatus(HttpStatus.CREATED)
- public void create(@RequestBody User resource) {
- Preconditions.checkNotNull(resource);
- dao.save(resource);
- }
-
- @RequestMapping(method = RequestMethod.POST, value = "/myusers")
- @ResponseStatus(HttpStatus.CREATED)
- public void addMyUser(@RequestBody MyUser resource) {
- Preconditions.checkNotNull(resource);
- myUserRepository.save(resource);
-
- }
-
-}
+package com.baeldung.web.controller;
+
+import java.util.ArrayList;
+import java.util.List;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.data.jpa.domain.Specification;
+import org.springframework.data.querydsl.binding.QuerydslPredicate;
+import org.springframework.http.HttpStatus;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RequestMethod;
+import org.springframework.web.bind.annotation.RequestParam;
+import org.springframework.web.bind.annotation.ResponseBody;
+import org.springframework.web.bind.annotation.ResponseStatus;
+
+import com.baeldung.persistence.dao.GenericSpecificationsBuilder;
+import com.baeldung.persistence.dao.IUserDAO;
+import com.baeldung.persistence.dao.MyUserPredicatesBuilder;
+import com.baeldung.persistence.dao.MyUserRepository;
+import com.baeldung.persistence.dao.UserRepository;
+import com.baeldung.persistence.dao.UserSpecification;
+import com.baeldung.persistence.dao.UserSpecificationsBuilder;
+import com.baeldung.persistence.dao.rsql.CustomRsqlVisitor;
+import com.baeldung.persistence.model.MyUser;
+import com.baeldung.persistence.model.User;
+import com.baeldung.web.util.CriteriaParser;
+import com.baeldung.web.util.SearchCriteria;
+import com.baeldung.web.util.SearchOperation;
+import com.google.common.base.Joiner;
+import com.google.common.base.Preconditions;
+import com.querydsl.core.types.Predicate;
+import com.querydsl.core.types.dsl.BooleanExpression;
+
+import cz.jirutka.rsql.parser.RSQLParser;
+import cz.jirutka.rsql.parser.ast.Node;
+
+//@EnableSpringDataWebSupport
+@Controller
+@RequestMapping(value = "/auth/")
+public class UserController {
+
+ @Autowired
+ private IUserDAO service;
+
+ @Autowired
+ private UserRepository dao;
+
+ @Autowired
+ private MyUserRepository myUserRepository;
+
+ public UserController() {
+ super();
+ }
+
+ // API - READ
+
+ @RequestMapping(method = RequestMethod.GET, value = "/users")
+ @ResponseBody
+ public List search(@RequestParam(value = "search", required = false) String search) {
+ List params = new ArrayList();
+ if (search != null) {
+ Pattern pattern = Pattern.compile("(\\w+?)(:|<|>)(\\w+?),");
+ Matcher matcher = pattern.matcher(search + ",");
+ while (matcher.find()) {
+ params.add(new SearchCriteria(matcher.group(1), matcher.group(2), matcher.group(3)));
+ }
+ }
+ return service.searchUser(params);
+ }
+
+ @RequestMapping(method = RequestMethod.GET, value = "/users/spec")
+ @ResponseBody
+ public List findAllBySpecification(@RequestParam(value = "search") String search) {
+ UserSpecificationsBuilder builder = new UserSpecificationsBuilder();
+ String operationSetExper = Joiner.on("|")
+ .join(SearchOperation.SIMPLE_OPERATION_SET);
+ Pattern pattern = Pattern.compile("(\\w+?)(" + operationSetExper + ")(\\p{Punct}?)(\\w+?)(\\p{Punct}?),");
+ Matcher matcher = pattern.matcher(search + ",");
+ while (matcher.find()) {
+ builder.with(matcher.group(1), matcher.group(2), matcher.group(4), matcher.group(3), matcher.group(5));
+ }
+
+ Specification spec = builder.build();
+ return dao.findAll(spec);
+ }
+
+ @GetMapping(value = "/users/espec")
+ @ResponseBody
+ public List findAllByOrPredicate(@RequestParam(value = "search") String search) {
+ Specification spec = resolveSpecification(search);
+ return dao.findAll(spec);
+ }
+
+ @GetMapping(value = "/users/spec/adv")
+ @ResponseBody
+ public List findAllByAdvPredicate(@RequestParam(value = "search") String search) {
+ Specification spec = resolveSpecificationFromInfixExpr(search);
+ return dao.findAll(spec);
+ }
+
+ protected Specification resolveSpecificationFromInfixExpr(String searchParameters) {
+ CriteriaParser parser = new CriteriaParser();
+ GenericSpecificationsBuilder specBuilder = new GenericSpecificationsBuilder<>();
+ return specBuilder.build(parser.parse(searchParameters), UserSpecification::new);
+ }
+
+ protected Specification resolveSpecification(String searchParameters) {
+
+ UserSpecificationsBuilder builder = new UserSpecificationsBuilder();
+ String operationSetExper = Joiner.on("|")
+ .join(SearchOperation.SIMPLE_OPERATION_SET);
+ Pattern pattern = Pattern.compile("(\\p{Punct}?)(\\w+?)(" + operationSetExper + ")(\\p{Punct}?)(\\w+?)(\\p{Punct}?),");
+ Matcher matcher = pattern.matcher(searchParameters + ",");
+ while (matcher.find()) {
+ builder.with(matcher.group(1), matcher.group(2), matcher.group(3), matcher.group(5), matcher.group(4), matcher.group(6));
+ }
+ return builder.build();
+ }
+
+ @RequestMapping(method = RequestMethod.GET, value = "/myusers")
+ @ResponseBody
+ public Iterable findAllByQuerydsl(@RequestParam(value = "search") String search) {
+ MyUserPredicatesBuilder builder = new MyUserPredicatesBuilder();
+ if (search != null) {
+ Pattern pattern = Pattern.compile("(\\w+?)(:|<|>)(\\w+?),");
+ Matcher matcher = pattern.matcher(search + ",");
+ while (matcher.find()) {
+ builder.with(matcher.group(1), matcher.group(2), matcher.group(3));
+ }
+ }
+ BooleanExpression exp = builder.build();
+ return myUserRepository.findAll(exp);
+ }
+
+ @RequestMapping(method = RequestMethod.GET, value = "/users/rsql")
+ @ResponseBody
+ public List findAllByRsql(@RequestParam(value = "search") String search) {
+ Node rootNode = new RSQLParser().parse(search);
+ Specification spec = rootNode.accept(new CustomRsqlVisitor());
+ return dao.findAll(spec);
+ }
+
+ @RequestMapping(method = RequestMethod.GET, value = "/api/myusers")
+ @ResponseBody
+ public Iterable findAllByWebQuerydsl(@QuerydslPredicate(root = MyUser.class) Predicate predicate) {
+ return myUserRepository.findAll(predicate);
+ }
+
+ // API - WRITE
+
+ @RequestMapping(method = RequestMethod.POST, value = "/users")
+ @ResponseStatus(HttpStatus.CREATED)
+ public void create(@RequestBody User resource) {
+ Preconditions.checkNotNull(resource);
+ dao.save(resource);
+ }
+
+ @RequestMapping(method = RequestMethod.POST, value = "/myusers")
+ @ResponseStatus(HttpStatus.CREATED)
+ public void addMyUser(@RequestBody MyUser resource) {
+ Preconditions.checkNotNull(resource);
+ myUserRepository.save(resource);
+
+ }
+
+}
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/error/RestResponseEntityExceptionHandler.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/web/util/CriteriaParser.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/util/CriteriaParser.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/web/util/CriteriaParser.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/util/CriteriaParser.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/web/util/SearchCriteria.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/util/SearchCriteria.java
similarity index 100%
rename from spring-rest-query-language/src/main/java/com/baeldung/web/util/SearchCriteria.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/util/SearchCriteria.java
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/web/util/SearchOperation.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/util/SearchOperation.java
similarity index 96%
rename from spring-rest-query-language/src/main/java/com/baeldung/web/util/SearchOperation.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/util/SearchOperation.java
index acc9e0c0a8..86ad9ad749 100644
--- a/spring-rest-query-language/src/main/java/com/baeldung/web/util/SearchOperation.java
+++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/util/SearchOperation.java
@@ -1,36 +1,36 @@
-package com.baeldung.web.util;
-
-public enum SearchOperation {
- EQUALITY, NEGATION, GREATER_THAN, LESS_THAN, LIKE, STARTS_WITH, ENDS_WITH, CONTAINS;
-
- public static final String[] SIMPLE_OPERATION_SET = { ":", "!", ">", "<", "~" };
-
- public static final String OR_PREDICATE_FLAG = "'";
-
- public static final String ZERO_OR_MORE_REGEX = "*";
-
- public static final String OR_OPERATOR = "OR";
-
- public static final String AND_OPERATOR = "AND";
-
- public static final String LEFT_PARANTHESIS = "(";
-
- public static final String RIGHT_PARANTHESIS = ")";
-
- public static SearchOperation getSimpleOperation(final char input) {
- switch (input) {
- case ':':
- return EQUALITY;
- case '!':
- return NEGATION;
- case '>':
- return GREATER_THAN;
- case '<':
- return LESS_THAN;
- case '~':
- return LIKE;
- default:
- return null;
- }
- }
-}
+package com.baeldung.web.util;
+
+public enum SearchOperation {
+ EQUALITY, NEGATION, GREATER_THAN, LESS_THAN, LIKE, STARTS_WITH, ENDS_WITH, CONTAINS;
+
+ public static final String[] SIMPLE_OPERATION_SET = { ":", "!", ">", "<", "~" };
+
+ public static final String OR_PREDICATE_FLAG = "'";
+
+ public static final String ZERO_OR_MORE_REGEX = "*";
+
+ public static final String OR_OPERATOR = "OR";
+
+ public static final String AND_OPERATOR = "AND";
+
+ public static final String LEFT_PARANTHESIS = "(";
+
+ public static final String RIGHT_PARANTHESIS = ")";
+
+ public static SearchOperation getSimpleOperation(final char input) {
+ switch (input) {
+ case ':':
+ return EQUALITY;
+ case '!':
+ return NEGATION;
+ case '>':
+ return GREATER_THAN;
+ case '<':
+ return LESS_THAN;
+ case '~':
+ return LIKE;
+ default:
+ return null;
+ }
+ }
+}
diff --git a/spring-rest-query-language/src/main/java/com/baeldung/web/util/SpecSearchCriteria.java b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/util/SpecSearchCriteria.java
similarity index 96%
rename from spring-rest-query-language/src/main/java/com/baeldung/web/util/SpecSearchCriteria.java
rename to spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/util/SpecSearchCriteria.java
index 73b690673b..22b55c78fb 100644
--- a/spring-rest-query-language/src/main/java/com/baeldung/web/util/SpecSearchCriteria.java
+++ b/spring-web-modules/spring-rest-query-language/src/main/java/com/baeldung/web/util/SpecSearchCriteria.java
@@ -1,82 +1,82 @@
-package com.baeldung.web.util;
-
-public class SpecSearchCriteria {
-
- private String key;
- private SearchOperation operation;
- private Object value;
- private boolean orPredicate;
-
- public SpecSearchCriteria() {
-
- }
-
- public SpecSearchCriteria(final String key, final SearchOperation operation, final Object value) {
- super();
- this.key = key;
- this.operation = operation;
- this.value = value;
- }
-
- public SpecSearchCriteria(final String orPredicate, final String key, final SearchOperation operation, final Object value) {
- super();
- this.orPredicate = orPredicate != null && orPredicate.equals(SearchOperation.OR_PREDICATE_FLAG);
- this.key = key;
- this.operation = operation;
- this.value = value;
- }
-
- public SpecSearchCriteria(String key, String operation, String prefix, String value, String suffix) {
- SearchOperation op = SearchOperation.getSimpleOperation(operation.charAt(0));
- if (op != null) {
- if (op == SearchOperation.EQUALITY) { // the operation may be complex operation
- final boolean startWithAsterisk = prefix != null && prefix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
- final boolean endWithAsterisk = suffix != null && suffix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
-
- if (startWithAsterisk && endWithAsterisk) {
- op = SearchOperation.CONTAINS;
- } else if (startWithAsterisk) {
- op = SearchOperation.ENDS_WITH;
- } else if (endWithAsterisk) {
- op = SearchOperation.STARTS_WITH;
- }
- }
- }
- this.key = key;
- this.operation = op;
- this.value = value;
- }
-
- public String getKey() {
- return key;
- }
-
- public void setKey(final String key) {
- this.key = key;
- }
-
- public SearchOperation getOperation() {
- return operation;
- }
-
- public void setOperation(final SearchOperation operation) {
- this.operation = operation;
- }
-
- public Object getValue() {
- return value;
- }
-
- public void setValue(final Object value) {
- this.value = value;
- }
-
- public boolean isOrPredicate() {
- return orPredicate;
- }
-
- public void setOrPredicate(boolean orPredicate) {
- this.orPredicate = orPredicate;
- }
-
-}
+package com.baeldung.web.util;
+
+public class SpecSearchCriteria {
+
+ private String key;
+ private SearchOperation operation;
+ private Object value;
+ private boolean orPredicate;
+
+ public SpecSearchCriteria() {
+
+ }
+
+ public SpecSearchCriteria(final String key, final SearchOperation operation, final Object value) {
+ super();
+ this.key = key;
+ this.operation = operation;
+ this.value = value;
+ }
+
+ public SpecSearchCriteria(final String orPredicate, final String key, final SearchOperation operation, final Object value) {
+ super();
+ this.orPredicate = orPredicate != null && orPredicate.equals(SearchOperation.OR_PREDICATE_FLAG);
+ this.key = key;
+ this.operation = operation;
+ this.value = value;
+ }
+
+ public SpecSearchCriteria(String key, String operation, String prefix, String value, String suffix) {
+ SearchOperation op = SearchOperation.getSimpleOperation(operation.charAt(0));
+ if (op != null) {
+ if (op == SearchOperation.EQUALITY) { // the operation may be complex operation
+ final boolean startWithAsterisk = prefix != null && prefix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
+ final boolean endWithAsterisk = suffix != null && suffix.contains(SearchOperation.ZERO_OR_MORE_REGEX);
+
+ if (startWithAsterisk && endWithAsterisk) {
+ op = SearchOperation.CONTAINS;
+ } else if (startWithAsterisk) {
+ op = SearchOperation.ENDS_WITH;
+ } else if (endWithAsterisk) {
+ op = SearchOperation.STARTS_WITH;
+ }
+ }
+ }
+ this.key = key;
+ this.operation = op;
+ this.value = value;
+ }
+
+ public String getKey() {
+ return key;
+ }
+
+ public void setKey(final String key) {
+ this.key = key;
+ }
+
+ public SearchOperation getOperation() {
+ return operation;
+ }
+
+ public void setOperation(final SearchOperation operation) {
+ this.operation = operation;
+ }
+
+ public Object getValue() {
+ return value;
+ }
+
+ public void setValue(final Object value) {
+ this.value = value;
+ }
+
+ public boolean isOrPredicate() {
+ return orPredicate;
+ }
+
+ public void setOrPredicate(boolean orPredicate) {
+ this.orPredicate = orPredicate;
+ }
+
+}
diff --git a/spring-rest-query-language/src/main/resources/application.properties b/spring-web-modules/spring-rest-query-language/src/main/resources/application.properties
similarity index 100%
rename from spring-rest-query-language/src/main/resources/application.properties
rename to spring-web-modules/spring-rest-query-language/src/main/resources/application.properties
diff --git a/spring-rest-query-language/src/main/resources/data.sql b/spring-web-modules/spring-rest-query-language/src/main/resources/data.sql
similarity index 100%
rename from spring-rest-query-language/src/main/resources/data.sql
rename to spring-web-modules/spring-rest-query-language/src/main/resources/data.sql
diff --git a/spring-rest-query-language/src/main/resources/logback.xml b/spring-web-modules/spring-rest-query-language/src/main/resources/logback.xml
similarity index 100%
rename from spring-rest-query-language/src/main/resources/logback.xml
rename to spring-web-modules/spring-rest-query-language/src/main/resources/logback.xml
diff --git a/spring-rest-query-language/src/main/resources/persistence-h2.properties b/spring-web-modules/spring-rest-query-language/src/main/resources/persistence-h2.properties
similarity index 100%
rename from spring-rest-query-language/src/main/resources/persistence-h2.properties
rename to spring-web-modules/spring-rest-query-language/src/main/resources/persistence-h2.properties
diff --git a/spring-rest-query-language/src/main/resources/persistence-mysql.properties b/spring-web-modules/spring-rest-query-language/src/main/resources/persistence-mysql.properties
similarity index 100%
rename from spring-rest-query-language/src/main/resources/persistence-mysql.properties
rename to spring-web-modules/spring-rest-query-language/src/main/resources/persistence-mysql.properties
diff --git a/spring-rest-query-language/src/main/resources/springDataPersistenceConfig.xml b/spring-web-modules/spring-rest-query-language/src/main/resources/springDataPersistenceConfig.xml
similarity index 100%
rename from spring-rest-query-language/src/main/resources/springDataPersistenceConfig.xml
rename to spring-web-modules/spring-rest-query-language/src/main/resources/springDataPersistenceConfig.xml
diff --git a/spring-rest-query-language/src/main/webapp/WEB-INF/api-servlet.xml b/spring-web-modules/spring-rest-query-language/src/main/webapp/WEB-INF/api-servlet.xml
similarity index 100%
rename from spring-rest-query-language/src/main/webapp/WEB-INF/api-servlet.xml
rename to spring-web-modules/spring-rest-query-language/src/main/webapp/WEB-INF/api-servlet.xml
diff --git a/spring-rest-query-language/src/main/webapp/WEB-INF/view/homepage.jsp b/spring-web-modules/spring-rest-query-language/src/main/webapp/WEB-INF/view/homepage.jsp
similarity index 100%
rename from spring-rest-query-language/src/main/webapp/WEB-INF/view/homepage.jsp
rename to spring-web-modules/spring-rest-query-language/src/main/webapp/WEB-INF/view/homepage.jsp
diff --git a/spring-rest-query-language/src/main/webapp/WEB-INF/web.xml b/spring-web-modules/spring-rest-query-language/src/main/webapp/WEB-INF/web.xml
similarity index 100%
rename from spring-rest-query-language/src/main/webapp/WEB-INF/web.xml
rename to spring-web-modules/spring-rest-query-language/src/main/webapp/WEB-INF/web.xml
diff --git a/spring-rest-query-language/src/test/java/com/baeldung/SpringContextTest.java b/spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-rest-query-language/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPACriteriaQueryIntegrationTest.java b/spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPACriteriaQueryIntegrationTest.java
similarity index 100%
rename from spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPACriteriaQueryIntegrationTest.java
rename to spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPACriteriaQueryIntegrationTest.java
diff --git a/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPAQuerydslIntegrationTest.java b/spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPAQuerydslIntegrationTest.java
similarity index 100%
rename from spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPAQuerydslIntegrationTest.java
rename to spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPAQuerydslIntegrationTest.java
diff --git a/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationIntegrationTest.java b/spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationIntegrationTest.java
similarity index 97%
rename from spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationIntegrationTest.java
rename to spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationIntegrationTest.java
index 707426769e..f6fff10506 100644
--- a/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationIntegrationTest.java
+++ b/spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationIntegrationTest.java
@@ -1,180 +1,180 @@
-package com.baeldung.persistence.query;
-
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.data.jpa.domain.Specification;
-import org.springframework.test.annotation.Rollback;
-import org.springframework.test.context.ContextConfiguration;
-import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
-import org.springframework.transaction.annotation.Transactional;
-
-import com.baeldung.persistence.dao.GenericSpecificationsBuilder;
-import com.baeldung.persistence.dao.UserRepository;
-import com.baeldung.persistence.dao.UserSpecification;
-import com.baeldung.persistence.dao.UserSpecificationsBuilder;
-import com.baeldung.persistence.model.User;
-import com.baeldung.spring.PersistenceConfig;
-import com.baeldung.web.util.CriteriaParser;
-import com.baeldung.web.util.SearchOperation;
-import com.baeldung.web.util.SpecSearchCriteria;
-
-import java.util.List;
-import java.util.function.Function;
-
-import static org.hamcrest.MatcherAssert.assertThat;
-import static org.hamcrest.collection.IsCollectionWithSize.hasSize;
-import static org.hamcrest.collection.IsIn.isIn;
-import static org.hamcrest.core.IsNot.not;
-
-@RunWith(SpringJUnit4ClassRunner.class)
-@ContextConfiguration(classes = { PersistenceConfig.class })
-@Transactional
-@Rollback
-public class JPASpecificationIntegrationTest {
-
- @Autowired
- private UserRepository repository;
-
- private User userJohn;
-
- private User userTom;
-
- private User userPercy;
-
- @Before
- public void init() {
- userJohn = new User();
- userJohn.setFirstName("john");
- userJohn.setLastName("doe");
- userJohn.setEmail("john@doe.com");
- userJohn.setAge(22);
- repository.save(userJohn);
-
- userTom = new User();
- userTom.setFirstName("tom");
- userTom.setLastName("doe");
- userTom.setEmail("tom@doe.com");
- userTom.setAge(26);
- repository.save(userTom);
-
- userPercy = new User();
- userPercy.setFirstName("percy");
- userPercy.setLastName("blackney");
- userPercy.setEmail("percy@blackney.com");
- userPercy.setAge(30);
- repository.save(userPercy);
- }
-
- @Test
- public void givenFirstAndLastName_whenGettingListOfUsers_thenCorrect() {
- final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("firstName", SearchOperation.EQUALITY, "john"));
- final UserSpecification spec1 = new UserSpecification(new SpecSearchCriteria("lastName", SearchOperation.EQUALITY, "doe"));
- final List results = repository.findAll(Specification
- .where(spec)
- .and(spec1));
-
- assertThat(userJohn, isIn(results));
- assertThat(userTom, not(isIn(results)));
- }
-
- @Test
- public void givenFirstOrLastName_whenGettingListOfUsers_thenCorrect() {
- UserSpecificationsBuilder builder = new UserSpecificationsBuilder();
-
- SpecSearchCriteria spec = new SpecSearchCriteria("firstName", SearchOperation.EQUALITY, "john");
- SpecSearchCriteria spec1 = new SpecSearchCriteria("'","lastName", SearchOperation.EQUALITY, "doe");
-
- List results = repository.findAll(builder
- .with(spec)
- .with(spec1)
- .build());
-
- assertThat(results, hasSize(2));
- assertThat(userJohn, isIn(results));
- assertThat(userTom, isIn(results));
- }
-
- @Test
- public void givenFirstOrLastNameAndAgeGenericBuilder_whenGettingListOfUsers_thenCorrect() {
- GenericSpecificationsBuilder builder = new GenericSpecificationsBuilder<>();
- Function> converter = UserSpecification::new;
-
- CriteriaParser parser=new CriteriaParser();
- List results = repository.findAll(builder.build(parser.parse("( lastName:doe OR firstName:john ) AND age:22"), converter));
-
- assertThat(results, hasSize(1));
- assertThat(userJohn, isIn(results));
- assertThat(userTom, not(isIn(results)));
- }
-
- @Test
- public void givenFirstOrLastNameGenericBuilder_whenGettingListOfUsers_thenCorrect() {
- GenericSpecificationsBuilder builder = new GenericSpecificationsBuilder<>();
- Function> converter = UserSpecification::new;
-
- builder.with("firstName", ":", "john", null, null);
- builder.with("'", "lastName", ":", "doe", null, null);
-
- List results = repository.findAll(builder.build(converter));
-
- assertThat(results, hasSize(2));
- assertThat(userJohn, isIn(results));
- assertThat(userTom, isIn(results));
- }
-
- @Test
- public void givenFirstNameInverse_whenGettingListOfUsers_thenCorrect() {
- final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("firstName", SearchOperation.NEGATION, "john"));
- final List results = repository.findAll(Specification.where(spec));
-
- assertThat(userTom, isIn(results));
- assertThat(userJohn, not(isIn(results)));
- }
-
- @Test
- public void givenMinAge_whenGettingListOfUsers_thenCorrect() {
- final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("age", SearchOperation.GREATER_THAN, "25"));
- final List results = repository.findAll(Specification.where(spec));
- assertThat(userTom, isIn(results));
- assertThat(userJohn, not(isIn(results)));
- }
-
- @Test
- public void givenFirstNamePrefix_whenGettingListOfUsers_thenCorrect() {
- final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("firstName", SearchOperation.STARTS_WITH, "jo"));
- final List results = repository.findAll(spec);
- assertThat(userJohn, isIn(results));
- assertThat(userTom, not(isIn(results)));
- }
-
- @Test
- public void givenFirstNameSuffix_whenGettingListOfUsers_thenCorrect() {
- final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("firstName", SearchOperation.ENDS_WITH, "n"));
- final List results = repository.findAll(spec);
- assertThat(userJohn, isIn(results));
- assertThat(userTom, not(isIn(results)));
- }
-
- @Test
- public void givenFirstNameSubstring_whenGettingListOfUsers_thenCorrect() {
- final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("firstName", SearchOperation.CONTAINS, "oh"));
- final List results = repository.findAll(spec);
-
- assertThat(userJohn, isIn(results));
- assertThat(userTom, not(isIn(results)));
- }
-
- @Test
- public void givenAgeRange_whenGettingListOfUsers_thenCorrect() {
- final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("age", SearchOperation.GREATER_THAN, "20"));
- final UserSpecification spec1 = new UserSpecification(new SpecSearchCriteria("age", SearchOperation.LESS_THAN, "25"));
- final List results = repository.findAll(Specification
- .where(spec)
- .and(spec1));
-
- assertThat(userJohn, isIn(results));
- assertThat(userTom, not(isIn(results)));
- }
-}
+package com.baeldung.persistence.query;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.data.jpa.domain.Specification;
+import org.springframework.test.annotation.Rollback;
+import org.springframework.test.context.ContextConfiguration;
+import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
+import org.springframework.transaction.annotation.Transactional;
+
+import com.baeldung.persistence.dao.GenericSpecificationsBuilder;
+import com.baeldung.persistence.dao.UserRepository;
+import com.baeldung.persistence.dao.UserSpecification;
+import com.baeldung.persistence.dao.UserSpecificationsBuilder;
+import com.baeldung.persistence.model.User;
+import com.baeldung.spring.PersistenceConfig;
+import com.baeldung.web.util.CriteriaParser;
+import com.baeldung.web.util.SearchOperation;
+import com.baeldung.web.util.SpecSearchCriteria;
+
+import java.util.List;
+import java.util.function.Function;
+
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.collection.IsCollectionWithSize.hasSize;
+import static org.hamcrest.collection.IsIn.isIn;
+import static org.hamcrest.core.IsNot.not;
+
+@RunWith(SpringJUnit4ClassRunner.class)
+@ContextConfiguration(classes = { PersistenceConfig.class })
+@Transactional
+@Rollback
+public class JPASpecificationIntegrationTest {
+
+ @Autowired
+ private UserRepository repository;
+
+ private User userJohn;
+
+ private User userTom;
+
+ private User userPercy;
+
+ @Before
+ public void init() {
+ userJohn = new User();
+ userJohn.setFirstName("john");
+ userJohn.setLastName("doe");
+ userJohn.setEmail("john@doe.com");
+ userJohn.setAge(22);
+ repository.save(userJohn);
+
+ userTom = new User();
+ userTom.setFirstName("tom");
+ userTom.setLastName("doe");
+ userTom.setEmail("tom@doe.com");
+ userTom.setAge(26);
+ repository.save(userTom);
+
+ userPercy = new User();
+ userPercy.setFirstName("percy");
+ userPercy.setLastName("blackney");
+ userPercy.setEmail("percy@blackney.com");
+ userPercy.setAge(30);
+ repository.save(userPercy);
+ }
+
+ @Test
+ public void givenFirstAndLastName_whenGettingListOfUsers_thenCorrect() {
+ final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("firstName", SearchOperation.EQUALITY, "john"));
+ final UserSpecification spec1 = new UserSpecification(new SpecSearchCriteria("lastName", SearchOperation.EQUALITY, "doe"));
+ final List results = repository.findAll(Specification
+ .where(spec)
+ .and(spec1));
+
+ assertThat(userJohn, isIn(results));
+ assertThat(userTom, not(isIn(results)));
+ }
+
+ @Test
+ public void givenFirstOrLastName_whenGettingListOfUsers_thenCorrect() {
+ UserSpecificationsBuilder builder = new UserSpecificationsBuilder();
+
+ SpecSearchCriteria spec = new SpecSearchCriteria("firstName", SearchOperation.EQUALITY, "john");
+ SpecSearchCriteria spec1 = new SpecSearchCriteria("'","lastName", SearchOperation.EQUALITY, "doe");
+
+ List results = repository.findAll(builder
+ .with(spec)
+ .with(spec1)
+ .build());
+
+ assertThat(results, hasSize(2));
+ assertThat(userJohn, isIn(results));
+ assertThat(userTom, isIn(results));
+ }
+
+ @Test
+ public void givenFirstOrLastNameAndAgeGenericBuilder_whenGettingListOfUsers_thenCorrect() {
+ GenericSpecificationsBuilder builder = new GenericSpecificationsBuilder<>();
+ Function> converter = UserSpecification::new;
+
+ CriteriaParser parser=new CriteriaParser();
+ List results = repository.findAll(builder.build(parser.parse("( lastName:doe OR firstName:john ) AND age:22"), converter));
+
+ assertThat(results, hasSize(1));
+ assertThat(userJohn, isIn(results));
+ assertThat(userTom, not(isIn(results)));
+ }
+
+ @Test
+ public void givenFirstOrLastNameGenericBuilder_whenGettingListOfUsers_thenCorrect() {
+ GenericSpecificationsBuilder builder = new GenericSpecificationsBuilder<>();
+ Function> converter = UserSpecification::new;
+
+ builder.with("firstName", ":", "john", null, null);
+ builder.with("'", "lastName", ":", "doe", null, null);
+
+ List results = repository.findAll(builder.build(converter));
+
+ assertThat(results, hasSize(2));
+ assertThat(userJohn, isIn(results));
+ assertThat(userTom, isIn(results));
+ }
+
+ @Test
+ public void givenFirstNameInverse_whenGettingListOfUsers_thenCorrect() {
+ final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("firstName", SearchOperation.NEGATION, "john"));
+ final List results = repository.findAll(Specification.where(spec));
+
+ assertThat(userTom, isIn(results));
+ assertThat(userJohn, not(isIn(results)));
+ }
+
+ @Test
+ public void givenMinAge_whenGettingListOfUsers_thenCorrect() {
+ final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("age", SearchOperation.GREATER_THAN, "25"));
+ final List results = repository.findAll(Specification.where(spec));
+ assertThat(userTom, isIn(results));
+ assertThat(userJohn, not(isIn(results)));
+ }
+
+ @Test
+ public void givenFirstNamePrefix_whenGettingListOfUsers_thenCorrect() {
+ final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("firstName", SearchOperation.STARTS_WITH, "jo"));
+ final List results = repository.findAll(spec);
+ assertThat(userJohn, isIn(results));
+ assertThat(userTom, not(isIn(results)));
+ }
+
+ @Test
+ public void givenFirstNameSuffix_whenGettingListOfUsers_thenCorrect() {
+ final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("firstName", SearchOperation.ENDS_WITH, "n"));
+ final List results = repository.findAll(spec);
+ assertThat(userJohn, isIn(results));
+ assertThat(userTom, not(isIn(results)));
+ }
+
+ @Test
+ public void givenFirstNameSubstring_whenGettingListOfUsers_thenCorrect() {
+ final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("firstName", SearchOperation.CONTAINS, "oh"));
+ final List results = repository.findAll(spec);
+
+ assertThat(userJohn, isIn(results));
+ assertThat(userTom, not(isIn(results)));
+ }
+
+ @Test
+ public void givenAgeRange_whenGettingListOfUsers_thenCorrect() {
+ final UserSpecification spec = new UserSpecification(new SpecSearchCriteria("age", SearchOperation.GREATER_THAN, "20"));
+ final UserSpecification spec1 = new UserSpecification(new SpecSearchCriteria("age", SearchOperation.LESS_THAN, "25"));
+ final List results = repository.findAll(Specification
+ .where(spec)
+ .and(spec1));
+
+ assertThat(userJohn, isIn(results));
+ assertThat(userTom, not(isIn(results)));
+ }
+}
diff --git a/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationLiveTest.java b/spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationLiveTest.java
similarity index 97%
rename from spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationLiveTest.java
rename to spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationLiveTest.java
index ad6a4259e7..d1fded3f10 100644
--- a/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationLiveTest.java
+++ b/spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/JPASpecificationLiveTest.java
@@ -1,147 +1,147 @@
-package com.baeldung.persistence.query;
-
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertTrue;
-import io.restassured.RestAssured;
-import io.restassured.response.Response;
-
-import org.junit.Before;
-import org.junit.Test;
-import org.springframework.test.context.ActiveProfiles;
-
-import com.baeldung.persistence.model.User;
-
-//@RunWith(SpringJUnit4ClassRunner.class)
-//@ContextConfiguration(classes = { ConfigTest.class,
-// PersistenceConfig.class }, loader = AnnotationConfigContextLoader.class)
-@ActiveProfiles("test")
-public class JPASpecificationLiveTest {
-
- // @Autowired
- // private UserRepository repository;
-
- private User userJohn;
-
- private User userTom;
-
- private final String URL_PREFIX = "http://localhost:8082/spring-rest-query-language/auth/users/spec?search=";
-
- @Before
- public void init() {
- userJohn = new User();
- userJohn.setFirstName("john");
- userJohn.setLastName("doe");
- userJohn.setEmail("john@doe.com");
- userJohn.setAge(22);
- // repository.save(userJohn);
-
- userTom = new User();
- userTom.setFirstName("tom");
- userTom.setLastName("doe");
- userTom.setEmail("tom@doe.com");
- userTom.setAge(26);
- // repository.save(userTom);
- }
-
- private final String EURL_PREFIX = "http://localhost:8082/spring-rest-query-language/auth/users/espec?search=";
-
- @Test
- public void givenFirstOrLastName_whenGettingListOfUsers_thenCorrect() {
- final Response response = RestAssured.get(EURL_PREFIX + "firstName:john,'lastName:doe");
- final String result = response.body()
- .asString();
- assertTrue(result.contains(userJohn.getEmail()));
- assertTrue(result.contains(userTom.getEmail()));
- }
-
- @Test
- public void givenFirstAndLastName_whenGettingListOfUsers_thenCorrect() {
- final Response response = RestAssured.get(URL_PREFIX + "firstName:john,lastName:doe");
- final String result = response.body()
- .asString();
-
- assertTrue(result.contains(userJohn.getEmail()));
- assertFalse(result.contains(userTom.getEmail()));
- }
-
- @Test
- public void givenFirstNameInverse_whenGettingListOfUsers_thenCorrect() {
- final Response response = RestAssured.get(URL_PREFIX + "firstName!john");
- final String result = response.body()
- .asString();
-
- assertTrue(result.contains(userTom.getEmail()));
- assertFalse(result.contains(userJohn.getEmail()));
- }
-
- @Test
- public void givenMinAge_whenGettingListOfUsers_thenCorrect() {
- final Response response = RestAssured.get(URL_PREFIX + "age>25");
- final String result = response.body()
- .asString();
-
- assertTrue(result.contains(userTom.getEmail()));
- assertFalse(result.contains(userJohn.getEmail()));
- }
-
- @Test
- public void givenFirstNamePrefix_whenGettingListOfUsers_thenCorrect() {
- final Response response = RestAssured.get(URL_PREFIX + "firstName:jo*");
- final String result = response.body()
- .asString();
-
- assertTrue(result.contains(userJohn.getEmail()));
- assertFalse(result.contains(userTom.getEmail()));
- }
-
- @Test
- public void givenFirstNameSuffix_whenGettingListOfUsers_thenCorrect() {
- final Response response = RestAssured.get(URL_PREFIX + "firstName:*n");
- final String result = response.body()
- .asString();
-
- assertTrue(result.contains(userJohn.getEmail()));
- assertFalse(result.contains(userTom.getEmail()));
- }
-
- @Test
- public void givenFirstNameSubstring_whenGettingListOfUsers_thenCorrect() {
- final Response response = RestAssured.get(URL_PREFIX + "firstName:*oh*");
- final String result = response.body()
- .asString();
-
- assertTrue(result.contains(userJohn.getEmail()));
- assertFalse(result.contains(userTom.getEmail()));
- }
-
- @Test
- public void givenAgeRange_whenGettingListOfUsers_thenCorrect() {
- final Response response = RestAssured.get(URL_PREFIX + "age>20,age<25");
- final String result = response.body()
- .asString();
-
- assertTrue(result.contains(userJohn.getEmail()));
- assertFalse(result.contains(userTom.getEmail()));
- }
-
- private final String ADV_URL_PREFIX = "http://localhost:8082/spring-rest-query-language/auth/users/spec/adv?search=";
-
- @Test
- public void givenFirstOrLastName_whenGettingAdvListOfUsers_thenCorrect() {
- final Response response = RestAssured.get(ADV_URL_PREFIX + "firstName:john OR lastName:doe");
- final String result = response.body()
- .asString();
- assertTrue(result.contains(userJohn.getEmail()));
- assertTrue(result.contains(userTom.getEmail()));
- }
-
- @Test
- public void givenFirstOrFirstNameAndAge_whenGettingAdvListOfUsers_thenCorrect() {
- final Response response = RestAssured.get(ADV_URL_PREFIX + "( firstName:john OR firstName:tom ) AND age>22");
- final String result = response.body()
- .asString();
- assertFalse(result.contains(userJohn.getEmail()));
- assertTrue(result.contains(userTom.getEmail()));
- }
-
-}
+package com.baeldung.persistence.query;
+
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+import io.restassured.RestAssured;
+import io.restassured.response.Response;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.springframework.test.context.ActiveProfiles;
+
+import com.baeldung.persistence.model.User;
+
+//@RunWith(SpringJUnit4ClassRunner.class)
+//@ContextConfiguration(classes = { ConfigTest.class,
+// PersistenceConfig.class }, loader = AnnotationConfigContextLoader.class)
+@ActiveProfiles("test")
+public class JPASpecificationLiveTest {
+
+ // @Autowired
+ // private UserRepository repository;
+
+ private User userJohn;
+
+ private User userTom;
+
+ private final String URL_PREFIX = "http://localhost:8082/spring-rest-query-language/auth/users/spec?search=";
+
+ @Before
+ public void init() {
+ userJohn = new User();
+ userJohn.setFirstName("john");
+ userJohn.setLastName("doe");
+ userJohn.setEmail("john@doe.com");
+ userJohn.setAge(22);
+ // repository.save(userJohn);
+
+ userTom = new User();
+ userTom.setFirstName("tom");
+ userTom.setLastName("doe");
+ userTom.setEmail("tom@doe.com");
+ userTom.setAge(26);
+ // repository.save(userTom);
+ }
+
+ private final String EURL_PREFIX = "http://localhost:8082/spring-rest-query-language/auth/users/espec?search=";
+
+ @Test
+ public void givenFirstOrLastName_whenGettingListOfUsers_thenCorrect() {
+ final Response response = RestAssured.get(EURL_PREFIX + "firstName:john,'lastName:doe");
+ final String result = response.body()
+ .asString();
+ assertTrue(result.contains(userJohn.getEmail()));
+ assertTrue(result.contains(userTom.getEmail()));
+ }
+
+ @Test
+ public void givenFirstAndLastName_whenGettingListOfUsers_thenCorrect() {
+ final Response response = RestAssured.get(URL_PREFIX + "firstName:john,lastName:doe");
+ final String result = response.body()
+ .asString();
+
+ assertTrue(result.contains(userJohn.getEmail()));
+ assertFalse(result.contains(userTom.getEmail()));
+ }
+
+ @Test
+ public void givenFirstNameInverse_whenGettingListOfUsers_thenCorrect() {
+ final Response response = RestAssured.get(URL_PREFIX + "firstName!john");
+ final String result = response.body()
+ .asString();
+
+ assertTrue(result.contains(userTom.getEmail()));
+ assertFalse(result.contains(userJohn.getEmail()));
+ }
+
+ @Test
+ public void givenMinAge_whenGettingListOfUsers_thenCorrect() {
+ final Response response = RestAssured.get(URL_PREFIX + "age>25");
+ final String result = response.body()
+ .asString();
+
+ assertTrue(result.contains(userTom.getEmail()));
+ assertFalse(result.contains(userJohn.getEmail()));
+ }
+
+ @Test
+ public void givenFirstNamePrefix_whenGettingListOfUsers_thenCorrect() {
+ final Response response = RestAssured.get(URL_PREFIX + "firstName:jo*");
+ final String result = response.body()
+ .asString();
+
+ assertTrue(result.contains(userJohn.getEmail()));
+ assertFalse(result.contains(userTom.getEmail()));
+ }
+
+ @Test
+ public void givenFirstNameSuffix_whenGettingListOfUsers_thenCorrect() {
+ final Response response = RestAssured.get(URL_PREFIX + "firstName:*n");
+ final String result = response.body()
+ .asString();
+
+ assertTrue(result.contains(userJohn.getEmail()));
+ assertFalse(result.contains(userTom.getEmail()));
+ }
+
+ @Test
+ public void givenFirstNameSubstring_whenGettingListOfUsers_thenCorrect() {
+ final Response response = RestAssured.get(URL_PREFIX + "firstName:*oh*");
+ final String result = response.body()
+ .asString();
+
+ assertTrue(result.contains(userJohn.getEmail()));
+ assertFalse(result.contains(userTom.getEmail()));
+ }
+
+ @Test
+ public void givenAgeRange_whenGettingListOfUsers_thenCorrect() {
+ final Response response = RestAssured.get(URL_PREFIX + "age>20,age<25");
+ final String result = response.body()
+ .asString();
+
+ assertTrue(result.contains(userJohn.getEmail()));
+ assertFalse(result.contains(userTom.getEmail()));
+ }
+
+ private final String ADV_URL_PREFIX = "http://localhost:8082/spring-rest-query-language/auth/users/spec/adv?search=";
+
+ @Test
+ public void givenFirstOrLastName_whenGettingAdvListOfUsers_thenCorrect() {
+ final Response response = RestAssured.get(ADV_URL_PREFIX + "firstName:john OR lastName:doe");
+ final String result = response.body()
+ .asString();
+ assertTrue(result.contains(userJohn.getEmail()));
+ assertTrue(result.contains(userTom.getEmail()));
+ }
+
+ @Test
+ public void givenFirstOrFirstNameAndAge_whenGettingAdvListOfUsers_thenCorrect() {
+ final Response response = RestAssured.get(ADV_URL_PREFIX + "( firstName:john OR firstName:tom ) AND age>22");
+ final String result = response.body()
+ .asString();
+ assertFalse(result.contains(userJohn.getEmail()));
+ assertTrue(result.contains(userTom.getEmail()));
+ }
+
+}
diff --git a/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/RsqlIntegrationTest.java b/spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/RsqlIntegrationTest.java
similarity index 100%
rename from spring-rest-query-language/src/test/java/com/baeldung/persistence/query/RsqlIntegrationTest.java
rename to spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/persistence/query/RsqlIntegrationTest.java
diff --git a/spring-rest-query-language/src/test/java/com/baeldung/web/MyUserLiveTest.java b/spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/web/MyUserLiveTest.java
similarity index 100%
rename from spring-rest-query-language/src/test/java/com/baeldung/web/MyUserLiveTest.java
rename to spring-web-modules/spring-rest-query-language/src/test/java/com/baeldung/web/MyUserLiveTest.java
diff --git a/spring-rest-query-language/src/test/resources/.gitignore b/spring-web-modules/spring-rest-query-language/src/test/resources/.gitignore
similarity index 100%
rename from spring-rest-query-language/src/test/resources/.gitignore
rename to spring-web-modules/spring-rest-query-language/src/test/resources/.gitignore
diff --git a/spring-rest-shell/README.md b/spring-web-modules/spring-rest-shell/README.md
similarity index 100%
rename from spring-rest-shell/README.md
rename to spring-web-modules/spring-rest-shell/README.md
diff --git a/spring-rest-shell/pom.xml b/spring-web-modules/spring-rest-shell/pom.xml
similarity index 96%
rename from spring-rest-shell/pom.xml
rename to spring-web-modules/spring-rest-shell/pom.xml
index 1148a5c093..f5792fd6ca 100644
--- a/spring-rest-shell/pom.xml
+++ b/spring-web-modules/spring-rest-shell/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-rest-shell/src/main/java/com/baeldung/Application.java b/spring-web-modules/spring-rest-shell/src/main/java/com/baeldung/Application.java
similarity index 100%
rename from spring-rest-shell/src/main/java/com/baeldung/Application.java
rename to spring-web-modules/spring-rest-shell/src/main/java/com/baeldung/Application.java
diff --git a/spring-rest-shell/src/main/java/com/baeldung/acticle/Article.java b/spring-web-modules/spring-rest-shell/src/main/java/com/baeldung/acticle/Article.java
similarity index 100%
rename from spring-rest-shell/src/main/java/com/baeldung/acticle/Article.java
rename to spring-web-modules/spring-rest-shell/src/main/java/com/baeldung/acticle/Article.java
diff --git a/spring-rest-shell/src/main/java/com/baeldung/acticle/ArticleRepository.java b/spring-web-modules/spring-rest-shell/src/main/java/com/baeldung/acticle/ArticleRepository.java
similarity index 100%
rename from spring-rest-shell/src/main/java/com/baeldung/acticle/ArticleRepository.java
rename to spring-web-modules/spring-rest-shell/src/main/java/com/baeldung/acticle/ArticleRepository.java
diff --git a/spring-session/spring-session-mongodb/src/main/resources/logback.xml b/spring-web-modules/spring-rest-shell/src/main/resources/logback.xml
similarity index 100%
rename from spring-session/spring-session-mongodb/src/main/resources/logback.xml
rename to spring-web-modules/spring-rest-shell/src/main/resources/logback.xml
diff --git a/spring-rest-simple/README.md b/spring-web-modules/spring-rest-simple/README.md
similarity index 100%
rename from spring-rest-simple/README.md
rename to spring-web-modules/spring-rest-simple/README.md
diff --git a/spring-rest-simple/pom.xml b/spring-web-modules/spring-rest-simple/pom.xml
similarity index 99%
rename from spring-rest-simple/pom.xml
rename to spring-web-modules/spring-rest-simple/pom.xml
index 291053c87f..b9d5100fbf 100644
--- a/spring-rest-simple/pom.xml
+++ b/spring-web-modules/spring-rest-simple/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
@@ -314,7 +314,6 @@
- 1.3.3
4.0.0
1.4
3.1.0
diff --git a/spring-rest-simple/src/main/java/com/baeldung/Application.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/Application.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/Application.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/Application.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/apachefileupload/UploadController.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/apachefileupload/UploadController.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/apachefileupload/UploadController.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/apachefileupload/UploadController.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/config/MvcConfig.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/config/MvcConfig.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/config/MvcConfig.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/config/MvcConfig.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/config/converter/KryoHttpMessageConverter.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/config/converter/KryoHttpMessageConverter.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/config/converter/KryoHttpMessageConverter.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/config/converter/KryoHttpMessageConverter.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/repository/BookRepository.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/repository/BookRepository.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/repository/BookRepository.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/repository/BookRepository.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/web/controller/ApiExceptionHandler.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/controller/ApiExceptionHandler.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/web/controller/ApiExceptionHandler.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/controller/ApiExceptionHandler.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/web/controller/BookController.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/controller/BookController.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/web/controller/BookController.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/controller/BookController.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/web/controller/FooController.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/controller/FooController.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/web/controller/FooController.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/controller/FooController.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/web/dto/Bazz.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/dto/Bazz.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/web/dto/Bazz.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/dto/Bazz.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/web/dto/Book.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/dto/Book.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/web/dto/Book.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/dto/Book.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/web/dto/Foo.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/dto/Foo.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/web/dto/Foo.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/dto/Foo.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/web/dto/FooProtos.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/dto/FooProtos.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/web/dto/FooProtos.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/dto/FooProtos.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/web/error/ApiErrorResponse.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/error/ApiErrorResponse.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/web/error/ApiErrorResponse.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/error/ApiErrorResponse.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/web/error/BookNotFoundException.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/error/BookNotFoundException.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/web/error/BookNotFoundException.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/error/BookNotFoundException.java
diff --git a/spring-rest-simple/src/main/java/com/baeldung/web/util/LinkUtil.java b/spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/util/LinkUtil.java
similarity index 100%
rename from spring-rest-simple/src/main/java/com/baeldung/web/util/LinkUtil.java
rename to spring-web-modules/spring-rest-simple/src/main/java/com/baeldung/web/util/LinkUtil.java
diff --git a/spring-rest-simple/src/main/resources/application.properties b/spring-web-modules/spring-rest-simple/src/main/resources/application.properties
similarity index 100%
rename from spring-rest-simple/src/main/resources/application.properties
rename to spring-web-modules/spring-rest-simple/src/main/resources/application.properties
diff --git a/spring-rest-simple/src/main/resources/logback.xml b/spring-web-modules/spring-rest-simple/src/main/resources/logback.xml
similarity index 100%
rename from spring-rest-simple/src/main/resources/logback.xml
rename to spring-web-modules/spring-rest-simple/src/main/resources/logback.xml
diff --git a/spring-rest-simple/src/main/webapp/WEB-INF/company.html b/spring-web-modules/spring-rest-simple/src/main/webapp/WEB-INF/company.html
similarity index 100%
rename from spring-rest-simple/src/main/webapp/WEB-INF/company.html
rename to spring-web-modules/spring-rest-simple/src/main/webapp/WEB-INF/company.html
diff --git a/spring-rest-simple/src/main/webapp/WEB-INF/spring-views.xml b/spring-web-modules/spring-rest-simple/src/main/webapp/WEB-INF/spring-views.xml
similarity index 100%
rename from spring-rest-simple/src/main/webapp/WEB-INF/spring-views.xml
rename to spring-web-modules/spring-rest-simple/src/main/webapp/WEB-INF/spring-views.xml
diff --git a/spring-rest-simple/src/main/webapp/WEB-INF/spring-web-config.xml b/spring-web-modules/spring-rest-simple/src/main/webapp/WEB-INF/spring-web-config.xml
similarity index 100%
rename from spring-rest-simple/src/main/webapp/WEB-INF/spring-web-config.xml
rename to spring-web-modules/spring-rest-simple/src/main/webapp/WEB-INF/spring-web-config.xml
diff --git a/spring-rest-simple/src/test/java/com/baeldung/SpringContextTest.java b/spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-rest-simple/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-rest-simple/src/test/java/com/baeldung/repository/BookRepositoryUnitTest.java b/spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/repository/BookRepositoryUnitTest.java
similarity index 100%
rename from spring-rest-simple/src/test/java/com/baeldung/repository/BookRepositoryUnitTest.java
rename to spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/repository/BookRepositoryUnitTest.java
diff --git a/spring-rest-simple/src/test/java/com/baeldung/web/controller/BookControllerIntegrationTest.java b/spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/controller/BookControllerIntegrationTest.java
similarity index 100%
rename from spring-rest-simple/src/test/java/com/baeldung/web/controller/BookControllerIntegrationTest.java
rename to spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/controller/BookControllerIntegrationTest.java
diff --git a/spring-rest-simple/src/test/java/com/baeldung/web/controller/mediatypes/TestConfig.java b/spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/controller/mediatypes/TestConfig.java
similarity index 100%
rename from spring-rest-simple/src/test/java/com/baeldung/web/controller/mediatypes/TestConfig.java
rename to spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/controller/mediatypes/TestConfig.java
diff --git a/spring-rest-simple/src/test/java/com/baeldung/web/test/RequestMappingLiveTest.java b/spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/test/RequestMappingLiveTest.java
similarity index 100%
rename from spring-rest-simple/src/test/java/com/baeldung/web/test/RequestMappingLiveTest.java
rename to spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/test/RequestMappingLiveTest.java
diff --git a/spring-rest-simple/src/test/java/com/baeldung/web/test/RestTemplateBasicLiveTest.java b/spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/test/RestTemplateBasicLiveTest.java
similarity index 100%
rename from spring-rest-simple/src/test/java/com/baeldung/web/test/RestTemplateBasicLiveTest.java
rename to spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/test/RestTemplateBasicLiveTest.java
diff --git a/spring-rest-simple/src/test/java/com/baeldung/web/test/SpringHttpMessageConvertersLiveTest.java b/spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/test/SpringHttpMessageConvertersLiveTest.java
similarity index 100%
rename from spring-rest-simple/src/test/java/com/baeldung/web/test/SpringHttpMessageConvertersLiveTest.java
rename to spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/test/SpringHttpMessageConvertersLiveTest.java
diff --git a/spring-rest-simple/src/test/java/com/baeldung/web/test/TestRestTemplateBasicLiveTest.java b/spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/test/TestRestTemplateBasicLiveTest.java
similarity index 100%
rename from spring-rest-simple/src/test/java/com/baeldung/web/test/TestRestTemplateBasicLiveTest.java
rename to spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/test/TestRestTemplateBasicLiveTest.java
diff --git a/spring-rest-simple/src/test/java/com/baeldung/web/util/HTTPLinkHeaderUtil.java b/spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/util/HTTPLinkHeaderUtil.java
similarity index 100%
rename from spring-rest-simple/src/test/java/com/baeldung/web/util/HTTPLinkHeaderUtil.java
rename to spring-web-modules/spring-rest-simple/src/test/java/com/baeldung/web/util/HTTPLinkHeaderUtil.java
diff --git a/spring-rest-simple/src/test/resources/.gitignore b/spring-web-modules/spring-rest-simple/src/test/resources/.gitignore
similarity index 100%
rename from spring-rest-simple/src/test/resources/.gitignore
rename to spring-web-modules/spring-rest-simple/src/test/resources/.gitignore
diff --git a/spring-rest-testing/.gitignore b/spring-web-modules/spring-rest-testing/.gitignore
similarity index 100%
rename from spring-rest-testing/.gitignore
rename to spring-web-modules/spring-rest-testing/.gitignore
diff --git a/spring-rest-testing/README.md b/spring-web-modules/spring-rest-testing/README.md
similarity index 100%
rename from spring-rest-testing/README.md
rename to spring-web-modules/spring-rest-testing/README.md
diff --git a/spring-rest-testing/pom.xml b/spring-web-modules/spring-rest-testing/pom.xml
similarity index 98%
rename from spring-rest-testing/pom.xml
rename to spring-web-modules/spring-rest-testing/pom.xml
index 9bfe9d83a4..fea8d25e4d 100644
--- a/spring-rest-testing/pom.xml
+++ b/spring-web-modules/spring-rest-testing/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
@@ -120,7 +120,7 @@
org.hibernate
- hibernate-entitymanager
+ hibernate-core
xml-apis
diff --git a/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/ExceptionTestingApplication.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/ExceptionTestingApplication.java
similarity index 97%
rename from spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/ExceptionTestingApplication.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/ExceptionTestingApplication.java
index facc300dfa..b6e62b7295 100644
--- a/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/ExceptionTestingApplication.java
+++ b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/ExceptionTestingApplication.java
@@ -1,25 +1,25 @@
-package com.baeldung.exceptiontesting;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
-import org.springframework.context.annotation.ComponentScan;
-import org.springframework.scheduling.annotation.EnableScheduling;
-
-/**
- * Main Application Class - uses Spring Boot. Just run this as a normal Java
- * class to run up a Jetty Server (on http://localhost:8082/spring-rest-full)
- *
- */
-@EnableScheduling
-@EnableAutoConfiguration
-@ComponentScan("com.baeldung.exceptiontesting")
-@SpringBootApplication
-public class ExceptionTestingApplication extends SpringBootServletInitializer {
-
- public static void main(final String[] args) {
- SpringApplication.run(ExceptionTestingApplication.class, args);
- }
-
+package com.baeldung.exceptiontesting;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
+import org.springframework.context.annotation.ComponentScan;
+import org.springframework.scheduling.annotation.EnableScheduling;
+
+/**
+ * Main Application Class - uses Spring Boot. Just run this as a normal Java
+ * class to run up a Jetty Server (on http://localhost:8082/spring-rest-full)
+ *
+ */
+@EnableScheduling
+@EnableAutoConfiguration
+@ComponentScan("com.baeldung.exceptiontesting")
+@SpringBootApplication
+public class ExceptionTestingApplication extends SpringBootServletInitializer {
+
+ public static void main(final String[] args) {
+ SpringApplication.run(ExceptionTestingApplication.class, args);
+ }
+
}
\ No newline at end of file
diff --git a/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/controller/ExceptionController.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/controller/ExceptionController.java
similarity index 97%
rename from spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/controller/ExceptionController.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/controller/ExceptionController.java
index 0f458b5f10..6d98337e40 100644
--- a/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/controller/ExceptionController.java
+++ b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/controller/ExceptionController.java
@@ -1,31 +1,31 @@
-package com.baeldung.exceptiontesting.controller;
-
-import org.springframework.web.bind.annotation.GetMapping;
-import org.springframework.web.bind.annotation.PathVariable;
-import org.springframework.web.bind.annotation.RestController;
-
-import com.baeldung.exceptiontesting.exception.BadArgumentsException;
-import com.baeldung.exceptiontesting.exception.InternalException;
-import com.baeldung.exceptiontesting.exception.ResourceNotFoundException;
-
-@RestController
-public class ExceptionController {
-
- @GetMapping("/exception/{exception_id}")
- public void getSpecificException(@PathVariable("exception_id") String pException) {
- if("not_found".equals(pException)) {
- throw new ResourceNotFoundException("resource not found");
- }
- else if("bad_arguments".equals(pException)) {
- throw new BadArgumentsException("bad arguments");
- }
- else {
- throw new InternalException("internal error");
- }
- }
-
- @GetMapping("/exception/throw")
- public void getException() throws Exception {
- throw new Exception("error");
- }
-}
+package com.baeldung.exceptiontesting.controller;
+
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RestController;
+
+import com.baeldung.exceptiontesting.exception.BadArgumentsException;
+import com.baeldung.exceptiontesting.exception.InternalException;
+import com.baeldung.exceptiontesting.exception.ResourceNotFoundException;
+
+@RestController
+public class ExceptionController {
+
+ @GetMapping("/exception/{exception_id}")
+ public void getSpecificException(@PathVariable("exception_id") String pException) {
+ if("not_found".equals(pException)) {
+ throw new ResourceNotFoundException("resource not found");
+ }
+ else if("bad_arguments".equals(pException)) {
+ throw new BadArgumentsException("bad arguments");
+ }
+ else {
+ throw new InternalException("internal error");
+ }
+ }
+
+ @GetMapping("/exception/throw")
+ public void getException() throws Exception {
+ throw new Exception("error");
+ }
+}
diff --git a/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/BadArgumentsException.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/BadArgumentsException.java
similarity index 96%
rename from spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/BadArgumentsException.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/BadArgumentsException.java
index 1eb1e6a3c9..1f0e1c1ddb 100644
--- a/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/BadArgumentsException.java
+++ b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/BadArgumentsException.java
@@ -1,13 +1,13 @@
-package com.baeldung.exceptiontesting.exception;
-
-import org.springframework.http.HttpStatus;
-import org.springframework.web.bind.annotation.ResponseStatus;
-
-@SuppressWarnings("serial")
-@ResponseStatus(HttpStatus.BAD_REQUEST)
-public class BadArgumentsException extends RuntimeException {
-
- public BadArgumentsException(String message) {
- super(message);
- }
-}
+package com.baeldung.exceptiontesting.exception;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.web.bind.annotation.ResponseStatus;
+
+@SuppressWarnings("serial")
+@ResponseStatus(HttpStatus.BAD_REQUEST)
+public class BadArgumentsException extends RuntimeException {
+
+ public BadArgumentsException(String message) {
+ super(message);
+ }
+}
diff --git a/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/InternalException.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/InternalException.java
similarity index 96%
rename from spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/InternalException.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/InternalException.java
index 8e9f0f60f3..854d6a57f0 100644
--- a/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/InternalException.java
+++ b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/InternalException.java
@@ -1,13 +1,13 @@
-package com.baeldung.exceptiontesting.exception;
-
-import org.springframework.http.HttpStatus;
-import org.springframework.web.bind.annotation.ResponseStatus;
-
-@SuppressWarnings("serial")
-@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
-public class InternalException extends RuntimeException {
-
- public InternalException(String message) {
- super(message);
- }
-}
+package com.baeldung.exceptiontesting.exception;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.web.bind.annotation.ResponseStatus;
+
+@SuppressWarnings("serial")
+@ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
+public class InternalException extends RuntimeException {
+
+ public InternalException(String message) {
+ super(message);
+ }
+}
diff --git a/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/ResourceNotFoundException.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/ResourceNotFoundException.java
similarity index 96%
rename from spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/ResourceNotFoundException.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/ResourceNotFoundException.java
index 469d5af96f..6d6e6ef712 100644
--- a/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/ResourceNotFoundException.java
+++ b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/exceptiontesting/exception/ResourceNotFoundException.java
@@ -1,13 +1,13 @@
-package com.baeldung.exceptiontesting.exception;
-
-import org.springframework.http.HttpStatus;
-import org.springframework.web.bind.annotation.ResponseStatus;
-
-@SuppressWarnings("serial")
-@ResponseStatus(HttpStatus.NOT_FOUND)
-public class ResourceNotFoundException extends RuntimeException {
-
- public ResourceNotFoundException(String message) {
- super(message);
- }
-}
+package com.baeldung.exceptiontesting.exception;
+
+import org.springframework.http.HttpStatus;
+import org.springframework.web.bind.annotation.ResponseStatus;
+
+@SuppressWarnings("serial")
+@ResponseStatus(HttpStatus.NOT_FOUND)
+public class ResourceNotFoundException extends RuntimeException {
+
+ public ResourceNotFoundException(String message) {
+ super(message);
+ }
+}
diff --git a/spring-rest-testing/src/main/java/com/baeldung/persistence/IOperations.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/IOperations.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/persistence/IOperations.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/IOperations.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/persistence/dao/IFooDao.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/dao/IFooDao.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/persistence/dao/IFooDao.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/dao/IFooDao.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/persistence/model/Foo.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/Foo.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/persistence/model/Foo.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/Foo.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/persistence/model/User.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/User.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/persistence/model/User.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/model/User.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/persistence/service/IFooService.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/IFooService.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/persistence/service/IFooService.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/IFooService.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/persistence/service/common/AbstractService.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/common/AbstractService.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/persistence/service/common/AbstractService.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/common/AbstractService.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/persistence/service/impl/FooService.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/impl/FooService.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/persistence/service/impl/FooService.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/persistence/service/impl/FooService.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/spring/Application.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/spring/Application.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/spring/Application.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/spring/Application.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/spring/PersistenceConfig.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/spring/PersistenceConfig.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/spring/PersistenceConfig.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/spring/PersistenceConfig.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/spring/WebConfig.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/spring/WebConfig.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/spring/WebConfig.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/spring/WebConfig.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/controller/FooController.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/controller/FooController.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/controller/FooController.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/controller/FooController.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/controller/HomeController.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/controller/HomeController.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/controller/HomeController.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/controller/HomeController.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/controller/RootController.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/controller/RootController.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/controller/RootController.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/controller/RootController.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/exception/MyResourceNotFoundException.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/metric/ActuatorMetricService.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/ActuatorMetricService.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/metric/ActuatorMetricService.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/ActuatorMetricService.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/metric/CustomActuatorMetricService.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/CustomActuatorMetricService.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/metric/CustomActuatorMetricService.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/CustomActuatorMetricService.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/metric/IActuatorMetricService.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/IActuatorMetricService.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/metric/IActuatorMetricService.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/IActuatorMetricService.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/metric/ICustomActuatorMetricService.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/ICustomActuatorMetricService.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/metric/ICustomActuatorMetricService.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/ICustomActuatorMetricService.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/metric/IMetricService.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/IMetricService.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/metric/IMetricService.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/IMetricService.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/metric/MetricFilter.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/MetricFilter.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/metric/MetricFilter.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/MetricFilter.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/metric/MetricService.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/MetricService.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/metric/MetricService.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/metric/MetricService.java
diff --git a/spring-rest-testing/src/main/java/com/baeldung/web/util/RestPreconditions.java b/spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/util/RestPreconditions.java
similarity index 100%
rename from spring-rest-testing/src/main/java/com/baeldung/web/util/RestPreconditions.java
rename to spring-web-modules/spring-rest-testing/src/main/java/com/baeldung/web/util/RestPreconditions.java
diff --git a/spring-rest-testing/src/main/resources/application.properties b/spring-web-modules/spring-rest-testing/src/main/resources/application.properties
similarity index 100%
rename from spring-rest-testing/src/main/resources/application.properties
rename to spring-web-modules/spring-rest-testing/src/main/resources/application.properties
diff --git a/spring-rest-testing/src/main/resources/logback.xml b/spring-web-modules/spring-rest-testing/src/main/resources/logback.xml
similarity index 100%
rename from spring-rest-testing/src/main/resources/logback.xml
rename to spring-web-modules/spring-rest-testing/src/main/resources/logback.xml
diff --git a/spring-rest-testing/src/main/resources/persistence-h2.properties b/spring-web-modules/spring-rest-testing/src/main/resources/persistence-h2.properties
similarity index 100%
rename from spring-rest-testing/src/main/resources/persistence-h2.properties
rename to spring-web-modules/spring-rest-testing/src/main/resources/persistence-h2.properties
diff --git a/spring-rest-testing/src/main/resources/persistence-mysql.properties b/spring-web-modules/spring-rest-testing/src/main/resources/persistence-mysql.properties
similarity index 100%
rename from spring-rest-testing/src/main/resources/persistence-mysql.properties
rename to spring-web-modules/spring-rest-testing/src/main/resources/persistence-mysql.properties
diff --git a/spring-rest-testing/src/main/resources/springDataPersistenceConfig.xml b/spring-web-modules/spring-rest-testing/src/main/resources/springDataPersistenceConfig.xml
similarity index 100%
rename from spring-rest-testing/src/main/resources/springDataPersistenceConfig.xml
rename to spring-web-modules/spring-rest-testing/src/main/resources/springDataPersistenceConfig.xml
diff --git a/spring-rest-testing/src/main/webapp/WEB-INF/api-servlet.xml b/spring-web-modules/spring-rest-testing/src/main/webapp/WEB-INF/api-servlet.xml
similarity index 100%
rename from spring-rest-testing/src/main/webapp/WEB-INF/api-servlet.xml
rename to spring-web-modules/spring-rest-testing/src/main/webapp/WEB-INF/api-servlet.xml
diff --git a/spring-rest-testing/src/main/webapp/WEB-INF/view/graph.jsp b/spring-web-modules/spring-rest-testing/src/main/webapp/WEB-INF/view/graph.jsp
similarity index 100%
rename from spring-rest-testing/src/main/webapp/WEB-INF/view/graph.jsp
rename to spring-web-modules/spring-rest-testing/src/main/webapp/WEB-INF/view/graph.jsp
diff --git a/spring-rest-testing/src/main/webapp/WEB-INF/view/homepage.jsp b/spring-web-modules/spring-rest-testing/src/main/webapp/WEB-INF/view/homepage.jsp
similarity index 100%
rename from spring-rest-testing/src/main/webapp/WEB-INF/view/homepage.jsp
rename to spring-web-modules/spring-rest-testing/src/main/webapp/WEB-INF/view/homepage.jsp
diff --git a/spring-rest-testing/src/main/webapp/WEB-INF/web.xml b/spring-web-modules/spring-rest-testing/src/main/webapp/WEB-INF/web.xml
similarity index 100%
rename from spring-rest-testing/src/main/webapp/WEB-INF/web.xml
rename to spring-web-modules/spring-rest-testing/src/main/webapp/WEB-INF/web.xml
diff --git a/spring-rest-testing/src/test/java/com/baeldung/Consts.java b/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/Consts.java
similarity index 100%
rename from spring-rest-testing/src/test/java/com/baeldung/Consts.java
rename to spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/Consts.java
diff --git a/spring-rest-testing/src/test/java/com/baeldung/SpringContextIntegrationTest.java b/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/SpringContextIntegrationTest.java
similarity index 100%
rename from spring-rest-testing/src/test/java/com/baeldung/SpringContextIntegrationTest.java
rename to spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/SpringContextIntegrationTest.java
diff --git a/spring-rest-testing/src/test/java/com/baeldung/SpringContextTest.java b/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/SpringContextTest.java
similarity index 100%
rename from spring-rest-testing/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/SpringContextTest.java
diff --git a/spring-rest-testing/src/test/java/com/baeldung/exceptiontesting/controller/ExceptionControllerUnitTest.java b/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/exceptiontesting/controller/ExceptionControllerUnitTest.java
similarity index 97%
rename from spring-rest-testing/src/test/java/com/baeldung/exceptiontesting/controller/ExceptionControllerUnitTest.java
rename to spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/exceptiontesting/controller/ExceptionControllerUnitTest.java
index d624efcdd0..8e1eaad977 100644
--- a/spring-rest-testing/src/test/java/com/baeldung/exceptiontesting/controller/ExceptionControllerUnitTest.java
+++ b/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/exceptiontesting/controller/ExceptionControllerUnitTest.java
@@ -1,65 +1,65 @@
-package com.baeldung.exceptiontesting.controller;
-import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
-import org.springframework.http.MediaType;
-import org.springframework.test.context.junit4.SpringRunner;
-import org.springframework.test.web.servlet.MockMvc;
-
-import com.baeldung.exceptiontesting.controller.ExceptionController;
-import com.baeldung.exceptiontesting.exception.BadArgumentsException;
-import com.baeldung.exceptiontesting.exception.InternalException;
-import com.baeldung.exceptiontesting.exception.ResourceNotFoundException;
-
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertTrue;
-import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
-import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
-
-@RunWith(SpringRunner.class)
-@WebMvcTest(ExceptionController.class)
-public class ExceptionControllerUnitTest{
-
- @Autowired
- private MockMvc mvc;
-
- @Test
- public void givenNotFound_whenGetSpecificException_thenNotFoundCode() throws Exception {
- String exceptionParam = "not_found";
-
- mvc.perform(get("/exception/{exception_id}", exceptionParam)
- .contentType(MediaType.APPLICATION_JSON))
- .andExpect(status().isNotFound())
- .andExpect(result -> assertTrue(result.getResolvedException() instanceof ResourceNotFoundException))
- .andExpect(result -> assertEquals("resource not found", result.getResolvedException().getMessage()));
- }
-
- @Test
- public void givenBadArguments_whenGetSpecificException_thenBadRequest() throws Exception {
- String exceptionParam = "bad_arguments";
-
- mvc.perform(get("/exception/{exception_id}", exceptionParam)
- .contentType(MediaType.APPLICATION_JSON))
- .andExpect(status().isBadRequest())
- .andExpect(result -> assertTrue(result.getResolvedException() instanceof BadArgumentsException))
- .andExpect(result -> assertEquals("bad arguments", result.getResolvedException().getMessage()));
- }
-
- @Test
- public void givenOther_whenGetSpecificException_thenInternalServerError() throws Exception {
- String exceptionParam = "dummy";
-
- mvc.perform(get("/exception/{exception_id}", exceptionParam)
- .contentType(MediaType.APPLICATION_JSON))
- .andExpect(status().isInternalServerError())
- .andExpect(result -> assertTrue(result.getResolvedException() instanceof InternalException))
- .andExpect(result -> assertEquals("internal error", result.getResolvedException().getMessage()));
- }
-
- @Test(expected = Exception.class)
- public void whenGetException_thenInternalServerError() throws Exception {
- mvc.perform(get("/exception/throw")
- .contentType(MediaType.APPLICATION_JSON));
- }
-}
+package com.baeldung.exceptiontesting.controller;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
+import org.springframework.http.MediaType;
+import org.springframework.test.context.junit4.SpringRunner;
+import org.springframework.test.web.servlet.MockMvc;
+
+import com.baeldung.exceptiontesting.controller.ExceptionController;
+import com.baeldung.exceptiontesting.exception.BadArgumentsException;
+import com.baeldung.exceptiontesting.exception.InternalException;
+import com.baeldung.exceptiontesting.exception.ResourceNotFoundException;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
+import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
+
+@RunWith(SpringRunner.class)
+@WebMvcTest(ExceptionController.class)
+public class ExceptionControllerUnitTest{
+
+ @Autowired
+ private MockMvc mvc;
+
+ @Test
+ public void givenNotFound_whenGetSpecificException_thenNotFoundCode() throws Exception {
+ String exceptionParam = "not_found";
+
+ mvc.perform(get("/exception/{exception_id}", exceptionParam)
+ .contentType(MediaType.APPLICATION_JSON))
+ .andExpect(status().isNotFound())
+ .andExpect(result -> assertTrue(result.getResolvedException() instanceof ResourceNotFoundException))
+ .andExpect(result -> assertEquals("resource not found", result.getResolvedException().getMessage()));
+ }
+
+ @Test
+ public void givenBadArguments_whenGetSpecificException_thenBadRequest() throws Exception {
+ String exceptionParam = "bad_arguments";
+
+ mvc.perform(get("/exception/{exception_id}", exceptionParam)
+ .contentType(MediaType.APPLICATION_JSON))
+ .andExpect(status().isBadRequest())
+ .andExpect(result -> assertTrue(result.getResolvedException() instanceof BadArgumentsException))
+ .andExpect(result -> assertEquals("bad arguments", result.getResolvedException().getMessage()));
+ }
+
+ @Test
+ public void givenOther_whenGetSpecificException_thenInternalServerError() throws Exception {
+ String exceptionParam = "dummy";
+
+ mvc.perform(get("/exception/{exception_id}", exceptionParam)
+ .contentType(MediaType.APPLICATION_JSON))
+ .andExpect(status().isInternalServerError())
+ .andExpect(result -> assertTrue(result.getResolvedException() instanceof InternalException))
+ .andExpect(result -> assertEquals("internal error", result.getResolvedException().getMessage()));
+ }
+
+ @Test(expected = Exception.class)
+ public void whenGetException_thenInternalServerError() throws Exception {
+ mvc.perform(get("/exception/throw")
+ .contentType(MediaType.APPLICATION_JSON));
+ }
+}
diff --git a/spring-rest-testing/src/test/java/com/baeldung/persistence/PersistenceTestSuite.java b/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/persistence/PersistenceTestSuite.java
similarity index 100%
rename from spring-rest-testing/src/test/java/com/baeldung/persistence/PersistenceTestSuite.java
rename to spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/persistence/PersistenceTestSuite.java
diff --git a/spring-rest-testing/src/test/java/com/baeldung/persistence/service/AbstractServicePersistenceIntegrationTest.java b/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/persistence/service/AbstractServicePersistenceIntegrationTest.java
similarity index 100%
rename from spring-rest-testing/src/test/java/com/baeldung/persistence/service/AbstractServicePersistenceIntegrationTest.java
rename to spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/persistence/service/AbstractServicePersistenceIntegrationTest.java
diff --git a/spring-rest-testing/src/test/java/com/baeldung/persistence/service/FooServicePersistenceIntegrationTest.java b/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/persistence/service/FooServicePersistenceIntegrationTest.java
similarity index 100%
rename from spring-rest-testing/src/test/java/com/baeldung/persistence/service/FooServicePersistenceIntegrationTest.java
rename to spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/persistence/service/FooServicePersistenceIntegrationTest.java
diff --git a/spring-rest-testing/src/test/java/com/baeldung/util/IDUtil.java b/spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/util/IDUtil.java
similarity index 100%
rename from spring-rest-testing/src/test/java/com/baeldung/util/IDUtil.java
rename to spring-web-modules/spring-rest-testing/src/test/java/com/baeldung/util/IDUtil.java
diff --git a/spring-rest-testing/src/test/resources/.gitignore b/spring-web-modules/spring-rest-testing/src/test/resources/.gitignore
similarity index 100%
rename from spring-rest-testing/src/test/resources/.gitignore
rename to spring-web-modules/spring-rest-testing/src/test/resources/.gitignore
diff --git a/spring-web-modules/spring-rest-testing/src/testFile b/spring-web-modules/spring-rest-testing/src/testFile
new file mode 100644
index 0000000000..8b13789179
--- /dev/null
+++ b/spring-web-modules/spring-rest-testing/src/testFile
@@ -0,0 +1 @@
+
diff --git a/spring-resttemplate-2/README.md b/spring-web-modules/spring-resttemplate-2/README.md
similarity index 67%
rename from spring-resttemplate-2/README.md
rename to spring-web-modules/spring-resttemplate-2/README.md
index e1e0ba40b0..a903757bb4 100644
--- a/spring-resttemplate-2/README.md
+++ b/spring-web-modules/spring-resttemplate-2/README.md
@@ -8,3 +8,5 @@ This module contains articles about Spring RestTemplate
- [Proxies With RestTemplate](https://www.baeldung.com/java-resttemplate-proxy)
- [A Custom Media Type for a Spring REST API](https://www.baeldung.com/spring-rest-custom-media-type)
- [RestTemplate Post Request with JSON](https://www.baeldung.com/spring-resttemplate-post-json)
+- [How to Compress Requests Using the Spring RestTemplate](https://www.baeldung.com/spring-resttemplate-compressing-requests)
+- [Get list of JSON objects with Spring RestTemplate](https://www.baeldung.com/spring-resttemplate-json-list)
diff --git a/spring-resttemplate-2/pom.xml b/spring-web-modules/spring-resttemplate-2/pom.xml
similarity index 66%
rename from spring-resttemplate-2/pom.xml
rename to spring-web-modules/spring-resttemplate-2/pom.xml
index b1d6f60c53..04be058638 100644
--- a/spring-resttemplate-2/pom.xml
+++ b/spring-web-modules/spring-resttemplate-2/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ parent-boot-2/pom.xml
@@ -20,7 +20,30 @@
org.springframework.boot
spring-boot-starter-web
+
+
+ org.springframework.boot
+ spring-boot-starter-tomcat
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-jetty
+
+
+
+ org.apache.httpcomponents
+ httpclient
+
+
+
+ commons-io
+ commons-io
+ ${commons-io.version}
+
+
org.springframework.boot
spring-boot-starter-test
@@ -48,16 +71,16 @@
ch.qos.logback
logback-classic
-
+
-
+
-
- org.springframework.boot
- spring-boot-maven-plugin
-
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
-
+
\ No newline at end of file
diff --git a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/CompressingClientHttpRequestInterceptor.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/CompressingClientHttpRequestInterceptor.java
similarity index 96%
rename from spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/CompressingClientHttpRequestInterceptor.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/CompressingClientHttpRequestInterceptor.java
index 78b77256af..e880e8f915 100644
--- a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/CompressingClientHttpRequestInterceptor.java
+++ b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/CompressingClientHttpRequestInterceptor.java
@@ -1,4 +1,4 @@
-package com.baeldung.spring.rest.compress;
+package com.baeldung.compress;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
diff --git a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/GzipUtils.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/GzipUtils.java
similarity index 83%
rename from spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/GzipUtils.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/GzipUtils.java
index b9731535b2..50c565d92c 100644
--- a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/GzipUtils.java
+++ b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/GzipUtils.java
@@ -1,14 +1,14 @@
-package com.baeldung.spring.rest.compress;
-
-import org.apache.commons.codec.Charsets;
-import org.apache.commons.io.IOUtils;
+package com.baeldung.compress;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
+import java.nio.charset.StandardCharsets;
import java.util.zip.GZIPInputStream;
import java.util.zip.GZIPOutputStream;
+import org.apache.commons.io.IOUtils;
+
public class GzipUtils {
/**
@@ -19,7 +19,7 @@ public class GzipUtils {
* @throws Exception
*/
public static byte[] compress(String text) throws Exception {
- return GzipUtils.compress(text.getBytes(Charsets.UTF_8));
+ return GzipUtils.compress(text.getBytes(StandardCharsets.UTF_8));
}
/**
@@ -46,7 +46,7 @@ public class GzipUtils {
*/
public static String decompress(byte[] body) throws IOException {
try (GZIPInputStream gzipInputStream = new GZIPInputStream(new ByteArrayInputStream(body))) {
- return IOUtils.toString(gzipInputStream, Charsets.UTF_8);
+ return IOUtils.toString(gzipInputStream, StandardCharsets.UTF_8);
}
}
}
diff --git a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/JettyWebServerConfiguration.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/JettyWebServerConfiguration.java
similarity index 96%
rename from spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/JettyWebServerConfiguration.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/JettyWebServerConfiguration.java
index 8de8e5b523..3ac8c31ab3 100644
--- a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/JettyWebServerConfiguration.java
+++ b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/JettyWebServerConfiguration.java
@@ -1,4 +1,4 @@
-package com.baeldung.spring.rest.compress;
+package com.baeldung.compress;
import org.eclipse.jetty.server.handler.HandlerCollection;
import org.eclipse.jetty.server.handler.gzip.GzipHandler;
diff --git a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/Message.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/Message.java
similarity index 92%
rename from spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/Message.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/Message.java
index 24272a4fca..f43d06c2fc 100644
--- a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/Message.java
+++ b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/Message.java
@@ -1,4 +1,4 @@
-package com.baeldung.spring.rest.compress;
+package com.baeldung.compress;
public class Message {
diff --git a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/MessageController.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/MessageController.java
similarity index 96%
rename from spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/MessageController.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/MessageController.java
index 2fc2ca8272..ec574d9dec 100644
--- a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/MessageController.java
+++ b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/MessageController.java
@@ -1,4 +1,4 @@
-package com.baeldung.spring.rest.compress;
+package com.baeldung.compress;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
diff --git a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/RestTemplateConfiguration.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/RestTemplateConfiguration.java
similarity index 92%
rename from spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/RestTemplateConfiguration.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/RestTemplateConfiguration.java
index c1e3c89ae9..12b1e4249e 100644
--- a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/RestTemplateConfiguration.java
+++ b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/RestTemplateConfiguration.java
@@ -1,4 +1,4 @@
-package com.baeldung.spring.rest.compress;
+package com.baeldung.compress;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
diff --git a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/SpringCompressRequestApplication.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/SpringCompressRequestApplication.java
similarity index 90%
rename from spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/SpringCompressRequestApplication.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/SpringCompressRequestApplication.java
index 9b1b71979d..9ff88ab257 100644
--- a/spring-rest-compress/src/main/java/com/baeldung/spring/rest/compress/SpringCompressRequestApplication.java
+++ b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/compress/SpringCompressRequestApplication.java
@@ -1,4 +1,4 @@
-package com.baeldung.spring.rest.compress;
+package com.baeldung.compress;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
diff --git a/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/RestTemplateConfigurationApplication.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/RestTemplateConfigurationApplication.java
similarity index 100%
rename from spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/RestTemplateConfigurationApplication.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/RestTemplateConfigurationApplication.java
diff --git a/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/consumer/service/UserConsumerService.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/consumer/service/UserConsumerService.java
new file mode 100644
index 0000000000..751e234e8b
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/consumer/service/UserConsumerService.java
@@ -0,0 +1,16 @@
+package com.baeldung.resttemplate.json.consumer.service;
+
+import java.util.List;
+
+public interface UserConsumerService {
+
+ List processUserDataFromObjectArray();
+
+ List processUserDataFromUserArray();
+
+ List processUserDataFromUserList();
+
+ List processNestedUserDataFromUserArray();
+
+ List processNestedUserDataFromUserList();
+}
diff --git a/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/consumer/service/UserConsumerServiceImpl.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/consumer/service/UserConsumerServiceImpl.java
new file mode 100644
index 0000000000..dc1566d971
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/consumer/service/UserConsumerServiceImpl.java
@@ -0,0 +1,90 @@
+package com.baeldung.resttemplate.json.consumer.service;
+
+import com.baeldung.resttemplate.json.model.Address;
+import com.baeldung.resttemplate.json.model.User;
+import com.fasterxml.jackson.databind.ObjectMapper;
+import org.springframework.core.ParameterizedTypeReference;
+import org.springframework.http.HttpMethod;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.MediaType;
+import org.springframework.http.ResponseEntity;
+import org.springframework.web.client.RestTemplate;
+
+import java.util.Arrays;
+import java.util.List;
+import java.util.stream.Collectors;
+
+public class UserConsumerServiceImpl implements UserConsumerService {
+
+ private static final String BASE_URL = "http://localhost:8080/users";
+ private final RestTemplate restTemplate;
+ private static final ObjectMapper mapper = new ObjectMapper();
+
+ public UserConsumerServiceImpl(RestTemplate restTemplate) {
+ this.restTemplate = restTemplate;
+ }
+
+ @Override
+ public List processUserDataFromObjectArray() {
+ ResponseEntity responseEntity = restTemplate.getForEntity(BASE_URL, Object[].class);
+ Object[] objects = responseEntity.getBody();
+ return Arrays.stream(objects)
+ .map(object -> mapper.convertValue(object, User.class))
+ .map(User::getName)
+ .collect(Collectors.toList());
+ }
+
+ @Override
+ public List processUserDataFromUserArray() {
+ ResponseEntity responseEntity = restTemplate.getForEntity(BASE_URL, User[].class);
+ User[] userArray = responseEntity.getBody();
+ return Arrays.stream(userArray)
+ .map(User::getName)
+ .collect(Collectors.toList());
+ }
+
+ @Override
+ public List processUserDataFromUserList() {
+ ResponseEntity> responseEntity =
+ restTemplate.exchange(
+ BASE_URL,
+ HttpMethod.GET,
+ null,
+ new ParameterizedTypeReference>() {}
+ );
+ List users = responseEntity.getBody();
+ return users.stream()
+ .map(User::getName)
+ .collect(Collectors.toList());
+ }
+
+ @Override
+ public List processNestedUserDataFromUserArray() {
+ ResponseEntity responseEntity = restTemplate.getForEntity(BASE_URL, User[].class);
+ User[] userArray = responseEntity.getBody();
+ //we can get more info if we need :
+ MediaType contentType = responseEntity.getHeaders().getContentType();
+ HttpStatus statusCode = responseEntity.getStatusCode();
+
+ return Arrays.stream(userArray)
+ .flatMap(user -> user.getAddressList().stream())
+ .map(Address::getPostCode)
+ .collect(Collectors.toList());
+ }
+
+ @Override
+ public List processNestedUserDataFromUserList() {
+ ResponseEntity> responseEntity =
+ restTemplate.exchange(
+ BASE_URL,
+ HttpMethod.GET,
+ null,
+ new ParameterizedTypeReference>() {}
+ );
+ List userList = responseEntity.getBody();
+ return userList.stream()
+ .flatMap(user -> user.getAddressList().stream())
+ .map(Address::getPostCode)
+ .collect(Collectors.toList());
+ }
+}
\ No newline at end of file
diff --git a/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/model/Address.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/model/Address.java
new file mode 100644
index 0000000000..f41ff4d8ea
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/model/Address.java
@@ -0,0 +1,29 @@
+package com.baeldung.resttemplate.json.model;
+
+import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+
+@JsonInclude(JsonInclude.Include.NON_NULL)
+public class Address {
+ private final String addressLine1;
+ private final String addressLine2;
+ private final String town;
+ private final String postCode;
+
+ @JsonCreator
+ public Address(
+ @JsonProperty("addressLine1") String addressLine1,
+ @JsonProperty("addressLine2") String addressLine2,
+ @JsonProperty("town") String town,
+ @JsonProperty("postCode") String postCode) {
+ this.addressLine1 = addressLine1;
+ this.addressLine2 = addressLine2;
+ this.town = town;
+ this.postCode = postCode;
+ }
+ public String getPostCode() {
+ return postCode;
+ }
+}
diff --git a/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/model/User.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/model/User.java
new file mode 100644
index 0000000000..8e02ef7787
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/json/model/User.java
@@ -0,0 +1,30 @@
+package com.baeldung.resttemplate.json.model;
+
+import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonInclude;
+import com.fasterxml.jackson.annotation.JsonProperty;
+
+import java.util.List;
+
+@JsonInclude(JsonInclude.Include.NON_NULL)
+public class User {
+ private final int id;
+ private final String name;
+ private final List addressList;
+
+ @JsonCreator
+ public User(
+ @JsonProperty("id") int id,
+ @JsonProperty("name") String name,
+ @JsonProperty("addressList") List addressList) {
+ this.id = id;
+ this.name = name;
+ this.addressList = addressList;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public List getAddressList() { return addressList; }
+}
diff --git a/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/logging/web/controller/PersonController.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/logging/web/controller/PersonController.java
similarity index 100%
rename from spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/logging/web/controller/PersonController.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/logging/web/controller/PersonController.java
diff --git a/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/controller/PersonAPI.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/controller/PersonAPI.java
similarity index 100%
rename from spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/controller/PersonAPI.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/controller/PersonAPI.java
diff --git a/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/dto/Person.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/dto/Person.java
similarity index 100%
rename from spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/dto/Person.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/dto/Person.java
diff --git a/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/service/PersonService.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/service/PersonService.java
similarity index 100%
rename from spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/service/PersonService.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/service/PersonService.java
diff --git a/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/service/PersonServiceImpl.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/service/PersonServiceImpl.java
similarity index 100%
rename from spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/service/PersonServiceImpl.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/resttemplate/web/service/PersonServiceImpl.java
diff --git a/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/config/WebConfig.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/config/WebConfig.java
similarity index 100%
rename from spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/config/WebConfig.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/config/WebConfig.java
diff --git a/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/controller/mediatypes/CustomMediaTypeController.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/controller/mediatypes/CustomMediaTypeController.java
similarity index 100%
rename from spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/controller/mediatypes/CustomMediaTypeController.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/controller/mediatypes/CustomMediaTypeController.java
diff --git a/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/dto/BaeldungItem.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/dto/BaeldungItem.java
similarity index 100%
rename from spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/dto/BaeldungItem.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/dto/BaeldungItem.java
diff --git a/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/dto/BaeldungItemV2.java b/spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/dto/BaeldungItemV2.java
similarity index 100%
rename from spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/dto/BaeldungItemV2.java
rename to spring-web-modules/spring-resttemplate-2/src/main/java/com/baeldung/sampleapp/web/dto/BaeldungItemV2.java
diff --git a/spring-resttemplate-2/src/main/resources/application.properties b/spring-web-modules/spring-resttemplate-2/src/main/resources/application.properties
similarity index 100%
rename from spring-resttemplate-2/src/main/resources/application.properties
rename to spring-web-modules/spring-resttemplate-2/src/main/resources/application.properties
diff --git a/spring-rest-compress/src/test/java/com/baeldung/spring/rest/compress/GzipUtilsUnitTest.java b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/compress/GzipUtilsUnitTest.java
similarity index 92%
rename from spring-rest-compress/src/test/java/com/baeldung/spring/rest/compress/GzipUtilsUnitTest.java
rename to spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/compress/GzipUtilsUnitTest.java
index 431758d358..10c2eeb748 100644
--- a/spring-rest-compress/src/test/java/com/baeldung/spring/rest/compress/GzipUtilsUnitTest.java
+++ b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/compress/GzipUtilsUnitTest.java
@@ -1,4 +1,4 @@
-package com.baeldung.spring.rest.compress;
+package com.baeldung.compress;
import org.junit.Test;
diff --git a/spring-rest-compress/src/test/java/com/baeldung/spring/rest/compress/MessageControllerUnitTest.java b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/compress/MessageControllerUnitTest.java
similarity index 97%
rename from spring-rest-compress/src/test/java/com/baeldung/spring/rest/compress/MessageControllerUnitTest.java
rename to spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/compress/MessageControllerUnitTest.java
index 50b2b7ccd7..643e3f6881 100644
--- a/spring-rest-compress/src/test/java/com/baeldung/spring/rest/compress/MessageControllerUnitTest.java
+++ b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/compress/MessageControllerUnitTest.java
@@ -1,4 +1,4 @@
-package com.baeldung.spring.rest.compress;
+package com.baeldung.compress;
import org.junit.Test;
import org.junit.runner.RunWith;
diff --git a/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/json/consumer/service/UserConsumerServiceImplUnitTest.java b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/json/consumer/service/UserConsumerServiceImplUnitTest.java
new file mode 100644
index 0000000000..4cc58e30f5
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/json/consumer/service/UserConsumerServiceImplUnitTest.java
@@ -0,0 +1,127 @@
+package com.baeldung.resttemplate.json.consumer.service;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.http.HttpMethod;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.MediaType;
+import org.springframework.test.web.client.ExpectedCount;
+import org.springframework.test.web.client.MockRestServiceServer;
+import org.springframework.web.client.RestTemplate;
+
+import java.util.Arrays;
+import java.util.List;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.springframework.test.web.client.match.MockRestRequestMatchers.method;
+import static org.springframework.test.web.client.match.MockRestRequestMatchers.requestTo;
+import static org.springframework.test.web.client.response.MockRestResponseCreators.withStatus;
+
+@SpringBootTest
+public class UserConsumerServiceImplUnitTest {
+
+ private static String USER_JSON = "[{\"id\":1,\"name\":\"user1\",\"addressList\":[{\"addressLine1\":\"address1_addressLine1\",\"addressLine2\":\"address1_addressLine2\",\"town\":\"address1_town\",\"postCode\":\"user1_address1_postCode\"}," +
+ "{\"addressLine1\":\"address2_addressLine1\",\"addressLine2\":\"address2_addressLine2\",\"town\":\"address2_town\",\"postCode\":\"user1_address2_postCode\"}]}," +
+ "{\"id\":2,\"name\":\"user2\",\"addressList\":[{\"addressLine1\":\"address1_addressLine1\",\"addressLine2\":\"address1_addressLine2\",\"town\":\"address1_town\",\"postCode\":\"user2_address1_postCode\"}]}]";
+
+ private MockRestServiceServer mockServer;
+ private final RestTemplate restTemplate = new RestTemplate();
+ private final UserConsumerService tested = new UserConsumerServiceImpl(restTemplate);
+
+ @Before
+ public void init() {
+ mockServer = MockRestServiceServer.createServer(restTemplate);
+ }
+
+ @Test
+ public void whenProcessUserDataAsObjects_thenOK() {
+ String url = "http://localhost:8080/users";
+ List expected = Arrays.asList("user1", "user2");
+
+ mockServer.expect(ExpectedCount.once(),
+ requestTo(url))
+ .andExpect(method(HttpMethod.GET))
+ .andRespond(withStatus(HttpStatus.OK)
+ .contentType(MediaType.APPLICATION_JSON)
+ .body(USER_JSON));
+
+ List actual = tested.processUserDataFromObjectArray();
+
+ mockServer.verify();
+ assertThat(actual).containsExactly(expected.get(0), expected.get(1));
+ }
+
+ @Test
+ public void whenProcessUserDataAsArray_thenOK() {
+ String url = "http://localhost:8080/users";
+ List expected = Arrays.asList("user1", "user2");
+
+ mockServer.expect(ExpectedCount.once(),
+ requestTo(url))
+ .andExpect(method(HttpMethod.GET))
+ .andRespond(withStatus(HttpStatus.OK)
+ .contentType(MediaType.APPLICATION_JSON)
+ .body(USER_JSON));
+
+ List actual = tested.processUserDataFromUserArray();
+
+ mockServer.verify();
+ assertThat(actual).containsExactly(expected.get(0), expected.get(1));
+ }
+
+ @Test
+ public void whenProcessUserDataAsList_thenOK() {
+ String url = "http://localhost:8080/users";
+ List expected = Arrays.asList("user1", "user2");
+
+ mockServer.expect(ExpectedCount.once(),
+ requestTo(url))
+ .andExpect(method(HttpMethod.GET))
+ .andRespond(withStatus(HttpStatus.OK)
+ .contentType(MediaType.APPLICATION_JSON)
+ .body(USER_JSON));
+
+ List actual = tested.processUserDataFromUserList();
+
+ mockServer.verify();
+ assertThat(actual).containsExactly(expected.get(0), expected.get(1));
+ }
+
+
+ @Test
+ public void whenProcessNestedUserDataFromArray_thenOK() {
+ String url = "http://localhost:8080/users";
+ List expected = Arrays.asList("user1_address1_postCode", "user1_address2_postCode", "user2_address1_postCode");
+
+ mockServer.expect(ExpectedCount.once(),
+ requestTo(url))
+ .andExpect(method(HttpMethod.GET))
+ .andRespond(withStatus(HttpStatus.OK)
+ .contentType(MediaType.APPLICATION_JSON)
+ .body(USER_JSON));
+
+ List actual = tested.processNestedUserDataFromUserArray();
+
+ mockServer.verify();
+ assertThat(actual).containsExactly(expected.get(0), expected.get(1), expected.get(2));
+ }
+
+ @Test
+ public void whenProcessNestedUserDataFromList_thenOK() {
+ String url = "http://localhost:8080/users";
+ List expected = Arrays.asList("user1_address1_postCode", "user1_address2_postCode", "user2_address1_postCode");
+
+ mockServer.expect(ExpectedCount.once(),
+ requestTo(url))
+ .andExpect(method(HttpMethod.GET))
+ .andRespond(withStatus(HttpStatus.OK)
+ .contentType(MediaType.APPLICATION_JSON)
+ .body(USER_JSON));
+
+ List actual = tested.processNestedUserDataFromUserList();
+
+ mockServer.verify();
+ assertThat(actual).containsExactly(expected.get(0), expected.get(1), expected.get(2));
+ }
+}
\ No newline at end of file
diff --git a/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/logging/LoggingInterceptor.java b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/logging/LoggingInterceptor.java
similarity index 100%
rename from spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/logging/LoggingInterceptor.java
rename to spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/logging/LoggingInterceptor.java
diff --git a/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/logging/RestTemplateLoggingLiveTest.java b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/logging/RestTemplateLoggingLiveTest.java
similarity index 100%
rename from spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/logging/RestTemplateLoggingLiveTest.java
rename to spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/logging/RestTemplateLoggingLiveTest.java
diff --git a/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/postjson/PersonAPILiveTest.java b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/postjson/PersonAPILiveTest.java
similarity index 100%
rename from spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/postjson/PersonAPILiveTest.java
rename to spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/postjson/PersonAPILiveTest.java
diff --git a/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/proxy/RequestFactoryLiveTest.java b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/proxy/RequestFactoryLiveTest.java
similarity index 100%
rename from spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/proxy/RequestFactoryLiveTest.java
rename to spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/proxy/RequestFactoryLiveTest.java
diff --git a/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/proxy/RestTemplateCustomizerLiveTest.java b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/proxy/RestTemplateCustomizerLiveTest.java
similarity index 100%
rename from spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/proxy/RestTemplateCustomizerLiveTest.java
rename to spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/resttemplate/proxy/RestTemplateCustomizerLiveTest.java
diff --git a/spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/CustomMediaTypeControllerIntegrationTest.java b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/CustomMediaTypeControllerIntegrationTest.java
similarity index 100%
rename from spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/CustomMediaTypeControllerIntegrationTest.java
rename to spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/CustomMediaTypeControllerIntegrationTest.java
diff --git a/spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/CustomMediaTypeControllerLiveTest.java b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/CustomMediaTypeControllerLiveTest.java
similarity index 100%
rename from spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/CustomMediaTypeControllerLiveTest.java
rename to spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/CustomMediaTypeControllerLiveTest.java
diff --git a/spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/TestConfig.java b/spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/TestConfig.java
similarity index 100%
rename from spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/TestConfig.java
rename to spring-web-modules/spring-resttemplate-2/src/test/java/com/baeldung/web/controller/mediatypes/TestConfig.java
diff --git a/spring-resttemplate-2/src/test/resources/application.properties b/spring-web-modules/spring-resttemplate-2/src/test/resources/application.properties
similarity index 100%
rename from spring-resttemplate-2/src/test/resources/application.properties
rename to spring-web-modules/spring-resttemplate-2/src/test/resources/application.properties
diff --git a/spring-web-modules/spring-resttemplate-3/.gitignore b/spring-web-modules/spring-resttemplate-3/.gitignore
new file mode 100644
index 0000000000..8f98975dc9
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate-3/.gitignore
@@ -0,0 +1,12 @@
+*.class
+
+#folders#
+/target
+/data
+/src/main/webapp/WEB-INF/classes
+*/META-INF/*
+
+# Packaged files #
+*.jar
+*.war
+*.ear
\ No newline at end of file
diff --git a/spring-web-modules/spring-resttemplate-3/README.md b/spring-web-modules/spring-resttemplate-3/README.md
new file mode 100644
index 0000000000..6a00d226db
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate-3/README.md
@@ -0,0 +1,11 @@
+## Spring RestTemplate
+
+This module contains articles about Spring RestTemplate
+
+### The Course
+The "REST With Spring" Classes: http://bit.ly/restwithspring
+
+### Relevant Articles:
+- [Uploading MultipartFile with Spring RestTemplate](https://www.baeldung.com/spring-rest-template-multipart-upload)
+- [Get and Post Lists of Objects with RestTemplate](https://www.baeldung.com/spring-rest-template-list)
+- [Download a Large File Through a Spring RestTemplate](https://www.baeldung.com/spring-resttemplate-download-large-file)
\ No newline at end of file
diff --git a/spring-web-modules/spring-resttemplate-3/pom.xml b/spring-web-modules/spring-resttemplate-3/pom.xml
new file mode 100644
index 0000000000..b1c26e002f
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate-3/pom.xml
@@ -0,0 +1,29 @@
+
+
+ 4.0.0
+ spring-resttemplate-3
+ 0.1-SNAPSHOT
+ spring-resttemplate-3
+ war
+
+
+ com.baeldung
+ parent-boot-2
+ 0.0.1-SNAPSHOT
+ ../../parent-boot-2
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+
+
+
+
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/EmployeeApplication.java b/spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/EmployeeApplication.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/EmployeeApplication.java
rename to spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/EmployeeApplication.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/client/EmployeeClient.java b/spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/client/EmployeeClient.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/client/EmployeeClient.java
rename to spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/client/EmployeeClient.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/controller/EmployeeResource.java b/spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/controller/EmployeeResource.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/controller/EmployeeResource.java
rename to spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/controller/EmployeeResource.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/dto/Employee.java b/spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/dto/Employee.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/dto/Employee.java
rename to spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/dto/Employee.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/dto/EmployeeList.java b/spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/dto/EmployeeList.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/dto/EmployeeList.java
rename to spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/dto/EmployeeList.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/service/EmployeeService.java b/spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/service/EmployeeService.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/lists/service/EmployeeService.java
rename to spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/resttemplate/lists/service/EmployeeService.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/web/upload/app/UploadApplication.java b/spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/web/upload/app/UploadApplication.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/web/upload/app/UploadApplication.java
rename to spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/web/upload/app/UploadApplication.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/web/upload/client/MultipartFileUploadClient.java b/spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/web/upload/client/MultipartFileUploadClient.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/web/upload/client/MultipartFileUploadClient.java
rename to spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/web/upload/client/MultipartFileUploadClient.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/web/upload/controller/FileServerResource.java b/spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/web/upload/controller/FileServerResource.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/web/upload/controller/FileServerResource.java
rename to spring-web-modules/spring-resttemplate-3/src/main/java/com/baeldung/web/upload/controller/FileServerResource.java
diff --git a/spring-resttemplate/src/main/resources/application.properties b/spring-web-modules/spring-resttemplate-3/src/main/resources/application.properties
similarity index 100%
rename from spring-resttemplate/src/main/resources/application.properties
rename to spring-web-modules/spring-resttemplate-3/src/main/resources/application.properties
diff --git a/spring-resttemplate/src/main/resources/logback.xml b/spring-web-modules/spring-resttemplate-3/src/main/resources/logback.xml
similarity index 100%
rename from spring-resttemplate/src/main/resources/logback.xml
rename to spring-web-modules/spring-resttemplate-3/src/main/resources/logback.xml
diff --git a/spring-kafka/src/test/java/com/baeldung/SpringContextLiveTest.java b/spring-web-modules/spring-resttemplate-3/src/test/java/com/baeldung/SpringContextTest.java
similarity index 69%
rename from spring-kafka/src/test/java/com/baeldung/SpringContextLiveTest.java
rename to spring-web-modules/spring-resttemplate-3/src/test/java/com/baeldung/SpringContextTest.java
index 60262df9d4..26972a0aca 100644
--- a/spring-kafka/src/test/java/com/baeldung/SpringContextLiveTest.java
+++ b/spring-web-modules/spring-resttemplate-3/src/test/java/com/baeldung/SpringContextTest.java
@@ -5,11 +5,9 @@ import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
-import com.baeldung.spring.kafka.KafkaApplication;
-
@RunWith(SpringRunner.class)
-@SpringBootTest(classes = KafkaApplication.class)
-public class SpringContextLiveTest {
+@SpringBootTest(classes = { com.baeldung.web.upload.app.UploadApplication.class, })
+public class SpringContextTest {
@Test
public void whenSpringContextIsBootstrapped_thenNoExceptions() {
diff --git a/spring-resttemplate/src/test/java/com/baeldung/resttemplate/LargeFileDownloadIntegrationTest.java b/spring-web-modules/spring-resttemplate-3/src/test/java/com/baeldung/largefile/LargeFileDownloadIntegrationTest.java
similarity index 94%
rename from spring-resttemplate/src/test/java/com/baeldung/resttemplate/LargeFileDownloadIntegrationTest.java
rename to spring-web-modules/spring-resttemplate-3/src/test/java/com/baeldung/largefile/LargeFileDownloadIntegrationTest.java
index eb5d01d06f..d8fc58319f 100644
--- a/spring-resttemplate/src/test/java/com/baeldung/resttemplate/LargeFileDownloadIntegrationTest.java
+++ b/spring-web-modules/spring-resttemplate-3/src/test/java/com/baeldung/largefile/LargeFileDownloadIntegrationTest.java
@@ -1,21 +1,17 @@
-package com.baeldung.resttemplate;
+package com.baeldung.largefile;
+
+import java.io.File;
+import java.io.FileOutputStream;
import org.assertj.core.api.Assertions;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
-import org.springframework.core.io.FileSystemResource;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
-import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.util.StreamUtils;
import org.springframework.web.client.RestTemplate;
-import java.io.File;
-import java.io.FileOutputStream;
-import java.util.ArrayList;
-import java.util.List;
-
public class LargeFileDownloadIntegrationTest {
static String FILE_URL = "http://ovh.net/files/1Mio.dat";
diff --git a/spring-resttemplate/.gitignore b/spring-web-modules/spring-resttemplate-3/src/test/resources/.gitignore
similarity index 100%
rename from spring-resttemplate/.gitignore
rename to spring-web-modules/spring-resttemplate-3/src/test/resources/.gitignore
diff --git a/spring-resttemplate/src/test/resources/logback-test.xml b/spring-web-modules/spring-resttemplate-3/src/test/resources/logback-test.xml
similarity index 100%
rename from spring-resttemplate/src/test/resources/logback-test.xml
rename to spring-web-modules/spring-resttemplate-3/src/test/resources/logback-test.xml
diff --git a/spring-resttemplate/src/test/resources/.gitignore b/spring-web-modules/spring-resttemplate/.gitignore
similarity index 100%
rename from spring-resttemplate/src/test/resources/.gitignore
rename to spring-web-modules/spring-resttemplate/.gitignore
diff --git a/spring-resttemplate/README.md b/spring-web-modules/spring-resttemplate/README.md
similarity index 73%
rename from spring-resttemplate/README.md
rename to spring-web-modules/spring-resttemplate/README.md
index 952f35e90b..e8c240d86b 100644
--- a/spring-resttemplate/README.md
+++ b/spring-web-modules/spring-resttemplate/README.md
@@ -11,10 +11,7 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
- [Spring RestTemplate Error Handling](https://www.baeldung.com/spring-rest-template-error-handling)
- [Configure a RestTemplate with RestTemplateBuilder](https://www.baeldung.com/spring-rest-template-builder)
- [Mocking a RestTemplate in Spring](https://www.baeldung.com/spring-mock-rest-template)
-- [Download a Large File Through a Spring RestTemplate](https://www.baeldung.com/spring-resttemplate-download-large-file)
- [Using the Spring RestTemplate Interceptor](https://www.baeldung.com/spring-rest-template-interceptor)
-- [Uploading MultipartFile with Spring RestTemplate](https://www.baeldung.com/spring-rest-template-multipart-upload)
-- [Get and Post Lists of Objects with RestTemplate](https://www.baeldung.com/spring-rest-template-list)
- [HTTP PUT vs HTTP PATCH in a REST API](https://www.baeldung.com/http-put-patch-difference-spring)
### NOTE:
diff --git a/spring-resttemplate/pom.xml b/spring-web-modules/spring-resttemplate/pom.xml
similarity index 99%
rename from spring-resttemplate/pom.xml
rename to spring-web-modules/spring-resttemplate/pom.xml
index 05660f5210..c0f266fd62 100644
--- a/spring-resttemplate/pom.xml
+++ b/spring-web-modules/spring-resttemplate/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-resttemplate/src/main/java/com/baeldung/responseheaders/ResponseHeadersApplication.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/responseheaders/ResponseHeadersApplication.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/responseheaders/ResponseHeadersApplication.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/responseheaders/ResponseHeadersApplication.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/responseheaders/controllers/FilterResponseHeaderController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/responseheaders/controllers/FilterResponseHeaderController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/responseheaders/controllers/FilterResponseHeaderController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/responseheaders/controllers/FilterResponseHeaderController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/responseheaders/controllers/ResponseHeaderController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/responseheaders/controllers/ResponseHeaderController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/responseheaders/controllers/ResponseHeaderController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/responseheaders/controllers/ResponseHeaderController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/responseheaders/filter/AddResponseHeaderFilter.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/responseheaders/filter/AddResponseHeaderFilter.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/responseheaders/filter/AddResponseHeaderFilter.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/responseheaders/filter/AddResponseHeaderFilter.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/RestTemplateConfigurationApplication.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/RestTemplateConfigurationApplication.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/RestTemplateConfigurationApplication.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/RestTemplateConfigurationApplication.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/CustomClientHttpRequestInterceptor.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/CustomClientHttpRequestInterceptor.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/CustomClientHttpRequestInterceptor.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/CustomClientHttpRequestInterceptor.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/CustomRestTemplateCustomizer.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/CustomRestTemplateCustomizer.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/CustomRestTemplateCustomizer.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/CustomRestTemplateCustomizer.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/FooController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/FooController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/FooController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/FooController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/HelloController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/HelloController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/HelloController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/HelloController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/SpringConfig.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/SpringConfig.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/SpringConfig.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/configuration/SpringConfig.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/dto/Foo.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/dto/Foo.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/dto/Foo.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/dto/Foo.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/exception/NotFoundException.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/exception/NotFoundException.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/exception/NotFoundException.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/exception/NotFoundException.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/handler/RestTemplateResponseErrorHandler.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/handler/RestTemplateResponseErrorHandler.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/handler/RestTemplateResponseErrorHandler.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/handler/RestTemplateResponseErrorHandler.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/model/Bar.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/model/Bar.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/model/Bar.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/model/Bar.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/model/Employee.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/model/Employee.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/model/Employee.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/model/Employee.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/service/BarConsumerService.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/service/BarConsumerService.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/service/BarConsumerService.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/service/BarConsumerService.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/service/EmployeeService.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/service/EmployeeService.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/service/EmployeeService.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/resttemplate/web/service/EmployeeService.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/MainApplication.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/MainApplication.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/MainApplication.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/MainApplication.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/RestClientConfig.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/RestClientConfig.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/RestClientConfig.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/RestClientConfig.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/WebConfig.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/WebConfig.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/WebConfig.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/config/WebConfig.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/interceptors/RestTemplateHeaderModifierInterceptor.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/interceptors/RestTemplateHeaderModifierInterceptor.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/interceptors/RestTemplateHeaderModifierInterceptor.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/interceptors/RestTemplateHeaderModifierInterceptor.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/repository/HeavyResourceRepository.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/repository/HeavyResourceRepository.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/repository/HeavyResourceRepository.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/repository/HeavyResourceRepository.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/BarMappingExamplesController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/BarMappingExamplesController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/BarMappingExamplesController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/BarMappingExamplesController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/CompanyController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/CompanyController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/CompanyController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/CompanyController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/DeferredResultController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/DeferredResultController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/DeferredResultController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/DeferredResultController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/HeavyResourceController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/HeavyResourceController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/HeavyResourceController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/HeavyResourceController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/ItemController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/ItemController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/ItemController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/ItemController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/MyFooController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/MyFooController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/MyFooController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/MyFooController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/PactController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/PactController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/PactController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/PactController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/SimplePostController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/SimplePostController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/SimplePostController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/SimplePostController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/redirect/RedirectController.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/redirect/RedirectController.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/redirect/RedirectController.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/controller/redirect/RedirectController.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Company.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Company.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Company.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Company.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Foo.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Foo.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Foo.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Foo.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResource.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResource.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResource.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResource.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResourceAddressOnly.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResourceAddressOnly.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResourceAddressOnly.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResourceAddressOnly.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResourceAddressPartialUpdate.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResourceAddressPartialUpdate.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResourceAddressPartialUpdate.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/HeavyResourceAddressPartialUpdate.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Item.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Item.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Item.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Item.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/ItemManager.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/ItemManager.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/ItemManager.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/ItemManager.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/PactDto.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/PactDto.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/PactDto.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/PactDto.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Views.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Views.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Views.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/dto/Views.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/exception/ResourceNotFoundException.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/exception/ResourceNotFoundException.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/exception/ResourceNotFoundException.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/sampleapp/web/exception/ResourceNotFoundException.java
diff --git a/spring-resttemplate/src/main/java/com/baeldung/transfer/LoginForm.java b/spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/transfer/LoginForm.java
similarity index 100%
rename from spring-resttemplate/src/main/java/com/baeldung/transfer/LoginForm.java
rename to spring-web-modules/spring-resttemplate/src/main/java/com/baeldung/transfer/LoginForm.java
diff --git a/spring-web-modules/spring-resttemplate/src/main/resources/application.properties b/spring-web-modules/spring-resttemplate/src/main/resources/application.properties
new file mode 100644
index 0000000000..1a26e3ad99
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate/src/main/resources/application.properties
@@ -0,0 +1,2 @@
+server.port=8082
+server.servlet.context-path=/spring-rest
\ No newline at end of file
diff --git a/spring-web-modules/spring-resttemplate/src/main/resources/logback.xml b/spring-web-modules/spring-resttemplate/src/main/resources/logback.xml
new file mode 100644
index 0000000000..9f48d36486
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate/src/main/resources/logback.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-resttemplate/src/test/java/com/baeldung/SpringContextTest.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/SpringContextTest.java
similarity index 75%
rename from spring-resttemplate/src/test/java/com/baeldung/SpringContextTest.java
rename to spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/SpringContextTest.java
index 43901cf37f..dc176f5322 100644
--- a/spring-resttemplate/src/test/java/com/baeldung/SpringContextTest.java
+++ b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/SpringContextTest.java
@@ -8,12 +8,10 @@ import org.springframework.test.context.junit4.SpringRunner;
import com.baeldung.responseheaders.ResponseHeadersApplication;
@RunWith(SpringRunner.class)
-@SpringBootTest(classes = { ResponseHeadersApplication.class,
- com.baeldung.web.upload.app.UploadApplication.class,
- })
+@SpringBootTest(classes = { ResponseHeadersApplication.class })
public class SpringContextTest {
@Test
- public void whenSpringContextIsBootstrapped_thenNoExceptions() {
+ public void whenSpringContextIsBootstrapped_thenNoExceptions() {
}
}
diff --git a/spring-resttemplate/src/test/java/com/baeldung/SpringTestConfig.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/SpringTestConfig.java
similarity index 100%
rename from spring-resttemplate/src/test/java/com/baeldung/SpringTestConfig.java
rename to spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/SpringTestConfig.java
diff --git a/spring-resttemplate/src/test/java/com/baeldung/client/Consts.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/client/Consts.java
similarity index 100%
rename from spring-resttemplate/src/test/java/com/baeldung/client/Consts.java
rename to spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/client/Consts.java
diff --git a/spring-resttemplate/src/test/java/com/baeldung/client/TestRestTemplateBasicLiveTest.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/client/TestRestTemplateBasicLiveTest.java
similarity index 100%
rename from spring-resttemplate/src/test/java/com/baeldung/client/TestRestTemplateBasicLiveTest.java
rename to spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/client/TestRestTemplateBasicLiveTest.java
diff --git a/spring-resttemplate/src/test/java/com/baeldung/pact/PactProviderLiveTest.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/pact/PactProviderLiveTest.java
similarity index 100%
rename from spring-resttemplate/src/test/java/com/baeldung/pact/PactProviderLiveTest.java
rename to spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/pact/PactProviderLiveTest.java
diff --git a/spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateBasicLiveTest.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateBasicLiveTest.java
similarity index 100%
rename from spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateBasicLiveTest.java
rename to spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateBasicLiveTest.java
diff --git a/spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateLiveTest.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateLiveTest.java
similarity index 100%
rename from spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateLiveTest.java
rename to spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/resttemplate/RestTemplateLiveTest.java
diff --git a/spring-resttemplate/src/test/java/com/baeldung/web/controller/redirect/RedirectControllerIntegrationTest.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/web/controller/redirect/RedirectControllerIntegrationTest.java
similarity index 100%
rename from spring-resttemplate/src/test/java/com/baeldung/web/controller/redirect/RedirectControllerIntegrationTest.java
rename to spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/web/controller/redirect/RedirectControllerIntegrationTest.java
diff --git a/spring-resttemplate/src/test/java/com/baeldung/web/handler/RestTemplateResponseErrorHandlerIntegrationTest.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/web/handler/RestTemplateResponseErrorHandlerIntegrationTest.java
similarity index 100%
rename from spring-resttemplate/src/test/java/com/baeldung/web/handler/RestTemplateResponseErrorHandlerIntegrationTest.java
rename to spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/web/handler/RestTemplateResponseErrorHandlerIntegrationTest.java
diff --git a/spring-resttemplate/src/test/java/com/baeldung/web/service/EmployeeServiceMockRestServiceServerUnitTest.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/web/service/EmployeeServiceMockRestServiceServerUnitTest.java
similarity index 100%
rename from spring-resttemplate/src/test/java/com/baeldung/web/service/EmployeeServiceMockRestServiceServerUnitTest.java
rename to spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/web/service/EmployeeServiceMockRestServiceServerUnitTest.java
diff --git a/spring-resttemplate/src/test/java/com/baeldung/web/service/EmployeeServiceUnitTest.java b/spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/web/service/EmployeeServiceUnitTest.java
similarity index 100%
rename from spring-resttemplate/src/test/java/com/baeldung/web/service/EmployeeServiceUnitTest.java
rename to spring-web-modules/spring-resttemplate/src/test/java/com/baeldung/web/service/EmployeeServiceUnitTest.java
diff --git a/spring-web-modules/spring-resttemplate/src/test/resources/.gitignore b/spring-web-modules/spring-resttemplate/src/test/resources/.gitignore
new file mode 100644
index 0000000000..83c05e60c8
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate/src/test/resources/.gitignore
@@ -0,0 +1,13 @@
+*.class
+
+#folders#
+/target
+/neoDb*
+/data
+/src/main/webapp/WEB-INF/classes
+*/META-INF/*
+
+# Packaged files #
+*.jar
+*.war
+*.ear
\ No newline at end of file
diff --git a/spring-web-modules/spring-resttemplate/src/test/resources/logback-test.xml b/spring-web-modules/spring-resttemplate/src/test/resources/logback-test.xml
new file mode 100644
index 0000000000..9f48d36486
--- /dev/null
+++ b/spring-web-modules/spring-resttemplate/src/test/resources/logback-test.xml
@@ -0,0 +1,23 @@
+
+
+
+
+ %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-thymeleaf-2/README.md b/spring-web-modules/spring-thymeleaf-2/README.md
similarity index 100%
rename from spring-thymeleaf-2/README.md
rename to spring-web-modules/spring-thymeleaf-2/README.md
diff --git a/spring-thymeleaf-2/pom.xml b/spring-web-modules/spring-thymeleaf-2/pom.xml
similarity index 97%
rename from spring-thymeleaf-2/pom.xml
rename to spring-web-modules/spring-thymeleaf-2/pom.xml
index 43f36d9887..ddcd1e1005 100644
--- a/spring-thymeleaf-2/pom.xml
+++ b/spring-web-modules/spring-thymeleaf-2/pom.xml
@@ -10,7 +10,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/Application.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/Application.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/Application.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/Application.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/ThymeleafConfig.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/ThymeleafConfig.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/ThymeleafConfig.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/ThymeleafConfig.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/arrays/ThymeleafArrayController.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/arrays/ThymeleafArrayController.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/arrays/ThymeleafArrayController.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/arrays/ThymeleafArrayController.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/booleanexpressions/BooleanExpressionsController.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/booleanexpressions/BooleanExpressionsController.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/booleanexpressions/BooleanExpressionsController.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/booleanexpressions/BooleanExpressionsController.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/customhtml/Course.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/customhtml/Course.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/customhtml/Course.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/customhtml/Course.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/customhtml/CourseRegistrationController.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/customhtml/CourseRegistrationController.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/customhtml/CourseRegistrationController.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/customhtml/CourseRegistrationController.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/Color.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/Color.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/Color.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/Color.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/Widget.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/Widget.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/Widget.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/Widget.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/WidgetController.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/WidgetController.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/WidgetController.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/enums/WidgetController.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/lists/ListsController.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/lists/ListsController.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/lists/ListsController.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/lists/ListsController.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/BeanConfig.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/BeanConfig.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/BeanConfig.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/BeanConfig.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/EmailController.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/EmailController.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/EmailController.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/EmailController.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/repository/EmailData.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/repository/EmailData.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/repository/EmailData.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/mvcdata/repository/EmailData.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/Detail.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/Detail.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/Detail.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/Detail.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/Item.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/Item.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/Item.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/Item.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/PathVariablesController.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/PathVariablesController.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/PathVariablesController.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/pathvariables/PathVariablesController.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/requestparameters/ParticipantController.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/requestparameters/ParticipantController.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/requestparameters/ParticipantController.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/requestparameters/ParticipantController.java
diff --git a/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/templatedir/HelloController.java b/spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/templatedir/HelloController.java
similarity index 100%
rename from spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/templatedir/HelloController.java
rename to spring-web-modules/spring-thymeleaf-2/src/main/java/com/baeldung/thymeleaf/templatedir/HelloController.java
diff --git a/spring-thymeleaf-2/src/main/resources/application.properties b/spring-web-modules/spring-thymeleaf-2/src/main/resources/application.properties
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/application.properties
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/application.properties
diff --git a/spring-thymeleaf-2/src/main/resources/templates-2/hello.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates-2/hello.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates-2/hello.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates-2/hello.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates-2/participants.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates-2/participants.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates-2/participants.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates-2/participants.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/booleans.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/booleans.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/booleans.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/booleans.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/continents.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/continents.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/continents.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/continents.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/courseRegistration.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/courseRegistration.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/courseRegistration.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/courseRegistration.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/enums/new.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/enums/new.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/enums/new.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/enums/new.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/enums/view.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/enums/view.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/enums/view.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/enums/view.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/lists/contains.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/lists/contains.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/lists/contains.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/lists/contains.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/lists/isEmpty.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/lists/isEmpty.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/lists/isEmpty.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/lists/isEmpty.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/lists/size.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/lists/size.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/lists/size.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/lists/size.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/lists/sort.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/lists/sort.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/lists/sort.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/lists/sort.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/lists/toList.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/lists/toList.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/lists/toList.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/lists/toList.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-bean-data.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-bean-data.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-bean-data.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-bean-data.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-model-attributes.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-model-attributes.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-model-attributes.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-model-attributes.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-request-parameters.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-request-parameters.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-request-parameters.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-request-parameters.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-servlet-context.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-servlet-context.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-servlet-context.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-servlet-context.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-session-attributes.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-session-attributes.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-session-attributes.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/mvcdata/email-session-attributes.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/pathvariables/index.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/pathvariables/index.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/pathvariables/index.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/pathvariables/index.html
diff --git a/spring-thymeleaf-2/src/main/resources/templates/pathvariables/view.html b/spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/pathvariables/view.html
similarity index 100%
rename from spring-thymeleaf-2/src/main/resources/templates/pathvariables/view.html
rename to spring-web-modules/spring-thymeleaf-2/src/main/resources/templates/pathvariables/view.html
diff --git a/spring-thymeleaf-2/src/test/java/com/baeldung/thymeleaf/lists/ListsControllerIntegrationTest.java b/spring-web-modules/spring-thymeleaf-2/src/test/java/com/baeldung/thymeleaf/lists/ListsControllerIntegrationTest.java
similarity index 100%
rename from spring-thymeleaf-2/src/test/java/com/baeldung/thymeleaf/lists/ListsControllerIntegrationTest.java
rename to spring-web-modules/spring-thymeleaf-2/src/test/java/com/baeldung/thymeleaf/lists/ListsControllerIntegrationTest.java
diff --git a/spring-thymeleaf-2/src/test/java/com/baeldung/thymeleaf/mvcdata/EmailControllerUnitTest.java b/spring-web-modules/spring-thymeleaf-2/src/test/java/com/baeldung/thymeleaf/mvcdata/EmailControllerUnitTest.java
similarity index 100%
rename from spring-thymeleaf-2/src/test/java/com/baeldung/thymeleaf/mvcdata/EmailControllerUnitTest.java
rename to spring-web-modules/spring-thymeleaf-2/src/test/java/com/baeldung/thymeleaf/mvcdata/EmailControllerUnitTest.java
diff --git a/spring-thymeleaf-3/README.md b/spring-web-modules/spring-thymeleaf-3/README.md
similarity index 89%
rename from spring-thymeleaf-3/README.md
rename to spring-web-modules/spring-thymeleaf-3/README.md
index 8bb8861daf..048b48d39f 100644
--- a/spring-thymeleaf-3/README.md
+++ b/spring-web-modules/spring-thymeleaf-3/README.md
@@ -9,3 +9,4 @@ This module contains articles about Spring with Thymeleaf
- [Working with Select and Option in Thymeleaf](https://www.baeldung.com/thymeleaf-select-option)
- [Conditional CSS Classes in Thymeleaf](https://www.baeldung.com/spring-mvc-thymeleaf-conditional-css-classes)
- [Using Hidden Inputs with Spring and Thymeleaf](https://www.baeldung.com/spring-thymeleaf-hidden-inputs)
+- [Thymeleaf Variables](https://www.baeldung.com/thymeleaf-variables)
diff --git a/spring-thymeleaf-3/pom.xml b/spring-web-modules/spring-thymeleaf-3/pom.xml
similarity index 98%
rename from spring-thymeleaf-3/pom.xml
rename to spring-web-modules/spring-thymeleaf-3/pom.xml
index 7c58115d11..6dd1267e8a 100644
--- a/spring-thymeleaf-3/pom.xml
+++ b/spring-web-modules/spring-thymeleaf-3/pom.xml
@@ -10,7 +10,7 @@
com.baeldung
parent-boot-2
0.0.1-SNAPSHOT
- ../parent-boot-2
+ ../../parent-boot-2
diff --git a/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/Application.java b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/Application.java
similarity index 100%
rename from spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/Application.java
rename to spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/Application.java
diff --git a/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/articles/Article.java b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/articles/Article.java
new file mode 100644
index 0000000000..9b01328e45
--- /dev/null
+++ b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/articles/Article.java
@@ -0,0 +1,28 @@
+package main.java.com.baeldung.thymeleaf.articles;
+
+public class Article {
+
+ private String name;
+ private String url;
+
+ public Article(String name, String url) {
+ this.name = name;
+ this.url = url;
+ }
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public String getUrl() {
+ return url;
+ }
+
+ public void setUrl(String url) {
+ this.url = url;
+ }
+}
diff --git a/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/articles/ArticlesController.java b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/articles/ArticlesController.java
new file mode 100644
index 0000000000..cfbf0fcaa6
--- /dev/null
+++ b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/articles/ArticlesController.java
@@ -0,0 +1,37 @@
+package main.java.com.baeldung.thymeleaf.articles;
+
+import org.springframework.stereotype.Controller;
+import org.springframework.ui.Model;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import java.util.Arrays;
+import java.util.List;
+
+@Controller
+@RequestMapping("/api/articles")
+public class ArticlesController {
+
+ @GetMapping
+ public String allArticles(Model model) {
+ model.addAttribute("articles", fetchArticles());
+ return "articles/articles-list";
+ }
+
+ private List fetchArticles() {
+ return Arrays.asList(
+ new Article(
+ "Introduction to Using Thymeleaf in Spring",
+ "https://www.baeldung.com/thymeleaf-in-spring-mvc"
+ ),
+ new Article(
+ "Spring Boot CRUD Application with Thymeleaf",
+ "https://www.baeldung.com/spring-boot-crud-thymeleaf"
+ ),
+ new Article(
+ "Spring MVC Data and Thymeleaf",
+ "https://www.baeldung.com/spring-mvc-thymeleaf-data"
+ )
+ );
+ }
+}
diff --git a/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/blog/BlogController.java b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/blog/BlogController.java
similarity index 100%
rename from spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/blog/BlogController.java
rename to spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/blog/BlogController.java
diff --git a/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/blog/BlogDTO.java b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/blog/BlogDTO.java
similarity index 100%
rename from spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/blog/BlogDTO.java
rename to spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/blog/BlogDTO.java
diff --git a/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/conditionalclasses/ConditionalClassesController.java b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/conditionalclasses/ConditionalClassesController.java
similarity index 100%
rename from spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/conditionalclasses/ConditionalClassesController.java
rename to spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/conditionalclasses/ConditionalClassesController.java
diff --git a/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/cssandjs/CssAndJsApplication.java b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/cssandjs/CssAndJsApplication.java
similarity index 100%
rename from spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/cssandjs/CssAndJsApplication.java
rename to spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/cssandjs/CssAndJsApplication.java
diff --git a/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/cssandjs/CssAndJsController.java b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/cssandjs/CssAndJsController.java
similarity index 100%
rename from spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/cssandjs/CssAndJsController.java
rename to spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/cssandjs/CssAndJsController.java
diff --git a/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/currencies/CurrenciesController.java b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/currencies/CurrenciesController.java
similarity index 100%
rename from spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/currencies/CurrenciesController.java
rename to spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/currencies/CurrenciesController.java
diff --git a/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/option/Student.java b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/option/Student.java
similarity index 100%
rename from spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/option/Student.java
rename to spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/option/Student.java
diff --git a/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/option/StudentController.java b/spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/option/StudentController.java
similarity index 100%
rename from spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/option/StudentController.java
rename to spring-web-modules/spring-thymeleaf-3/src/main/java/com/baeldung/thymeleaf/option/StudentController.java
diff --git a/spring-thymeleaf-3/src/main/resources/static/js/cssandjs/actions.js b/spring-web-modules/spring-thymeleaf-3/src/main/resources/static/js/cssandjs/actions.js
similarity index 100%
rename from spring-thymeleaf-3/src/main/resources/static/js/cssandjs/actions.js
rename to spring-web-modules/spring-thymeleaf-3/src/main/resources/static/js/cssandjs/actions.js
diff --git a/spring-thymeleaf-3/src/main/resources/static/styles/cssandjs/main.css b/spring-web-modules/spring-thymeleaf-3/src/main/resources/static/styles/cssandjs/main.css
similarity index 100%
rename from spring-thymeleaf-3/src/main/resources/static/styles/cssandjs/main.css
rename to spring-web-modules/spring-thymeleaf-3/src/main/resources/static/styles/cssandjs/main.css
diff --git a/spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/articles/articles-list.html b/spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/articles/articles-list.html
new file mode 100644
index 0000000000..de03a86731
--- /dev/null
+++ b/spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/articles/articles-list.html
@@ -0,0 +1,39 @@
+
+
+
+ Thymeleaf Variables
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/spring-thymeleaf-3/src/main/resources/templates/blog/blog-new.html b/spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/blog/blog-new.html
similarity index 100%
rename from spring-thymeleaf-3/src/main/resources/templates/blog/blog-new.html
rename to spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/blog/blog-new.html
diff --git a/spring-thymeleaf-3/src/main/resources/templates/conditionalclasses/conditionalclasses.html b/spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/conditionalclasses/conditionalclasses.html
similarity index 100%
rename from spring-thymeleaf-3/src/main/resources/templates/conditionalclasses/conditionalclasses.html
rename to spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/conditionalclasses/conditionalclasses.html
diff --git a/spring-thymeleaf-3/src/main/resources/templates/cssandjs/styledPage.html b/spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/cssandjs/styledPage.html
similarity index 100%
rename from spring-thymeleaf-3/src/main/resources/templates/cssandjs/styledPage.html
rename to spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/cssandjs/styledPage.html
diff --git a/spring-thymeleaf-3/src/main/resources/templates/currencies/currencies.html b/spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/currencies/currencies.html
similarity index 100%
rename from spring-thymeleaf-3/src/main/resources/templates/currencies/currencies.html
rename to spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/currencies/currencies.html
diff --git a/spring-thymeleaf-3/src/main/resources/templates/option/studentForm.html b/spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/option/studentForm.html
similarity index 100%
rename from spring-thymeleaf-3/src/main/resources/templates/option/studentForm.html
rename to spring-web-modules/spring-thymeleaf-3/src/main/resources/templates/option/studentForm.html
diff --git a/spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/ApplicationIntegrationTest.java b/spring-web-modules/spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/ApplicationIntegrationTest.java
similarity index 100%
rename from spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/ApplicationIntegrationTest.java
rename to spring-web-modules/spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/ApplicationIntegrationTest.java
diff --git a/spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/cssandjs/CssAndJsControllerIntegrationTest.java b/spring-web-modules/spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/cssandjs/CssAndJsControllerIntegrationTest.java
similarity index 100%
rename from spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/cssandjs/CssAndJsControllerIntegrationTest.java
rename to spring-web-modules/spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/cssandjs/CssAndJsControllerIntegrationTest.java
diff --git a/spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/currencies/CurrenciesControllerIntegrationTest.java b/spring-web-modules/spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/currencies/CurrenciesControllerIntegrationTest.java
similarity index 100%
rename from spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/currencies/CurrenciesControllerIntegrationTest.java
rename to spring-web-modules/spring-thymeleaf-3/src/test/java/com/baeldung/thymeleaf/currencies/CurrenciesControllerIntegrationTest.java
diff --git a/spring-thymeleaf/README.md b/spring-web-modules/spring-thymeleaf/README.md
similarity index 100%
rename from spring-thymeleaf/README.md
rename to spring-web-modules/spring-thymeleaf/README.md
diff --git a/spring-thymeleaf/pom.xml b/spring-web-modules/spring-thymeleaf/pom.xml
similarity index 99%
rename from spring-thymeleaf/pom.xml
rename to spring-web-modules/spring-thymeleaf/pom.xml
index 30f77dd73e..7b0cd2c510 100644
--- a/spring-thymeleaf/pom.xml
+++ b/spring-web-modules/spring-thymeleaf/pom.xml
@@ -11,7 +11,7 @@
com.baeldung
parent-spring-5
0.0.1-SNAPSHOT
- ../parent-spring-5
+ ../../parent-spring-5
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/InitSecurity.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/InitSecurity.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/InitSecurity.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/InitSecurity.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebApp.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebApp.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebApp.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebApp.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebMVCConfig.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebMVCConfig.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebMVCConfig.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebMVCConfig.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebMVCSecurity.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebMVCSecurity.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebMVCSecurity.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/config/WebMVCSecurity.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/BookController.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/BookController.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/BookController.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/BookController.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/DatesController.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/DatesController.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/DatesController.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/DatesController.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/ExpressionUtilityObjectsController.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/ExpressionUtilityObjectsController.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/ExpressionUtilityObjectsController.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/ExpressionUtilityObjectsController.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/FragmentsController.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/FragmentsController.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/FragmentsController.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/FragmentsController.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/HomeController.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/HomeController.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/HomeController.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/HomeController.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/InliningController.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/InliningController.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/InliningController.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/InliningController.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/LayoutDialectController.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/LayoutDialectController.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/LayoutDialectController.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/LayoutDialectController.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/StudentController.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/StudentController.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/StudentController.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/StudentController.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/TeacherController.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/TeacherController.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/TeacherController.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/controller/TeacherController.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/formatter/NameFormatter.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/formatter/NameFormatter.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/formatter/NameFormatter.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/formatter/NameFormatter.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Book.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Book.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Book.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Book.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Student.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Student.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Student.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Student.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Teacher.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Teacher.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Teacher.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/model/Teacher.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/service/BookService.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/service/BookService.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/service/BookService.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/service/BookService.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/ArrayUtil.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/ArrayUtil.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/ArrayUtil.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/ArrayUtil.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/BookUtils.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/BookUtils.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/BookUtils.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/BookUtils.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/StudentUtils.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/StudentUtils.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/StudentUtils.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/StudentUtils.java
diff --git a/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/TeacherUtils.java b/spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/TeacherUtils.java
similarity index 100%
rename from spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/TeacherUtils.java
rename to spring-web-modules/spring-thymeleaf/src/main/java/com/baeldung/thymeleaf/utils/TeacherUtils.java
diff --git a/spring-thymeleaf/src/main/resources/logback.xml b/spring-web-modules/spring-thymeleaf/src/main/resources/logback.xml
similarity index 100%
rename from spring-thymeleaf/src/main/resources/logback.xml
rename to spring-web-modules/spring-thymeleaf/src/main/resources/logback.xml
diff --git a/spring-thymeleaf/src/main/resources/messages_en.properties b/spring-web-modules/spring-thymeleaf/src/main/resources/messages_en.properties
similarity index 100%
rename from spring-thymeleaf/src/main/resources/messages_en.properties
rename to spring-web-modules/spring-thymeleaf/src/main/resources/messages_en.properties
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/css/styles.css b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/css/styles.css
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/css/styles.css
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/css/styles.css
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/js/studentCheck.js b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/js/studentCheck.js
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/js/studentCheck.js
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/js/studentCheck.js
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/txt/studentsList.txt b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/txt/studentsList.txt
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/txt/studentsList.txt
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/txt/studentsList.txt
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/addStudent.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/addStudent.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/addStudent.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/addStudent.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/content.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/content.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/content.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/content.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/csrfAttack.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/csrfAttack.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/csrfAttack.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/csrfAttack.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/dates.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/dates.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/dates.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/dates.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/forms.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/forms.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/forms.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/forms.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/general.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/general.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/general.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/general.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/menus.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/menus.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/menus.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/menus.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/subtitle.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/subtitle.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/subtitle.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/subtitle.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/tables.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/tables.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/tables.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/fragments/tables.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/home.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/home.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/home.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/home.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/inliningExample.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/inliningExample.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/inliningExample.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/inliningExample.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/listBooks.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/listBooks.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/listBooks.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/listBooks.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/listStudents.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/listStudents.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/listStudents.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/listStudents.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/listTeachers.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/listTeachers.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/listTeachers.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/listTeachers.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/markup.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/markup.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/markup.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/markup.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/objects.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/objects.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/objects.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/objects.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/other.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/other.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/other.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/other.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/params.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/params.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/params.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/params.html
diff --git a/spring-thymeleaf/src/main/webapp/WEB-INF/views/template.html b/spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/template.html
similarity index 100%
rename from spring-thymeleaf/src/main/webapp/WEB-INF/views/template.html
rename to spring-web-modules/spring-thymeleaf/src/main/webapp/WEB-INF/views/template.html
diff --git a/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/SpringContextTest.java b/spring-web-modules/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/SpringContextTest.java
similarity index 100%
rename from spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/SpringContextTest.java
rename to spring-web-modules/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/SpringContextTest.java
diff --git a/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/ExpressionUtilityObjectsControllerIntegrationTest.java b/spring-web-modules/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/ExpressionUtilityObjectsControllerIntegrationTest.java
similarity index 100%
rename from spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/ExpressionUtilityObjectsControllerIntegrationTest.java
rename to spring-web-modules/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/ExpressionUtilityObjectsControllerIntegrationTest.java
diff --git a/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/FragmentsIntegrationTest.java b/spring-web-modules/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/FragmentsIntegrationTest.java
similarity index 100%
rename from spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/FragmentsIntegrationTest.java
rename to spring-web-modules/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/FragmentsIntegrationTest.java
diff --git a/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/LayoutDialectControllerIntegrationTest.java b/spring-web-modules/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/LayoutDialectControllerIntegrationTest.java
similarity index 100%
rename from spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/LayoutDialectControllerIntegrationTest.java
rename to spring-web-modules/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/controller/LayoutDialectControllerIntegrationTest.java
diff --git a/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/security/csrf/CsrfEnabledIntegrationTest.java b/spring-web-modules/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/security/csrf/CsrfEnabledIntegrationTest.java
similarity index 100%
rename from spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/security/csrf/CsrfEnabledIntegrationTest.java
rename to spring-web-modules/spring-thymeleaf/src/test/java/com/baeldung/thymeleaf/security/csrf/CsrfEnabledIntegrationTest.java
diff --git a/spring-websockets/README.md b/spring-websockets/README.md
index 26e1c6db7c..9cc84f0fda 100644
--- a/spring-websockets/README.md
+++ b/spring-websockets/README.md
@@ -5,3 +5,4 @@ This module contains articles about Spring WebSockets.
### Relevant articles
- [Intro to WebSockets with Spring](https://www.baeldung.com/websockets-spring)
- [A Quick Example of Spring Websockets’ @SendToUser Annotation](https://www.baeldung.com/spring-websockets-sendtouser)
+- [Scheduled WebSocket Push with Spring Boot](https://www.baeldung.com/spring-boot-scheduled-websocket)
diff --git a/spring-websockets/pom.xml b/spring-websockets/pom.xml
index ddfd512476..d2a32a8eb6 100644
--- a/spring-websockets/pom.xml
+++ b/spring-websockets/pom.xml
@@ -18,6 +18,15 @@
org.springframework.boot
spring-boot-starter-websocket
+
+ io.projectreactor
+ reactor-core
+
+
+ com.github.javafaker
+ javafaker
+ 1.0.2
+
com.google.code.gson
gson
diff --git a/spring-websockets/src/main/java/com/baeldung/SpringBootApp.java b/spring-websockets/src/main/java/com/baeldung/SpringBootApp.java
index ea2a461dfc..3a98746748 100644
--- a/spring-websockets/src/main/java/com/baeldung/SpringBootApp.java
+++ b/spring-websockets/src/main/java/com/baeldung/SpringBootApp.java
@@ -3,8 +3,10 @@ package com.baeldung;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
+import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
+@EnableScheduling
public class SpringBootApp extends SpringBootServletInitializer {
public static void main(String[] args) {
SpringApplication.run(SpringBootApp.class, args);
diff --git a/spring-websockets/src/main/java/com/baeldung/websockets/BotsController.java b/spring-websockets/src/main/java/com/baeldung/websockets/BotsController.java
new file mode 100644
index 0000000000..3f268f3794
--- /dev/null
+++ b/spring-websockets/src/main/java/com/baeldung/websockets/BotsController.java
@@ -0,0 +1,21 @@
+package com.baeldung.websockets;
+
+import org.springframework.messaging.handler.annotation.MessageMapping;
+import org.springframework.messaging.handler.annotation.SendTo;
+import org.springframework.stereotype.Controller;
+
+import java.text.SimpleDateFormat;
+import java.util.Date;
+
+@Controller
+public class BotsController {
+
+ @MessageMapping("/chatwithbots")
+ @SendTo("/topic/pushmessages")
+ public OutputMessage send(final Message message) throws Exception {
+
+ final String time = new SimpleDateFormat("HH:mm").format(new Date());
+ return new OutputMessage(message.getFrom(), message.getText(), time);
+ }
+
+}
diff --git a/spring-websockets/src/main/java/com/baeldung/websockets/ReactiveScheduledPushMessages.java b/spring-websockets/src/main/java/com/baeldung/websockets/ReactiveScheduledPushMessages.java
new file mode 100644
index 0000000000..36b1b886fc
--- /dev/null
+++ b/spring-websockets/src/main/java/com/baeldung/websockets/ReactiveScheduledPushMessages.java
@@ -0,0 +1,32 @@
+package com.baeldung.websockets;
+
+import com.github.javafaker.Faker;
+import org.springframework.beans.factory.InitializingBean;
+import org.springframework.messaging.simp.SimpMessagingTemplate;
+import org.springframework.stereotype.Service;
+import reactor.core.publisher.Flux;
+
+import java.text.SimpleDateFormat;
+import java.time.Duration;
+import java.util.Date;
+
+@Service
+public class ReactiveScheduledPushMessages implements InitializingBean {
+
+ private final SimpMessagingTemplate simpMessagingTemplate;
+
+ private final Faker faker;
+
+ public ReactiveScheduledPushMessages(SimpMessagingTemplate simpMessagingTemplate) {
+ this.simpMessagingTemplate = simpMessagingTemplate;
+ this.faker = new Faker();
+ }
+
+ @Override
+ public void afterPropertiesSet() throws Exception {
+ Flux.interval(Duration.ofSeconds(4L))
+ .map((n) -> new OutputMessage(faker.backToTheFuture().character(), faker.backToTheFuture().quote(),
+ new SimpleDateFormat("HH:mm").format(new Date())))
+ .subscribe(message -> simpMessagingTemplate.convertAndSend("/topic/pushmessages", message));
+ }
+}
diff --git a/spring-websockets/src/main/java/com/baeldung/websockets/ScheduledPushMessages.java b/spring-websockets/src/main/java/com/baeldung/websockets/ScheduledPushMessages.java
new file mode 100644
index 0000000000..2468b69713
--- /dev/null
+++ b/spring-websockets/src/main/java/com/baeldung/websockets/ScheduledPushMessages.java
@@ -0,0 +1,32 @@
+package com.baeldung.websockets;
+
+
+import com.github.javafaker.Faker;
+import org.springframework.messaging.simp.SimpMessagingTemplate;
+import org.springframework.scheduling.annotation.Scheduled;
+import org.springframework.stereotype.Controller;
+import org.springframework.stereotype.Service;
+
+import java.text.SimpleDateFormat;
+import java.util.Date;
+
+@Service
+public class ScheduledPushMessages {
+
+ private final SimpMessagingTemplate simpMessagingTemplate;
+
+ private final Faker faker;
+
+ public ScheduledPushMessages(SimpMessagingTemplate simpMessagingTemplate) {
+ this.simpMessagingTemplate = simpMessagingTemplate;
+ faker = new Faker();
+ }
+
+ @Scheduled(fixedRate = 5000)
+ public void sendMessage() {
+ final String time = new SimpleDateFormat("HH:mm").format(new Date());
+ simpMessagingTemplate.convertAndSend("/topic/pushmessages",
+ new OutputMessage("Chuck Norris", faker.chuckNorris().fact(), time));
+ }
+
+}
diff --git a/spring-websockets/src/main/java/com/baeldung/websockets/WebSocketConfig.java b/spring-websockets/src/main/java/com/baeldung/websockets/WebSocketConfig.java
index 7b53dbc3f3..6179ec9c0d 100644
--- a/spring-websockets/src/main/java/com/baeldung/websockets/WebSocketConfig.java
+++ b/spring-websockets/src/main/java/com/baeldung/websockets/WebSocketConfig.java
@@ -20,6 +20,8 @@ public class WebSocketConfig implements WebSocketMessageBrokerConfigurer {
public void registerStompEndpoints(final StompEndpointRegistry registry) {
registry.addEndpoint("/chat");
registry.addEndpoint("/chat").withSockJS();
+ registry.addEndpoint("/chatwithbots");
+ registry.addEndpoint("/chatwithbots").withSockJS();
}
}
\ No newline at end of file
diff --git a/spring-websockets/src/main/webapp/bots.html b/spring-websockets/src/main/webapp/bots.html
new file mode 100644
index 0000000000..38570d420c
--- /dev/null
+++ b/spring-websockets/src/main/webapp/bots.html
@@ -0,0 +1,88 @@
+
+
+ Chat WebSocket
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/testing-modules/junit-5-basics/src/test/java/com/baeldung/migration/junit4/BeforeAndAfterAnnotationsUnitTest.java b/testing-modules/junit-5-basics/src/test/java/com/baeldung/migration/junit4/BeforeAndAfterAnnotationsUnitTest.java
index fac07a20ef..6022de123f 100644
--- a/testing-modules/junit-5-basics/src/test/java/com/baeldung/migration/junit4/BeforeAndAfterAnnotationsUnitTest.java
+++ b/testing-modules/junit-5-basics/src/test/java/com/baeldung/migration/junit4/BeforeAndAfterAnnotationsUnitTest.java
@@ -28,8 +28,8 @@ public class BeforeAndAfterAnnotationsUnitTest {
}
@After
- public void finalize() {
- LOG.info("finalize");
+ public void teardown() {
+ LOG.info("teardown");
list.clear();
}
diff --git a/testing-modules/junit-5-basics/src/test/java/com/baeldung/migration/junit5/BeforeEachAndAfterEachAnnotationsUnitTest.java b/testing-modules/junit-5-basics/src/test/java/com/baeldung/migration/junit5/BeforeEachAndAfterEachAnnotationsUnitTest.java
index be916d66ea..f0093b3bf6 100644
--- a/testing-modules/junit-5-basics/src/test/java/com/baeldung/migration/junit5/BeforeEachAndAfterEachAnnotationsUnitTest.java
+++ b/testing-modules/junit-5-basics/src/test/java/com/baeldung/migration/junit5/BeforeEachAndAfterEachAnnotationsUnitTest.java
@@ -28,8 +28,8 @@ public class BeforeEachAndAfterEachAnnotationsUnitTest {
}
@AfterEach
- public void finalize() {
- LOG.info("finalize");
+ public void teardown() {
+ LOG.info("teardown");
list.clear();
}
diff --git a/testing-modules/mockito-2/src/main/java/com/baeldung/mockito/mocksettings/AbstractCoffee.java b/testing-modules/mockito-2/src/main/java/com/baeldung/mockito/mocksettings/AbstractCoffee.java
new file mode 100644
index 0000000000..99fd686951
--- /dev/null
+++ b/testing-modules/mockito-2/src/main/java/com/baeldung/mockito/mocksettings/AbstractCoffee.java
@@ -0,0 +1,15 @@
+package com.baeldung.mockito.mocksettings;
+
+public abstract class AbstractCoffee {
+
+ protected String name;
+
+ protected AbstractCoffee(String name) {
+ this.name = name;
+ }
+
+ protected String getName() {
+ return name;
+ }
+
+}
diff --git a/testing-modules/mockito-2/src/main/java/com/baeldung/mockito/mocksettings/SimpleService.java b/testing-modules/mockito-2/src/main/java/com/baeldung/mockito/mocksettings/SimpleService.java
new file mode 100644
index 0000000000..034517acbf
--- /dev/null
+++ b/testing-modules/mockito-2/src/main/java/com/baeldung/mockito/mocksettings/SimpleService.java
@@ -0,0 +1,10 @@
+package com.baeldung.mockito.mocksettings;
+
+public class SimpleService {
+
+ public SimpleService(SpecialInterface special) {
+ Runnable runnable = (Runnable) special;
+ runnable.run();
+ }
+
+}
diff --git a/testing-modules/mockito-2/src/main/java/com/baeldung/mockito/mocksettings/SpecialInterface.java b/testing-modules/mockito-2/src/main/java/com/baeldung/mockito/mocksettings/SpecialInterface.java
new file mode 100644
index 0000000000..e5f88247d6
--- /dev/null
+++ b/testing-modules/mockito-2/src/main/java/com/baeldung/mockito/mocksettings/SpecialInterface.java
@@ -0,0 +1,5 @@
+package com.baeldung.mockito.mocksettings;
+
+public interface SpecialInterface {
+
+}
diff --git a/testing-modules/mockito-2/src/test/java/com/baeldung/mockito/mocksettings/MockSettingsUnitTest.java b/testing-modules/mockito-2/src/test/java/com/baeldung/mockito/mocksettings/MockSettingsUnitTest.java
new file mode 100644
index 0000000000..907abc3d76
--- /dev/null
+++ b/testing-modules/mockito-2/src/test/java/com/baeldung/mockito/mocksettings/MockSettingsUnitTest.java
@@ -0,0 +1,56 @@
+package com.baeldung.mockito.mocksettings;
+
+import static org.mockito.Answers.RETURNS_SMART_NULLS;
+import static org.junit.Assert.assertEquals;
+import static org.mockito.Answers.CALLS_REAL_METHODS;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.verify;
+import static org.mockito.Mockito.when;
+import static org.mockito.Mockito.withSettings;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.exceptions.verification.SmartNullPointerException;
+import org.mockito.junit.MockitoJUnitRunner;
+
+import com.baeldung.mockito.fluentapi.Pizza;
+import com.baeldung.mockito.fluentapi.PizzaService;
+
+@RunWith(MockitoJUnitRunner.class)
+public class MockSettingsUnitTest {
+
+ @Test(expected = SmartNullPointerException.class)
+ public void whenServiceMockedWithSmartNulls_thenExceptionHasExtraInfo() {
+ PizzaService service = mock(PizzaService.class, withSettings().defaultAnswer(RETURNS_SMART_NULLS));
+ Pizza pizza = service.orderHouseSpecial();
+ pizza.getSize();
+ }
+
+ @Test
+ public void whenServiceMockedWithNameAndVerboseLogging_thenLogsMethodInvocations() {
+ PizzaService service = mock(PizzaService.class, withSettings().name("pizzaServiceMock")
+ .verboseLogging());
+
+ Pizza pizza = mock(Pizza.class);
+ when(service.orderHouseSpecial()).thenReturn(pizza);
+
+ service.orderHouseSpecial();
+
+ verify(service).orderHouseSpecial();
+ }
+
+ @Test
+ public void whenServiceMockedWithExtraInterfaces_thenConstructorSuccess() {
+ SpecialInterface specialMock = mock(SpecialInterface.class, withSettings().extraInterfaces(Runnable.class));
+ new SimpleService(specialMock);
+ }
+
+ @Test
+ public void whenMockSetupWithConstructor_thenConstructorIsInvoked() {
+ AbstractCoffee coffeeSpy = mock(AbstractCoffee.class, withSettings().useConstructor("espresso")
+ .defaultAnswer(CALLS_REAL_METHODS));
+
+ assertEquals("Coffee name: ", "espresso", coffeeSpy.getName());
+ }
+
+}
diff --git a/testing-modules/spring-testing-2/README.md b/testing-modules/spring-testing-2/README.md
index 702a02ff27..16b47adeac 100644
--- a/testing-modules/spring-testing-2/README.md
+++ b/testing-modules/spring-testing-2/README.md
@@ -1,3 +1,5 @@
## Relevant Articles:
- [Guide to @DynamicPropertySource in Spring](https://www.baeldung.com/spring-dynamicpropertysource)
+- [Concurrent Test Execution in Spring 5](https://www.baeldung.com/spring-5-concurrent-tests)
+- [Spring 5 Testing with @EnabledIf Annotation](https://www.baeldung.com/spring-5-enabledIf)
diff --git a/testing-modules/spring-testing-2/pom.xml b/testing-modules/spring-testing-2/pom.xml
index 807b84c676..4686a20202 100644
--- a/testing-modules/spring-testing-2/pom.xml
+++ b/testing-modules/spring-testing-2/pom.xml
@@ -54,8 +54,25 @@
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-surefire-plugin
+ ${maven-surefire-plugin.version}
+
+ methods
+ true
+
+
+
+
1.12.2
+ 2.21.0
\ No newline at end of file
diff --git a/spring-5/src/test/java/com/baeldung/Spring5JUnit4ConcurrentIntegrationTest.java b/testing-modules/spring-testing-2/src/test/java/com/baeldung/concurrent/Spring5JUnit4ConcurrentIntegrationTest.java
similarity index 98%
rename from spring-5/src/test/java/com/baeldung/Spring5JUnit4ConcurrentIntegrationTest.java
rename to testing-modules/spring-testing-2/src/test/java/com/baeldung/concurrent/Spring5JUnit4ConcurrentIntegrationTest.java
index 7e494465b2..8a0947ba44 100644
--- a/spring-5/src/test/java/com/baeldung/Spring5JUnit4ConcurrentIntegrationTest.java
+++ b/testing-modules/spring-testing-2/src/test/java/com/baeldung/concurrent/Spring5JUnit4ConcurrentIntegrationTest.java
@@ -1,4 +1,4 @@
-package com.baeldung;
+package com.baeldung.concurrent;
import org.junit.Test;
import org.junit.runner.RunWith;
diff --git a/spring-5/src/test/java/com/baeldung/jupiter/EnabledOnJava8.java b/testing-modules/spring-testing-2/src/test/java/com/baeldung/enabledif/EnabledOnJava8.java
similarity index 93%
rename from spring-5/src/test/java/com/baeldung/jupiter/EnabledOnJava8.java
rename to testing-modules/spring-testing-2/src/test/java/com/baeldung/enabledif/EnabledOnJava8.java
index c6d3b7ff10..01bdc176e0 100644
--- a/spring-5/src/test/java/com/baeldung/jupiter/EnabledOnJava8.java
+++ b/testing-modules/spring-testing-2/src/test/java/com/baeldung/enabledif/EnabledOnJava8.java
@@ -1,4 +1,4 @@
-package com.baeldung.jupiter;
+package com.baeldung.enabledif;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
diff --git a/spring-5/src/test/java/com/baeldung/jupiter/Spring5EnabledAnnotationIntegrationTest.java b/testing-modules/spring-testing-2/src/test/java/com/baeldung/enabledif/Spring5EnabledAnnotationIntegrationTest.java
similarity index 97%
rename from spring-5/src/test/java/com/baeldung/jupiter/Spring5EnabledAnnotationIntegrationTest.java
rename to testing-modules/spring-testing-2/src/test/java/com/baeldung/enabledif/Spring5EnabledAnnotationIntegrationTest.java
index 35363e0ea3..b6ccb2204b 100644
--- a/spring-5/src/test/java/com/baeldung/jupiter/Spring5EnabledAnnotationIntegrationTest.java
+++ b/testing-modules/spring-testing-2/src/test/java/com/baeldung/enabledif/Spring5EnabledAnnotationIntegrationTest.java
@@ -1,4 +1,4 @@
-package com.baeldung.jupiter;
+package com.baeldung.enabledif;
import static org.junit.jupiter.api.Assertions.assertTrue;
diff --git a/testing-modules/spring-testing/pom.xml b/testing-modules/spring-testing/pom.xml
index c5e94f3afc..9e0c986bb2 100644
--- a/testing-modules/spring-testing/pom.xml
+++ b/testing-modules/spring-testing/pom.xml
@@ -3,16 +3,15 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
- com.baeldung
spring-testing
0.1-SNAPSHOT
spring-testing
com.baeldung
- parent-java
+ parent-boot-2
0.0.1-SNAPSHOT
- ../../parent-java
+ ../../parent-boot-2
@@ -32,25 +31,34 @@
org.springframework.boot
spring-boot-starter
- LATEST
org.springframework.boot
spring-boot-starter-test
- LATEST
test
+
+ org.junit.vintage
+ junit-vintage-engine
+ test
+
+
+ org.hamcrest
+ hamcrest-core
+
+
+
org.springframework
spring-core
- LATEST
+ ${spring.version}
org.springframework
spring-context
- LATEST
+ ${spring.version}
org.springframework
@@ -65,7 +73,6 @@
org.springframework.data
spring-data-jpa
- LATEST
org.junit.jupiter
@@ -116,9 +123,9 @@
2.0.0.0
3.1.6
- 5.5.0
- 1.5.2
- 5.1.4.RELEASE
+ 5.7.0
+ 1.7.0
+ 5.3.0
4.0.1
2.1.1
diff --git a/testing-modules/testing-libraries-2/README.md b/testing-modules/testing-libraries-2/README.md
index 3325600b5e..f8361904b8 100644
--- a/testing-modules/testing-libraries-2/README.md
+++ b/testing-modules/testing-libraries-2/README.md
@@ -1,3 +1,4 @@
### Relevant Articles:
- [Guide to the System Rules Library](https://www.baeldung.com/java-system-rules-junit)
+- [Guide to the System Stubs Library](https://www.baeldung.com/java-system-stubs)
diff --git a/testing-modules/testing-libraries-2/pom.xml b/testing-modules/testing-libraries-2/pom.xml
index 282583c882..42c84d0da9 100644
--- a/testing-modules/testing-libraries-2/pom.xml
+++ b/testing-modules/testing-libraries-2/pom.xml
@@ -9,9 +9,16 @@
com.baeldung
testing-modules
1.0.0-SNAPSHOT
+ ../
+
+ org.assertj
+ assertj-core
+ 3.16.1
+ test
+
com.github.stefanbirkner
system-rules
@@ -24,6 +31,44 @@
${system-lambda.version}
test
+
+ uk.org.webcompere
+ system-stubs-jupiter
+ ${system-stubs.version}
+ test
+
+
+ uk.org.webcompere
+ system-stubs-junit4
+ ${system-stubs.version}
+ test
+
+
+
+
+ org.junit.jupiter
+ junit-jupiter
+ ${junit.jupiter.version}
+ test
+
+
+ org.junit.jupiter
+ junit-jupiter-engine
+ ${junit.jupiter.version}
+ test
+
+
+ org.junit.jupiter
+ junit-jupiter-params
+ ${junit.jupiter.version}
+ test
+
+
+ org.junit.jupiter
+ junit-jupiter-api
+ ${junit.jupiter.version}
+ test
+
@@ -39,5 +84,7 @@
1.19.0
1.0.0
+ 1.1.0
+ 5.6.2
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/FakeDatabaseJUnit5UnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/FakeDatabaseJUnit5UnitTest.java
new file mode 100644
index 0000000000..cb9371bd69
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/FakeDatabaseJUnit5UnitTest.java
@@ -0,0 +1,16 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import uk.org.webcompere.systemstubs.jupiter.SystemStubsExtension;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+@ExtendWith(SystemStubsExtension.class)
+class FakeDatabaseJUnit5UnitTest {
+
+ @Test
+ void useFakeDatabase(FakeDatabaseTestResource fakeDatabase) {
+ assertThat(fakeDatabase.getDatabaseConnection()).isEqualTo("open");
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/FakeDatabaseTestResource.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/FakeDatabaseTestResource.java
new file mode 100644
index 0000000000..6cb1b1d607
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/FakeDatabaseTestResource.java
@@ -0,0 +1,22 @@
+package com.baeldung.systemstubs;
+
+import uk.org.webcompere.systemstubs.resource.TestResource;
+
+public class FakeDatabaseTestResource implements TestResource {
+ // let's pretend this is a database connection
+ private String databaseConnection = "closed";
+
+ @Override
+ public void setup() throws Exception {
+ databaseConnection = "open";
+ }
+
+ @Override
+ public void teardown() throws Exception {
+ databaseConnection = "closed";
+ }
+
+ public String getDatabaseConnection() {
+ return databaseConnection;
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/FakeDatabaseTestResourceUnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/FakeDatabaseTestResourceUnitTest.java
new file mode 100644
index 0000000000..6b8fdcecdd
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/FakeDatabaseTestResourceUnitTest.java
@@ -0,0 +1,21 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Nested;
+import org.junit.jupiter.api.Test;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+class FakeDatabaseTestResourceUnitTest {
+ @Nested
+ class ExecuteAround {
+ @Test
+ void theResourceIsClosedToStartWith() throws Exception {
+ FakeDatabaseTestResource fake = new FakeDatabaseTestResource();
+ assertThat(fake.getDatabaseConnection()).isEqualTo("closed");
+
+ fake.execute(() -> {
+ assertThat(fake.getDatabaseConnection()).isEqualTo("open");
+ });
+ }
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/GettingStartedWithSystemStubsJUnit4UnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/GettingStartedWithSystemStubsJUnit4UnitTest.java
new file mode 100644
index 0000000000..6eaffac7ed
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/GettingStartedWithSystemStubsJUnit4UnitTest.java
@@ -0,0 +1,58 @@
+package com.baeldung.systemstubs;
+
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.experimental.runners.Enclosed;
+import org.junit.runner.RunWith;
+import uk.org.webcompere.systemstubs.rules.EnvironmentVariablesRule;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+@RunWith(Enclosed.class)
+public class GettingStartedWithSystemStubsJUnit4UnitTest {
+ public static class SetEnvironmentInsideTest {
+ @Rule
+ public EnvironmentVariablesRule environmentVariablesRule = new EnvironmentVariablesRule();
+
+ @Test
+ public void givenEnvironmentCanBeModified_whenSetEnvironment_thenItIsSet() {
+ environmentVariablesRule.set("ENV", "value1");
+
+ assertThat(System.getenv("ENV")).isEqualTo("value1");
+ }
+ }
+
+ public static class SetEnvironmentAtConstruction {
+ @Rule
+ public EnvironmentVariablesRule environmentVariablesRule =
+ new EnvironmentVariablesRule("ENV", "value1",
+ "ENV2", "value2");
+
+
+ @Test
+ public void givenEnvironmentCanBeModified_whenSetEnvironment_thenItIsSet() {
+ assertThat(System.getenv("ENV")).isEqualTo("value1");
+ assertThat(System.getenv("ENV2")).isEqualTo("value2");
+ }
+ }
+
+ public static class SetEnvironmentInBefore {
+ @Rule
+ public EnvironmentVariablesRule environmentVariablesRule =
+ new EnvironmentVariablesRule();
+
+ @Before
+ public void before() {
+ environmentVariablesRule.set("ENV", "value1")
+ .set("ENV2", "value2");
+ }
+
+
+ @Test
+ public void givenEnvironmentCanBeModified_whenSetEnvironment_thenItIsSet() {
+ assertThat(System.getenv("ENV")).isEqualTo("value1");
+ assertThat(System.getenv("ENV2")).isEqualTo("value2");
+ }
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/GettingStartedWithSystemStubsUnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/GettingStartedWithSystemStubsUnitTest.java
new file mode 100644
index 0000000000..76fb768d34
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/GettingStartedWithSystemStubsUnitTest.java
@@ -0,0 +1,109 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Nested;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import uk.org.webcompere.systemstubs.environment.EnvironmentVariables;
+import uk.org.webcompere.systemstubs.jupiter.SystemStub;
+import uk.org.webcompere.systemstubs.jupiter.SystemStubsExtension;
+import uk.org.webcompere.systemstubs.properties.SystemProperties;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static uk.org.webcompere.systemstubs.SystemStubs.withEnvironmentVariable;
+import static uk.org.webcompere.systemstubs.resource.Resources.with;
+
+class GettingStartedWithSystemStubsUnitTest {
+ @Nested
+ @ExtendWith(SystemStubsExtension.class)
+ class EnvironmentVariablesJUnit5 {
+ @SystemStub
+ private EnvironmentVariables environmentVariables;
+
+ @Test
+ void givenEnvironmentCanBeModified_whenSetEnvironment_thenItIsSet() {
+ environmentVariables.set("ENV", "value1");
+
+ assertThat(System.getenv("ENV")).isEqualTo("value1");
+ }
+ }
+
+ @Nested
+ @ExtendWith(SystemStubsExtension.class)
+ class EnvironmentVariablesConstructedJUnit5 {
+ @SystemStub
+ private EnvironmentVariables environmentVariables =
+ new EnvironmentVariables("ENV", "value1");
+
+ @Test
+ void givenEnvironmentCanBeModified_whenSetEnvironment_thenItIsSet() {
+ assertThat(System.getenv("ENV")).isEqualTo("value1");
+ }
+ }
+
+ @Nested
+ @ExtendWith(SystemStubsExtension.class)
+ class EnvironmentVariablesConstructedWithSetJUnit5 {
+ @SystemStub
+ private EnvironmentVariables environmentVariables =
+ new EnvironmentVariables()
+ .set("ENV", "value1")
+ .set("ENV2", "value2");
+
+ @Test
+ void givenEnvironmentCanBeModified_whenSetEnvironment_thenItIsSet() {
+ assertThat(System.getenv("ENV")).isEqualTo("value1");
+ }
+ }
+
+ @Nested
+ @ExtendWith(SystemStubsExtension.class)
+ class EnvironmentVariablesJUnit5ParameterInjection {
+ @Test
+ void givenEnvironmentCanBeModified_whenSetEnvironment_thenItIsSet(EnvironmentVariables environmentVariables) {
+ environmentVariables.set("ENV", "value1");
+
+ assertThat(System.getenv("ENV")).isEqualTo("value1");
+ }
+ }
+
+ @Nested
+ class EnvironmentVariablesExecuteAround {
+ @Test
+ void givenSetupUsingWithEnvironmentVariable_thenItIsSet() throws Exception {
+ withEnvironmentVariable("ENV3", "val")
+ .execute(() -> {
+ assertThat(System.getenv("ENV3")).isEqualTo("val");
+ });
+ }
+
+ @Test
+ void givenSetupUsingConstructor_thenItIsSet() throws Exception {
+ EnvironmentVariables environment = new EnvironmentVariables()
+ .set("ENV3", "val");
+ environment.execute(() -> {
+ assertThat(System.getenv("ENV3")).isEqualTo("val");
+ });
+ }
+
+ @Test
+ void givenEnvironment_thenCanReturnValue() throws Exception {
+ String extracted = new EnvironmentVariables("PROXY", "none")
+ .execute(() -> System.getenv("PROXY"));
+
+ assertThat(extracted).isEqualTo("none");
+ }
+ }
+
+ @Nested
+ class RunMultiple {
+ @Test
+ void runMultiple() throws Exception {
+ with(new EnvironmentVariables("FOO", "bar"),
+ new SystemProperties("prop", "val"))
+ .execute(() -> {
+ assertThat(System.getenv("FOO")).isEqualTo("bar");
+ assertThat(System.getProperty("prop")).isEqualTo("val");
+ });
+ }
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/JUnit4SystemPropertiesUnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/JUnit4SystemPropertiesUnitTest.java
new file mode 100644
index 0000000000..111baf9e9c
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/JUnit4SystemPropertiesUnitTest.java
@@ -0,0 +1,42 @@
+package com.baeldung.systemstubs;
+
+import org.junit.Before;
+import org.junit.Rule;
+import org.junit.Test;
+import uk.org.webcompere.systemstubs.rules.SystemPropertiesRule;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class JUnit4SystemPropertiesUnitTest {
+ @Rule
+ public SystemPropertiesRule systemProperties =
+ new SystemPropertiesRule("db.connection", "false");
+
+ @Before
+ public void before() {
+ systemProperties.set("before.prop", "before");
+ }
+
+ @Test
+ public void givenPropertyIsSet_thenCanBeUsedInTest() {
+ assertThat(System.getProperty("db.connection")).isEqualTo("false");
+ }
+
+ @Test
+ public void givenPropertyIsSet_thenAnotherCanBeSetAndBeUsedInTest() {
+ assertThat(System.getProperty("db.connection")).isEqualTo("false");
+
+ systemProperties.set("prop2", "true");
+ assertThat(System.getProperty("prop2")).isEqualTo("true");
+ }
+
+ @Test
+ public void givenPropertySetInBefore_thenCanBeSeenInTest() {
+ assertThat(System.getProperty("before.prop")).isEqualTo("before");
+ }
+
+ @Test
+ public void givenPropertySetEarlier_thenNotVisibleLater() {
+ assertThat(System.getProperty("prop2")).isNull();
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/JUnit5SystemPropertiesUnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/JUnit5SystemPropertiesUnitTest.java
new file mode 100644
index 0000000000..7aaf4cebad
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/JUnit5SystemPropertiesUnitTest.java
@@ -0,0 +1,89 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Nested;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import uk.org.webcompere.systemstubs.jupiter.SystemStub;
+import uk.org.webcompere.systemstubs.jupiter.SystemStubsExtension;
+import uk.org.webcompere.systemstubs.properties.SystemProperties;
+import uk.org.webcompere.systemstubs.resource.PropertySource;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+class JUnit5SystemPropertiesUnitTest {
+
+ @ExtendWith(SystemStubsExtension.class)
+ @Nested
+ class RestoreSystemProperties {
+ @SystemStub
+ private SystemProperties systemProperties;
+
+ @Test
+ void givenAPropertyIsSet_thenItIsOnlyAvailableInsideThisTest1() {
+ assertThat(System.getProperty("localProperty")).isNull();
+
+ System.setProperty("localProperty", "nonnull");
+ assertThat(System.getProperty("localProperty")).isEqualTo("nonnull");
+ }
+
+ @Test
+ void givenAPropertyIsSet_thenItIsOnlyAvailableInsideThisTest2() {
+ assertThat(System.getProperty("localProperty")).isNull();
+
+ System.setProperty("localProperty", "true");
+ assertThat(System.getProperty("localProperty")).isEqualTo("true");
+ }
+ }
+
+ @ExtendWith(SystemStubsExtension.class)
+ @Nested
+ class RestoreSystemPropertiesByParameter {
+
+ @Test
+ void givenAPropertyIsSet_thenItIsOnlyAvailableInsideThisTest1(SystemProperties systemProperties) {
+ assertThat(System.getProperty("localProperty")).isNull();
+
+ System.setProperty("localProperty", "nonnull");
+ assertThat(System.getProperty("localProperty")).isEqualTo("nonnull");
+ }
+
+ @Test
+ void givenAPropertyIsSet_thenItIsOnlyAvailableInsideThisTest2(SystemProperties systemProperties) {
+ assertThat(System.getProperty("localProperty")).isNull();
+
+ System.setProperty("localProperty", "true");
+ assertThat(System.getProperty("localProperty")).isEqualTo("true");
+ }
+ }
+
+ @ExtendWith(SystemStubsExtension.class)
+ @Nested
+ class SetSomeSystemProperties {
+ @SystemStub
+ private SystemProperties systemProperties;
+
+ @BeforeEach
+ void before() {
+ systemProperties.set("beforeProperty", "before");
+ }
+
+ @Test
+ void givenAPropertyIsSetInBefore_thenItIsAvailableInsideThisTest() {
+ assertThat(System.getProperty("beforeProperty")).isEqualTo("before");
+ }
+ }
+
+ @ExtendWith(SystemStubsExtension.class)
+ @Nested
+ class SetSomeSystemPropertiesFromResources {
+ @SystemStub
+ private SystemProperties systemProperties =
+ new SystemProperties(PropertySource.fromResource("test.properties"));
+
+ @Test
+ void givenPropertiesReadFromResources_thenCanBeUsed() {
+ assertThat(System.getProperty("name")).isEqualTo("baeldung");
+ }
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/OutputMutingJUnit4UnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/OutputMutingJUnit4UnitTest.java
new file mode 100644
index 0000000000..a178efbb9d
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/OutputMutingJUnit4UnitTest.java
@@ -0,0 +1,16 @@
+package com.baeldung.systemstubs;
+
+import org.junit.Rule;
+import org.junit.Test;
+import uk.org.webcompere.systemstubs.rules.SystemOutRule;
+import uk.org.webcompere.systemstubs.stream.output.NoopStream;
+
+public class OutputMutingJUnit4UnitTest {
+ @Rule
+ public SystemOutRule systemOutRule = new SystemOutRule(new NoopStream());
+
+ @Test
+ public void givenMuteSystemOut() throws Exception {
+ System.out.println("nothing is output");
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/OutputMutingUnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/OutputMutingUnitTest.java
new file mode 100644
index 0000000000..c75a523fff
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/OutputMutingUnitTest.java
@@ -0,0 +1,35 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Nested;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import uk.org.webcompere.systemstubs.jupiter.SystemStub;
+import uk.org.webcompere.systemstubs.jupiter.SystemStubsExtension;
+import uk.org.webcompere.systemstubs.stream.SystemOut;
+import uk.org.webcompere.systemstubs.stream.output.NoopStream;
+
+import static uk.org.webcompere.systemstubs.SystemStubs.muteSystemOut;
+
+class OutputMutingUnitTest {
+ @Nested
+ class MutingWithFacade {
+ @Test
+ void givenMuteSystemOut() throws Exception {
+ muteSystemOut(() -> {
+ System.out.println("nothing is output");
+ });
+ }
+ }
+
+ @ExtendWith(SystemStubsExtension.class)
+ @Nested
+ class MutingWithJUnit5 {
+ @SystemStub
+ private SystemOut systemOut = new SystemOut(new NoopStream());
+
+ @Test
+ void givenMuteSystemOut() throws Exception {
+ System.out.println("nothing is output");
+ }
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemExitExecuteAroundUnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemExitExecuteAroundUnitTest.java
new file mode 100644
index 0000000000..b42cc43307
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemExitExecuteAroundUnitTest.java
@@ -0,0 +1,17 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Test;
+
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static uk.org.webcompere.systemstubs.SystemStubs.catchSystemExit;
+
+class SystemExitExecuteAroundUnitTest {
+ @Test
+ void canCheckExitCode() throws Exception {
+ int exitCode = catchSystemExit(() -> {
+ System.exit(123);
+ });
+ assertThat(exitCode).isEqualTo(123);
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemExitJUnit4UnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemExitJUnit4UnitTest.java
new file mode 100644
index 0000000000..c044e250dd
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemExitJUnit4UnitTest.java
@@ -0,0 +1,29 @@
+package com.baeldung.systemstubs;
+
+import org.junit.Rule;
+import org.junit.Test;
+import uk.org.webcompere.systemstubs.rules.SystemExitRule;
+import uk.org.webcompere.systemstubs.security.AbortExecutionException;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+
+public class SystemExitJUnit4UnitTest {
+ @Rule
+ public SystemExitRule systemExitRule = new SystemExitRule();
+
+ @Test
+ public void whenAccidentalSystemExit_thenTestFailsRatherThanJVMKilled() {
+ // uncomment this to try it
+ //System.exit(1);
+ }
+
+ @Test
+ public void whenExit_thenExitCodeIsAvailable() {
+ assertThatThrownBy(() -> {
+ System.exit(123);
+ }).isInstanceOf(AbortExecutionException.class);
+
+ assertThat(systemExitRule.getExitCode()).isEqualTo(123);
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemExitJUnit5UnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemExitJUnit5UnitTest.java
new file mode 100644
index 0000000000..4451d7e31f
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemExitJUnit5UnitTest.java
@@ -0,0 +1,26 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import uk.org.webcompere.systemstubs.jupiter.SystemStub;
+import uk.org.webcompere.systemstubs.jupiter.SystemStubsExtension;
+import uk.org.webcompere.systemstubs.security.AbortExecutionException;
+import uk.org.webcompere.systemstubs.security.SystemExit;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+
+@ExtendWith(SystemStubsExtension.class)
+class SystemExitJUnit5UnitTest {
+ @SystemStub
+ private SystemExit systemExit;
+
+ @Test
+ void whenExit_thenExitCodeIsAvailable() {
+ assertThatThrownBy(() -> {
+ System.exit(123);
+ }).isInstanceOf(AbortExecutionException.class);
+
+ assertThat(systemExit.getExitCode()).isEqualTo(123);
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemInExecuteAroundUnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemInExecuteAroundUnitTest.java
new file mode 100644
index 0000000000..5a1d510e35
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemInExecuteAroundUnitTest.java
@@ -0,0 +1,20 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Test;
+
+import java.util.Scanner;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static uk.org.webcompere.systemstubs.SystemStubs.withTextFromSystemIn;
+
+class SystemInExecuteAroundUnitTest {
+
+ @Test
+ void givenTextInSystemIn_thenCanReadIt() throws Exception {
+ withTextFromSystemIn("line1", "line2", "line3")
+ .execute(() -> {
+ assertThat(new Scanner(System.in).nextLine())
+ .isEqualTo("line1");
+ });
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemInJUnit4UnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemInJUnit4UnitTest.java
new file mode 100644
index 0000000000..ccd422ea24
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemInJUnit4UnitTest.java
@@ -0,0 +1,21 @@
+package com.baeldung.systemstubs;
+
+import org.junit.Rule;
+import org.junit.Test;
+import uk.org.webcompere.systemstubs.rules.SystemInRule;
+
+import java.util.Scanner;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class SystemInJUnit4UnitTest {
+ @Rule
+ public SystemInRule systemInRule =
+ new SystemInRule("line1", "line2", "line3");
+
+ @Test
+ public void givenInput_canReadFirstLine() {
+ assertThat(new Scanner(System.in).nextLine())
+ .isEqualTo("line1");
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemInJUnit5UnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemInJUnit5UnitTest.java
new file mode 100644
index 0000000000..ed506eb40e
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemInJUnit5UnitTest.java
@@ -0,0 +1,23 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import uk.org.webcompere.systemstubs.jupiter.SystemStub;
+import uk.org.webcompere.systemstubs.jupiter.SystemStubsExtension;
+import uk.org.webcompere.systemstubs.stream.SystemIn;
+
+import java.util.Scanner;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+@ExtendWith(SystemStubsExtension.class)
+class SystemInJUnit5UnitTest {
+ @SystemStub
+ private SystemIn systemIn = new SystemIn("line1", "line2", "line3");
+
+ @Test
+ void givenInput_canReadFirstLine() {
+ assertThat(new Scanner(System.in).nextLine())
+ .isEqualTo("line1");
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemLambdaComparisonUnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemLambdaComparisonUnitTest.java
new file mode 100644
index 0000000000..23e65767a8
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemLambdaComparisonUnitTest.java
@@ -0,0 +1,49 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import uk.org.webcompere.systemstubs.environment.EnvironmentVariables;
+import uk.org.webcompere.systemstubs.jupiter.SystemStub;
+import uk.org.webcompere.systemstubs.jupiter.SystemStubsExtension;
+import uk.org.webcompere.systemstubs.properties.SystemProperties;
+
+import static com.github.stefanbirkner.systemlambda.SystemLambda.restoreSystemProperties;
+import static com.github.stefanbirkner.systemlambda.SystemLambda.withEnvironmentVariable;
+import static org.junit.Assert.assertEquals;
+
+@ExtendWith(SystemStubsExtension.class)
+class SystemLambdaComparisonUnitTest {
+ @SystemStub
+ private EnvironmentVariables environmentVariables =
+ new EnvironmentVariables("ADDRESS", "https://www.baeldung.com");
+
+ @SystemStub
+ private SystemProperties systemProperties = new SystemProperties();
+
+ @Test
+ void aSingleSystemLambda() throws Exception {
+ restoreSystemProperties(() -> {
+ System.setProperty("log_dir", "test/resources");
+ assertEquals("test/resources", System.getProperty("log_dir"));
+ });
+ }
+
+ @Test
+ void multipleSystemLambdas() throws Exception {
+ restoreSystemProperties(() -> {
+ withEnvironmentVariable("URL", "https://www.baeldung.com")
+ .execute(() -> {
+ System.setProperty("log_dir", "test/resources");
+ assertEquals("test/resources", System.getProperty("log_dir"));
+ assertEquals("https://www.baeldung.com", System.getenv("URL"));
+ });
+ });
+ }
+
+ @Test
+ void multipleSystemStubs() {
+ System.setProperty("log_dir", "test/resources");
+ assertEquals("test/resources", System.getProperty("log_dir"));
+ assertEquals("https://www.baeldung.com", System.getenv("ADDRESS"));
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemOutAndErrExecuteAroundUnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemOutAndErrExecuteAroundUnitTest.java
new file mode 100644
index 0000000000..36b127d3cb
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemOutAndErrExecuteAroundUnitTest.java
@@ -0,0 +1,43 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Test;
+import uk.org.webcompere.systemstubs.properties.SystemProperties;
+import uk.org.webcompere.systemstubs.stream.SystemOut;
+import uk.org.webcompere.systemstubs.stream.output.DisallowWriteStream;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+import static uk.org.webcompere.systemstubs.SystemStubs.tapSystemOutNormalized;
+import static uk.org.webcompere.systemstubs.resource.Resources.with;
+
+class SystemOutAndErrExecuteAroundUnitTest {
+ @Test
+ void givenTapOutput_thenGetOutput() throws Exception {
+ String output = tapSystemOutNormalized(() -> {
+ System.out.println("a");
+ System.out.println("b");
+ });
+
+ assertThat(output).isEqualTo("a\nb\n");
+ }
+
+ @Test
+ void givenCaptureOutputWithSystemOut_thenGetOutput() throws Exception {
+ SystemOut systemOut = new SystemOut();
+ SystemProperties systemProperties = new SystemProperties("a", "!");
+ with(systemOut, systemProperties)
+ .execute(() -> {
+ System.out.println("a: " + System.getProperty("a"));
+ });
+
+ assertThat(systemOut.getLines()).containsExactly("a: !");
+ }
+
+ @Test
+ void givenCannotWrite_thenWritingIsError() {
+ assertThatThrownBy(() -> {
+ new SystemOut(new DisallowWriteStream())
+ .execute(() -> System.out.println("boo"));
+ }).isInstanceOf(AssertionError.class);
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemOutJUnit4UnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemOutJUnit4UnitTest.java
new file mode 100644
index 0000000000..d6ff70a49b
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemOutJUnit4UnitTest.java
@@ -0,0 +1,52 @@
+package com.baeldung.systemstubs;
+
+import org.junit.Rule;
+import org.junit.Test;
+import uk.org.webcompere.systemstubs.rules.SystemErrRule;
+import uk.org.webcompere.systemstubs.rules.SystemOutRule;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+public class SystemOutJUnit4UnitTest {
+ @Rule
+ public SystemOutRule systemOutRule = new SystemOutRule();
+
+ @Rule
+ public SystemErrRule systemErrRule = new SystemErrRule();
+
+ @Test
+ public void whenCodeWritesToSystemOut_itCanBeRead() {
+ System.out.println("line1");
+ System.out.println("line2");
+
+ assertThat(systemOutRule.getLines())
+ .containsExactly("line1", "line2");
+ }
+
+ @Test
+ public void whenCodeWritesToSystemOut_itCanBeReadAsText() {
+ System.out.println("line1");
+ System.out.println("line2");
+
+ assertThat(systemOutRule.getText())
+ .startsWith("line1");
+ }
+
+ @Test
+ public void whenCodeWritesToSystemOut_itCanBeReadAsNormalizedLines() {
+ System.out.println("line1");
+ System.out.println("line2");
+
+ assertThat(systemOutRule.getLinesNormalized())
+ .isEqualTo("line1\nline2\n");
+ }
+
+ @Test
+ public void whenCodeWritesToSystemErr_itCanBeRead() {
+ System.err.println("line1");
+ System.err.println("line2");
+
+ assertThat(systemErrRule.getLines())
+ .containsExactly("line1", "line2");
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemOutJUnit5UnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemOutJUnit5UnitTest.java
new file mode 100644
index 0000000000..caa8a9264d
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemOutJUnit5UnitTest.java
@@ -0,0 +1,28 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.extension.ExtendWith;
+import uk.org.webcompere.systemstubs.jupiter.SystemStub;
+import uk.org.webcompere.systemstubs.jupiter.SystemStubsExtension;
+import uk.org.webcompere.systemstubs.stream.SystemErr;
+import uk.org.webcompere.systemstubs.stream.SystemOut;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+@ExtendWith(SystemStubsExtension.class)
+class SystemOutJUnit5UnitTest {
+ @SystemStub
+ private SystemOut systemOut;
+
+ @SystemStub
+ private SystemErr systemErr;
+
+ @Test
+ void whenWriteToOutput_thenItCanBeAsserted() {
+ System.out.println("to out");
+ System.err.println("to err");
+
+ assertThat(systemOut.getLines()).containsExactly("to out");
+ assertThat(systemErr.getLines()).containsExactly("to err");
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemPropertiesExecuteAroundUnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemPropertiesExecuteAroundUnitTest.java
new file mode 100644
index 0000000000..3f0f780238
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/SystemPropertiesExecuteAroundUnitTest.java
@@ -0,0 +1,31 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Test;
+import uk.org.webcompere.systemstubs.properties.SystemProperties;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static uk.org.webcompere.systemstubs.SystemStubs.restoreSystemProperties;
+
+class SystemPropertiesExecuteAroundUnitTest {
+ @Test
+ void givenRestoreSystemProperties_thenPropertyRestored() throws Exception {
+ restoreSystemProperties(() -> {
+ // test code
+ System.setProperty("unrestored", "true");
+ });
+
+ assertThat(System.getProperty("unrestored")).isNull();
+ }
+
+ @Test
+ void givenSystemPropertiesObject_thenPropertyRestored() throws Exception {
+ String result = new SystemProperties()
+ .execute(() -> {
+ System.setProperty("unrestored", "true");
+ return "it works";
+ });
+
+ assertThat(result).isEqualTo("it works");
+ assertThat(System.getProperty("unrestored")).isNull();
+ }
+}
diff --git a/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/WithMockedInputStreamUnitTest.java b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/WithMockedInputStreamUnitTest.java
new file mode 100644
index 0000000000..1019781837
--- /dev/null
+++ b/testing-modules/testing-libraries-2/src/test/java/com/baeldung/systemstubs/WithMockedInputStreamUnitTest.java
@@ -0,0 +1,18 @@
+package com.baeldung.systemstubs;
+
+import org.junit.jupiter.api.Test;
+import uk.org.webcompere.systemstubs.stream.input.LinesAltStream;
+
+import java.util.Scanner;
+
+import static org.assertj.core.api.Assertions.assertThat;
+
+class WithMockedInputStreamUnitTest {
+ @Test
+ void givenInputStream_thenCanRead() {
+ LinesAltStream testInput = new LinesAltStream("line1", "line2");
+
+ Scanner scanner = new Scanner(testInput);
+ assertThat(scanner.nextLine()).isEqualTo("line1");
+ }
+}
diff --git a/vavr/src/test/java/com/baeldung/vavr/VavrUnitTest.java b/vavr/src/test/java/com/baeldung/vavr/VavrUnitTest.java
index 7beb75632e..b1a9405605 100644
--- a/vavr/src/test/java/com/baeldung/vavr/VavrUnitTest.java
+++ b/vavr/src/test/java/com/baeldung/vavr/VavrUnitTest.java
@@ -93,6 +93,37 @@ public class VavrUnitTest {
assertEquals("JavaVavr 4", transformed);
}
+ @Test
+ public void editTupleValueForNewTupleInstance(){
+ final Tuple2 java9 = Tuple.of("Java", 8);
+ final Tuple2 transformed = java9.update2(9);
+ int num = transformed._2();
+ assertEquals(9,num);
+ }
+
+ @Test
+ public void editTupleValueForSameInstance(){
+ Tuple2 java9 = Tuple.of("Java", 8);
+ java9 = java9.update2(9);
+ final int num = java9._2();
+ assertEquals(9,num);
+ }
+
+ @Test
+ public void getNumberOfElementTuple(){
+ Tuple2 java8 = Tuple.of("Java", 8);
+ Tuple3 java8Triple = Tuple.of("Java", 8, 1.8);
+ Tuple3 java8TripleWnull = Tuple.of("Java", null, 1.8);
+
+ int num = java8.arity();
+ int numTriple = java8Triple.arity();
+ int numTripleWnull = java8TripleWnull.arity();
+ assertEquals(2,num);
+ assertEquals(3,numTriple);
+ assertEquals(3,numTripleWnull);
+ }
+
+
/*
* Functions
*/
diff --git a/webrtc/src/main/resources/static/client.js b/webrtc/src/main/resources/static/client.js
index 059dc84bcb..9b3de9ef6d 100644
--- a/webrtc/src/main/resources/static/client.js
+++ b/webrtc/src/main/resources/static/client.js
@@ -38,11 +38,7 @@ var input = document.getElementById("messageInput");
function initialize() {
var configuration = null;
- peerConnection = new RTCPeerConnection(configuration, {
- optional : [ {
- RtpDataChannels : true
- } ]
- });
+ peerConnection = new RTCPeerConnection(configuration);
// Setup ice handling
peerConnection.onicecandidate = function(event) {
@@ -71,6 +67,11 @@ function initialize() {
dataChannel.onclose = function() {
console.log("data channel is closed");
};
+
+ peerConnection.ondatachannel = function (event) {
+ dataChannel = event.channel;
+ };
+
}
function createOffer() {
diff --git a/xml/pom.xml b/xml/pom.xml
index 8b2df41af6..837f918b46 100644
--- a/xml/pom.xml
+++ b/xml/pom.xml
@@ -364,7 +364,6 @@
1.2.0
2.0.6
1.6.2
- 2.5
4.1
1.2.4.5
2.3.1
@@ -379,7 +378,6 @@
2.3.29
0.9.6
- 3.5
2.4
1.8