🆕 Java Serialization: readObject() vs. readResolve()
https://www.baeldung.com/java-serialization-readobject-vs-readresolve
https://www.baeldung.com/java-serialization-readobject-vs-readresolve
Baeldung on Kotlin
Java Serialization: readObject() vs. readResolve() | Baeldung
Learn the differences between the readObject() and readResolve() methods of the Java Serialization API.
🆕 What’s the difference between Scanner next() and nextLine() methods?
https://www.baeldung.com/java-scanner-next-vs-nextline
https://www.baeldung.com/java-scanner-next-vs-nextline
Baeldung on Kotlin
What’s the Difference between Scanner next() and nextLine() Methods? | Baeldung
This article delves into the difference between the next() and nextLine() methods of the Scanner class.The article also covers the use of custom delimiters and provides code examples for better understanding. Understanding these distinctions enables developers…
🆕 Convert Hashmap to JSON Object in Java
https://www.baeldung.com/java-convert-hashmap-to-json-object
https://www.baeldung.com/java-convert-hashmap-to-json-object
Baeldung
Convert Hashmap to JSON Object in Java | Baeldung
Learn how to convert a Map to JSON in Java.
🆕 Returning a Value After Finishing Thread’s Job in Java
https://www.baeldung.com/java-return-value-after-thread-finish
https://www.baeldung.com/java-return-value-after-thread-finish
Baeldung on Kotlin
Returning a Value After Finishing Thread’s Job in Java | Baeldung
Learn how to return a value from a thread that has its job terminated
🆕 Converting Map<String, Object> to Map<String, String> in Java
https://www.baeldung.com/java-converting-map-string-object-to-string-string
https://www.baeldung.com/java-converting-map-string-object-to-string-string
Baeldung
Converting Map to Map in Java | Baeldung
Learn different ways to convert a Map to Map.
📁 Project Loom in JDK-19: the benefits but with quirks
https://www.javacodegeeks.com/2023/01/project-loom-in-jdk-19-the-benefits-but-with-quirks.html
https://www.javacodegeeks.com/2023/01/project-loom-in-jdk-19-the-benefits-but-with-quirks.html
Java Code Geeks
Project Loom in JDK-19: the benefits but with quirks - Java Code Geeks - 2023
A few months have passed already since JDK-19 release, which we talked about previously in details. More and more developers are switching to JDK-19,
📁 Unit Testing: Java AND JavaScript?
https://www.javacodegeeks.com/2023/02/unit-testing-java-and-javascript.html
https://www.javacodegeeks.com/2023/02/unit-testing-java-and-javascript.html
Java Code Geeks
Unit Testing: Java AND JavaScript? - Java Code Geeks - 2023
You know that thing where recruiters think that Java and JavaScript are probably the same thing? Well, they’re really not… unless… Sometimes when working
📁 Java Code Geeks are giving away a FREE Steam Wallet Code
https://www.javacodegeeks.com/2023/02/java-code-geeks-are-giving-away-a-free-steam-wallet-code.html
https://www.javacodegeeks.com/2023/02/java-code-geeks-are-giving-away-a-free-steam-wallet-code.html
Java Code Geeks
Java Code Geeks are giving away a FREE Steam Wallet Code - Java Code Geeks - 2023
Feel the need for some time off coding? Then we have something especially for you! Enter the contest now to win a $100 Steam Wallet Code. A Steam Wallet
📁 Java Concurrency: Threads and Runnables
https://www.javacodegeeks.com/2023/01/java-concurrency-threads-and-runnables.html
https://www.javacodegeeks.com/2023/01/java-concurrency-threads-and-runnables.html
Java Code Geeks
Java Concurrency: Threads and Runnables - Java Code Geeks
Threads are everywhere, they are the basic building block of every server application out there. Usually in Java using threads is just a combination of
🆕 Converting a Java List to a Json Array
https://www.baeldung.com/java-converting-list-to-json-array
https://www.baeldung.com/java-converting-list-to-json-array
Baeldung
Converting a Java List to a Json Array | Baeldung
Learn how to convert a Java List to a JSON array.