“I love writing authentication and authorization code.” ~ No Java Developer Ever. Tired of building …
How to Use Infinite Sets in Java 9 – DZone Java
To move away from a paradigm where we store the elements of a Set, we can create an Immutable StreamSet, Positive LongSet, and infinite set in Java 9.
Generalized Target-Type Inference in Java | Baeldung
Explore Java’s Type Inference, that along with generics and Lambda Expression enables us to write concise Java code.
Top 10 Java HashMap Interview Questions and Answers
Blog about Programming, Design, Java, Tutorial, Examples, Interview Questions, Java 5, 6, 7, 8, 9 features, multithreading, Linux, UNIX and tips.
Deploying a Java application on Azure Container Service and Cosmos DB | Microsoft + Open Source
Introduction Bitnami was recently invited to speak at a few Azure Meetups and we took that as an opportunity to …
Java Modules
Java modules are a special way of packaging your Java code that tells which packages in your module should be visible to modules using your module, and which other modules your module requires.
How to do GROUP BY in Java 8? Collectors.groupingBy() Example
Java 8 now directly allows you to do GROUP BY in Java by using Collectors.groupingBy() method. GROUP BY is a very useful aggregate operati…
Parallel and Asynchronous Programming in Java 8
Parallel programming no longer needs to be an insurmountable obstacle in the hunt for faster code.
[JDK 11] Class Loader Hierarchy Details Coming to jcmd
I’ve been a fan of the diagnostic command-line tool jcmd since hearing about jcmd at JavaOne 2012 . I’ve used this tool extensively since t…
How to Reuse Java Streams – DZone Java
Consider three different approaches to reusing Java streams, such as using Suppliers or memoization, while noting each approach’s performance and I/O concerns.
Spring Framework In Easy Steps | Udemy
Create an End to End Java EE Web Application using Spring
Bootstrapping JPA Programmatically in Java | Baeldung
Learn how to configure a JPA persistence context in Java without the traditional persistence.xml file.
Java Comparators in a More Declarative Way – DZone Java
Here is a new and improved method for increasing the functionality in the Java Comparator interface.
Histograms with Apache Commons Frequency | Baeldung
Explore the Frequency class of Apache commons-math3 library.
JDK 9/10/11: Side Effects From += on Java String – DZone Java
In this quick post, we take a look at a peculiar bug present in JDKs 9, 10, and 11 involving how the Java compiler interprets += on Java Strings.