Home > Uncategorized (page 2)

Uncategorized

Building REST APIs with FastAPI and Python

# Building REST APIs with FastAPI and Python In the world of web development, REST APIs serve as the backbone for connecting frontend applications with backend services. FastAPI, a modern Python web framework, has quickly gained popularity for building robust, high-performance REST APIs. In this article, we’ll explore how to use FastAPI to create scalable APIs efficiently, highlighting its key ... Read More »

How to check if the process is running on Linux in Java

spring

In this article, we will learn how to check whether a specific process is running on Linux in Java. There is a case where we have to check before executing the tasks whether a specific process is currently running or not. Read More »

Reactive MongoDB Auto Increment ID Using Spring WebFlux

reactive spring

In this tutorial, we will learn how to generate an auto-incrementing sequence id in our Spring WebFlux and Reactive MongoDB project. First we will create our model class Models In the above Employee collection class, we have to give a sequence name for this collection, which is annotated with @Transient. We will have to give a separate sequence name in ... Read More »