kity ,作者- 拾光赋 - 第507页 共834页-拾光赋-第507页
Building a Native Java Application for ARM64 with Quarkus-拾光赋

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

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

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

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

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...
CI/CD for personal project on homerserver-拾光赋

CI/CD for personal project on homerserver

CI/CD for personal project on homerserver,Hello everyone, For the sake of learning a created a simple web-app. It consist of: next-js (react) frontend spring boot backend postgres ...
How to automate tests for webhooks-拾光赋

How to automate tests for webhooks

How to automate tests for webhooks, Problem Has it happened to you that you are coding a test that requires you to wait for a webhook notification? It is a problem because normally...
Interview OS (Part 2A) - Important Terms in OS-拾光赋

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! 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

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

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?

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...