-
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 » -
Core Java
Top 5 Java Test Frameworks For Automation In 2019
For decades, Java has been the most preferred programming language for developing the server side layer of an application. Although…
Read More » -
Web Development
How to disable WebRTC on Mobile and Desktop
WebRTC (Web Real-Time Communication) is an open-source tool that allows real-time, peer-to-peer connections to be created by websites you visit.…
Read More » -
Core Java
Java – Remove all nulls from a List
Introduction: In this article, we’ll learn how to remove nulls from a Java List using plain-old Java, Java 8 lambda…
Read More » -
Core Java
LinkedList In Java
Introduction: A LinkedList is a linear data-structure composed of nodes. In a singly linked list, each node contains data and…
Read More » -
Software Development
How to Avoid Typical Mistakes While Learning Java
So, you’ve decided to become a programmer. Great idea, but what should you do now? There is a huge difference…
Read More » -
Software Development
DynamoDB explained – Part 1
DynamoDB has been a bit of a buzzword recently, so after years working on relational and document databases I decided…
Read More » -
Enterprise Java
Temporary directories in JUnit 5 Tests
JUnit 4 TemporaryFolder @Rule allowed developers to create tests utilising temporary directories. With JUnit 5, the @Rules are not supported…
Read More »