Building a Native Java Application for ARM64 with Quarkus
Building a Native Java Application for ARM64 with Quarkus,The Graal native image compiler is a great tool to significantly reduce the start time and memory consumption of Java appl...
How to Make Your Reviewer Cry Using Java Optional
How to Make Your Reviewer Cry Using Java Optional,I think code review is one of the best sources of inspiration. I see it as an opportunity to learn new things from other software ...
Automate your Documentation with Gitlab and Mkdocs
Automate your Documentation with Gitlab and Mkdocs,Producing documentation may be painful and need a lot of time to write and operate. In this story, i will share with you, my way ...
Java: Functions in your own class
Java: Functions in your own class,The best exmaple of usage of your own class is to work with a database. Moreover, using functions in class is more correct than simple functions a...
Hide Checked Exceptions with SneakyThrows
Hide Checked Exceptions with SneakyThrows, Exception Handling in Java (4 Part Series) 1 Avoiding NullPointerException 2 Hide Checked Exceptions with SneakyThrows 3 Exceptions and S...
Interview OS (Part 2A) – Important Terms in OS
Interview OS (Part 2A) - Important Terms in OS,Disclaimer - Thanks to Love Babbar for this list of important terms that are required to be known in OS. Compiler Loader Assembler In...
Effective Java! Return Optionals Judiciously
Effective Java! Return Optionals Judiciously, Effective Java Review (90 Part Series) 1 Effective Java Tuesday! Let's Consider Static Factory Methods 2 Effective Java Tuesday! The B...
Deploying Spring Boot Application on Kubernetes
Deploying Spring Boot Application on Kubernetes, In this article, I will explain how you can create a pod, deploy a spring boot application, manage the single node cluster with Len...
Binary Search (Recursively) in Java
Binary Search (Recursively) in Java, Create a method binarySearch() inside BinarySearch class public class BinarySearch { int binarySearch(int arr[], int left, int right, int key) ...
How to watch a directory in Java?
How to watch a directory in Java?,You can watch a folder/directory on your server or computer easily using Watch API provided by Java. Below is the algorithm: STEP1: Create a watch...