π Java Modules: An Introduction
https://www.javacodegeeks.com/2023/03/java-modules-an-introduction.html
β‘οΈ @JavaLearnZone
https://www.javacodegeeks.com/2023/03/java-modules-an-introduction.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Java Modules: An Introduction - Java Code Geeks - 2023
Java modules were introduced in Java 9 to enhance the modularity of the Java platform. A module in Java is a collection of related packages, classes, and
π Java Static Synchronized method behavior
https://www.javacodegeeks.com/2023/03/java-static-synchronized-method-behavior.html
β‘οΈ @JavaLearnZone
https://www.javacodegeeks.com/2023/03/java-static-synchronized-method-behavior.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Java Static Synchronized method behavior - Java Code Geeks
In our earlier post, we learnt that when a method is synchronized, only one thread will be allowed to enter the method. In this post, letβs discuss the
π Java Concurrency: The Lock interface
https://www.javacodegeeks.com/2023/03/java-concurrency-the-lock-interface.html
β‘οΈ @JavaLearnZone
https://www.javacodegeeks.com/2023/03/java-concurrency-the-lock-interface.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Java Concurrency: The Lock interface - Java Code Geeks - 2023
Previously we implemented a thread safe counter using synchronized. We would like to swift from synchronized blocks to something more flexible with more
π How to Determine Date of the First Day of the Week Using LocalDate in Java
https://www.baeldung.com/java-first-day-of-the-week
https://www.baeldung.com/java-first-day-of-the-week
Baeldung
How to Determine Date of the First Day of the Week Using LocalDate in Java | Baeldung
Learn about the date of the first day of the week from LocalDate in Java.
π Difference Between parallelStream() and stream().parallel() in Java
https://www.baeldung.com/java-parallelstream-vs-stream-parallel
https://www.baeldung.com/java-parallelstream-vs-stream-parallel
Baeldung on Kotlin
Difference Between parallelStream() and stream().parallel() in Java | Baeldung
Explore the ways we can create parallel Streams from a Collection data source.
π Kafka Streams Developer: Techniques to Conquer
https://www.javacodegeeks.com/2023/03/kafka-streams-developer-techniques-to-conquer.html
https://www.javacodegeeks.com/2023/03/kafka-streams-developer-techniques-to-conquer.html
Java Code Geeks
Kafka Streams Developer: Techniques to Conquer - Java Code Geeks - 2023
Apache Kafka is an open-source distributed streaming platform developed by the Apache Software Foundation. It was initially developed at LinkedIn to
π Hibernate @CreationTimestamp and @UpdateTimestamp
https://www.baeldung.com/hibernate-creationtimestamp-updatetimestamp
https://www.baeldung.com/hibernate-creationtimestamp-updatetimestamp
Baeldung on Kotlin
Hibernate @CreationTimestamp and @UpdateTimestamp | Baeldung
This article explains how to use Hibernate annotations @CreationTimestamp and @UpdateTimestamp to track the creation and update timestamps of an entity in a Java application using the Hibernate framework.
π The Difference Between junit-vintage-engine and junit-jupiter-engine
https://www.baeldung.com/java-junit-vintage-engine-vs-junit-jupiter-engine
https://www.baeldung.com/java-junit-vintage-engine-vs-junit-jupiter-engine
Baeldung
The Difference Between junit-vintage-engine and junit-jupiter-engine | Baeldung
Explore the difference between the junit-vintage-engine and the junit-jupiter-engine.
π Generate the Same UUID From a String in Java
https://www.baeldung.com/java-generate-same-uuid-from-string
https://www.baeldung.com/java-generate-same-uuid-from-string
Baeldung on Kotlin
Generate the Same UUID From a String in Java | Baeldung
Learn how to generate the same UUID objects from a string.
π Methods To Convert InputStream to String In Java
https://www.javacodegeeks.com/2023/04/methods-to-convert-inputstream-to-string-in-java.html
https://www.javacodegeeks.com/2023/04/methods-to-convert-inputstream-to-string-in-java.html
Java Code Geeks
Methods To Convert InputStream to String In Java - Java Code Geeks - 2023
In Java, an InputStream is a common way to read data from a source, such as a file or network connection, in a stream-oriented way. Often times, it is
π Clear details on Java collection βClear()β API
https://www.javacodegeeks.com/2023/04/clear-details-on-java-collection-clear-api.html
https://www.javacodegeeks.com/2023/04/clear-details-on-java-collection-clear-api.html
Java Code Geeks
Clear details on Java collection βClear()β API - Java Code Geeks - 2023
Several of us might be familiar with the clear () API in Java collections framework. In this post, letβs discuss what is the purpose of this clear() API?