Java
-
Java: How to Slash Down Building Times Using the Cloud
Building larger Java projects on a laptop with Maven can be frustrating and slow. Learn how you could slash down…
Read More » -
Java Queue Interface
Introduction: A Queue is a FIFO (First In First Out) abstract data type (ADT). In other words, the elements are…
Read More » -
Spring Boot Exit Codes – Create Custom Exit Code
When running a Spring Boot application, we get a system exit code of 0, when everything goes fine. For any…
Read More » -
Java ArrayDeque
Introduction: ArrayDeque in Java is a class that implements a Deque interface. It’s an array-based implementation of a double-ended queue.…
Read More » -
Using @ResponseStatus for Http Status in Spring
Introduction: In Spring MVC, we can set the status of the HttpResponse in several ways. In this tutorial, we’ll achieve…
Read More » -
PriorityBlockingQueue In Java
Introduction: A PriorityBlockingQueue in Java implements the BlockingQueue interface and supports the features of a PriorityQueue. So, what’s a BlockingQueue?…
Read More » -
What To Expect From The New Version Of Selenium 4 Alpha?
All of us belonging to the testing domain are familiar with Selenium, one of the most popular open source automation…
Read More » -
Lazy assignment in Java
Programmers are inherently lazy and similis simili gaudet also like when the programs are lazy. Have you ever heard lazy…
Read More » -
@Component vs @Repository vs @Service in Spring
Introduction: With Spring’s auto-scanning feature, it automatically detects various beans defined in our application. We usually annotate our beans using…
Read More »