Skip to content

java

life cycle of jsf

Life Cycle of JSF

The JSF framework processes a request in predefined steps similar to other Web application frameworks. You can also develop a Web application in JSF, without knowing the request processing details. This reduces the efforts in… 

JDBC Drivers

JDBC Drivers

The different types of drivers available in JDBC are listed below: JDBC Driver Types Description Type-1 Driver Referes to Bridge Driver (JDBC-ODBC bridge) Type-2 Driver Referes to a party java and partly native code driver… 

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… 

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… 

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…