-
Enterprise Java
Hibernate Many To Many Tutorial
Introduction: In this tutorial, we’ll learn to define and use a many-to-many entity association using Hibernate @ManyToMany annotation. Context BuildUp: To follow…
Read More » -
Core Java
Using Spliterator In Java
Introduction: Iterators in Java are used to traverse elements of a given source. Spliterator in Java is one among the…
Read More » -
Enterprise Java
Identifiers In Hibernate
Introduction: Identifiers in Hibernate model the primary key attribute of an entity. It helps us to uniquely identify a JPA…
Read More » -
Core Java
HashSet In Java
Introduction: HashSet in Java implements Set interface i.e. it doesn’t allow duplicates. It is internally backed by a HashMap which works…
Read More » -
Core Java
Sorting a HashMap In Java
Introduction: In this tutorial, we’ll learn how to sort a Java HashMap. We can sort a HashMap either by keys or…
Read More » -
Core Java
Java Convert a List to Array And Vice-Versa
Introduction: In this article, we’ll quickly learn how to convert a Java List (say an ArrayList) to an array and vice-versa. If you wish to…
Read More » -
Core Java
Java UUID
Introduction: UUID (Universal Unique Identifier) represents a 128-bit long unique value. It’s also popularly known as GUID (Globally Unique Identifier). The standard…
Read More » -
Core Java
Check If Two Lists Are Equal In Java
Introduction: Lists in Java are ordered by nature. So, two lists are considered to be equal if they contain the…
Read More » -
Core Java
CopyOnWriteArrayList In Java
Introduction: CopyOnWriteArrayList in Java is a thread-safe implementation of a List interface. It belongs to the java.util.concurrent package and is…
Read More »