π Bigtable Pagination in Java
//www.javacodegeeks.com/2023/01/bigtable-pagination-in-java.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2023/01/bigtable-pagination-in-java.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Bigtable Pagination in Java - Java Code Geeks - 2023
Consider a set of rows stored in Bigtable table called βpeopleβ: My objective is to be able to paginate a few records at a time, say with each page
π Project Loom in JDK-19: the benefits but with quirks
//www.javacodegeeks.com/2023/01/project-loom-in-jdk-19-the-benefits-but-with-quirks.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2023/01/project-loom-in-jdk-19-the-benefits-but-with-quirks.html
β‘οΈ @JavaLearnZone
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,
π Manage multiple Java SDKs with asdf with ease
//www.javacodegeeks.com/2023/01/manage-multiple-java-sdks-with-asdf-with-ease.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2023/01/manage-multiple-java-sdks-with-asdf-with-ease.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Manage multiple Java SDKs with asdf with ease - Java Code Geeks - 2023
asdf is a helpful command-line tool that allows you to manage and switch between different versions of programming language runtimes including Java,
π Minborgβs Java Pot
//www.javacodegeeks.com/2023/01/minborgs-java-pot.html
β‘οΈ @JavaLearnZone
//www.javacodegeeks.com/2023/01/minborgs-java-pot.html
β‘οΈ @JavaLearnZone
Java Code Geeks
Minborg's Java Pot - Java Code Geeks - 2023
Did you know you can allocate memory segments that are larger than the physical size of your machineβs RAM and indeed larger than the size of your entire
π Lightweight Logging With tinylog 2
https://www.baeldung.com/java-logging-tinylog-guide
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-logging-tinylog-guide
β‘οΈ @JavaLearnZone
Baeldung
Lightweight Logging With tinylog 2 | Baeldung
Learn the fundamental logging methods and configuration parameters of the tinylog 2 logging framework and understand how to issue log entries.
π Getting Class Type From a String in Java
https://www.baeldung.com/java-get-class-object-from-string
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-get-class-object-from-string
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Getting Class Type From a String in Java | Baeldung
Learn how to use the Class.forName() method to obtain the Class object.
π Class Methods vs Instance Methods in Java
https://www.baeldung.com/java-class-methods-vs-instance-methods
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-class-methods-vs-instance-methods
β‘οΈ @JavaLearnZone
Baeldung
Class Methods vs Instance Methods in Java | Baeldung
A brief comparison between class and instance methods in Java.
π RESTful Microservices With RestExpress
https://www.baeldung.com/java-restexpress-guide
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-restexpress-guide
β‘οΈ @JavaLearnZone
Baeldung
RESTful Microservices With RestExpress | Baeldung
Learn how to create a REST API using the open-source RestExpress framework.
π Case-Insensitive Searching in ArrayList
https://www.baeldung.com/java-arraylist-case-insensitive-search
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-arraylist-case-insensitive-search
β‘οΈ @JavaLearnZone
Baeldung
Case-Insensitive Searching in ArrayList | Baeldung
Learn three approaches to perform case-insensitive searching in ArrayList.
π PrintStream vs PrintWriter in Java
https://www.baeldung.com/java-printstream-vs-printwriter
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-printstream-vs-printwriter
β‘οΈ @JavaLearnZone
Baeldung
PrintStream vs PrintWriter in Java | Baeldung
A comparison between two classes to output content: PrintWriter and PrintStream, explaining the similarities and differences between them.
π Fix the IllegalArgumentException: No enum const class
https://www.baeldung.com/java-fix-no-enum-const-class
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-fix-no-enum-const-class
β‘οΈ @JavaLearnZone
Baeldung
Fix the IllegalArgumentException: No enum const class | Baeldung
Why IllegalArgumentException is thrown and how to fix in it in Java.
π Check if Command-Line Arguments Are Null in Java
https://www.baeldung.com/java-check-command-line-args
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-check-command-line-args
β‘οΈ @JavaLearnZone
Baeldung
Check if Command-Line Arguments Are Null in Java | Baeldung
Learn a few techniques for checking if the command-line arguments are missing in a Java program.
π Convert an ArrayList of Object to an ArrayList of String Elements
https://www.baeldung.com/java-object-list-to-strings
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-object-list-to-strings
β‘οΈ @JavaLearnZone
Baeldung
Convert an ArrayList of Object to an ArrayList of String Elements | Baeldung
Discover strategies to normalize lists of objects to strings in Java.
π Differences Between Spring Data JPA findFirst() and findTop()
https://www.baeldung.com/spring-data-jpa-findfirst-vs-findtop
β‘οΈ @JavaLearnZone
https://www.baeldung.com/spring-data-jpa-findfirst-vs-findtop
β‘οΈ @JavaLearnZone
Baeldung on Kotlin
Differences Between Spring Data JPA findFirst() and findTop() | Baeldung
Learn about the findFirst() and findTop() methods from Spring Data JPA.
π Batch Processing of Stream Data in Java
https://www.baeldung.com/java-stream-batch-processing
β‘οΈ @JavaLearnZone
https://www.baeldung.com/java-stream-batch-processing
β‘οΈ @JavaLearnZone
Baeldung
Batch Processing of Stream Data in Java | Baeldung
Explore how to accomplish batch processing of Stream data in Java using both native features and some third-party libraries.