JSP Syntax

Learn-JSP-Featured-Image

In this chapter we are going to look at Syntax of JSP. We will understand simple JSP syntax to write our JSP program. Before writing below elements in your JSP page make sure you have setup your project in eclipse and tomcat on your computer. 1. Scriptlet Element: Scriptlet element is the main JSP element …

Read more

Categories JSP

JSP Life Cycle

Learn-JSP-Featured-Image

In this chapter, we will discuss JSP Life Cycle. We will see whole process from creation till destruction. I hope you’ve unserstood the architecture of JSP and its key components. Below is the quick overview of JSP Life Cycle: Translation – JSP page is translated to Servlet and generates (.java) file. Compilation – Generated file …

Read more

Categories JSP

JSP Architecture

Learn-JSP-Featured-Image

Java Server Pages are slightly different from HTML pages because JSP pages contains Java Code inside them. In this chapter we will see JSP Architecture. As you all know JSP is a server side technology where code is executed at server side. I hope you’ve learn how to run JSP application on Tomcat Server. Basically …

Read more

Categories JSP

JSP in Eclipse – Environment Setup

Learn-JSP-Featured-Image

In this chapter, we are going to look at How to Setup JSP in Eclipse. Let’s see some prerequisite. Java Development Kit (JDK) Tomcat Server Eclipse IDE 1. Setup Java Development Kit Before running any JSP application in eclipse we first need to install JDK that will help us to run and deploy our JSP …

Read more

Categories JSP

Introduction to Java Server Pages

Learn-JSP-Featured-Image

In this post, we are going to look at Java Server Pages. Below is a quick overview of What is JSP? and how they are different from Servlets. Stands for Java Server Pages Used to Create Web Applications Extension to Servlet Easy to Maintain It is like inserting Java insert HTML Less code than Servlet …

Read more

Categories JSP

How to Install Tomcat Server

Learn-JSP-Featured-Image

In this tutorial, We will learn how to install Tomcat server. It is recommended to have Java Install on your system before proceeding further. Learn How to Install Java. 1. How to Install Tomcat Server on Windows Follow below steps to install tomcat server on windows. Visit https://tomcat.apache.org/ and download the latest version available. Select …

Read more