Deploying a Spring Boot Application with PostgreSQL on AWS Using Docker(ECR), Kubernetes (EKS): A Step-by-Step GuideIntro: Imagine you've created an awesome app with Spring Boot and a database, and now you're eager for the whole world to experience it. To achieve this, you must launch your app online in a way that it can effortlessly manage numerous users, maintai...Feb 6, 2024·19 min read
new vs newInstance() In JavaBriefing: Often we have heard and used new and newInstance() in Java but many of them use it without knowing the actual meaning of both. So In this article, i will try to give you a good understanding of both. First of all, we will know, what is a ne...May 8, 2023·6 min read
Pojo Vs Java Bean In JavaSo, you have heard these two words if you are in the Java development field, but many of them still don't clearly understand these two concepts or they have a misconception that both are the same. In this article, I will give you a clear and concise ...May 6, 2023·2 min read
Spring In JavaIntroduction: To understand Spring, One must know about Language and technologies in Java. In Java, if u have to learn web development, You have to learn it in three stages. The three stages are as follows: Core Java (J2SE-Java 2 Standard Edition ) ...May 5, 2023·5 min read
Understanding Jvm / Jre / Jdk in JavaJVM(Java Virtual Machine) Jvm stands for Java Virtual Machine.It is the heart of the Java ecosystem. Through this only, Java programs are called WORA(Write Once Run Anywhere) programs which made Java so popular across the globe for writing code. A v...Apr 26, 2023·4 min read
Stored Procedure In SQLWhat is Stored Procedure? A set of SQL queries is called a stored procedure. Whenever we need one set of SQL statements to use again and again in our database program, then we write those SQL statements together and store them inside a procedure(call...Feb 20, 2023·3 min read
Life Cycle Of a Query ExecutionIntro Just like a java code compiles and executes a java program, the same thing happens with a SQL query on the database side. A query also compiles and executes and for compiling and executing it goes under several processes. As we know, JVM compil...Feb 19, 2023·3 min read