Skip to content
AOP spring

AOP with Spring

AOP (Aspect-oriented programming) is a complement of OOP (Object-oriented programming), which is defined as a programming technique. The important unit of modularity in AOP is an aspect; whereas in OOP, the units of modularity are… 

Servlet in java

Servlet in Java

The Java Servlet technology provides a simple, vendor-independent mechanism to extend the functionality of a Web server. This technology provides high level, component-based, platform-independent, server-independent standards to develop Web applications in Java. The Java Servlet… 

Linear Regression in Python

Linear Regression in Python

Let’s create our first Machine Learning model under the Regression Section. There are many regression model available: Simple Linear Regression, Multiple Linear Regression, Polynomial Regression, Support Vector Regression (SVR), Decision Tree Regression, Random Forest Regression,… 

jsp life cycle

Life Cycle of JSP

A jsp page is not executed directly. it follows a well-defined process that first involves the translation of into its corresponding servlet and then compilation source file class file. resulting translated loaded memory initialized, similar… 

JSP in Java

JSP in Java

JSP stands for Java Server Pages, which is a Java-based technology developed by SUN Microsystems to simplify the development of dynamic Web pages. JSP pages provide a means of separating the presentation logic from the… 

TCP vs UDP

TCP vs UDP

Before the creation of networking applications, we must first understand some basic concepts of networking. TCP and UDP are some of the important concepts of networking. Let’s take a brief look at TCP vs UDP.… 

Configure Filters

Configure Filters

The web.xml file is used to configure filters to resources, such as a servlet, JSP page, or Web application. This configuration helps to process the request and response objects. With the introduction of annotations in… 

life cycle of servlet

Servlet Life Cycle

The primary reason why servlets and JavaServer Pages (JSP) outperform traditional CGI is the servlet life cycle. Servlets have a three-phase life cycle, namely initialization, service, and destruction. initialization and destruction are called only once… 

Hibernate in java

Hibernate in java

Hibernate is an Object-Relational Mapping (ORM) framework that is used to map an object-oriented domain model to a relational database. Initially, the developers used Structured Query Language (SQL) to query and retrieve data from a…