JSP Archive

JSP include Directive

Include Directive in JSP is an instruction from JSP to JSP Engine about including static file at Translation Time. The include directive is used to includes a file during the translation phase. This directive tells …

Taglib Directive in JSP

The JavaServer Pages API allows you to define custom JSP tags that look like HTML or XML tags and a tag library is a set of user-defined tags that implement custom behavior. The taglib directive …

JSP Page Directive

Page Directives in JSPs are instruction from JSPs to JSP Engine. The page directive is used to provide instructions to the container that pertain to the current JSP page. You may code page directives anywhere …

JSP Directives

JSP directives provide directions and instructions to the container, telling it how to handle certain aspects of JSP processing. Directives in JSPs are instruction from JSPs to JSP Engine. Directives are classified in 3 categories: …

JSP Scripting Elements

Scripting elements are important part of JSP that makes page dynamic. Scripting elements can be classified in 3 categories: 1. Declaration Tags. 2. Expression Tags. 3. Scriptles. Declaration Tags: Declaration Tags is used to define …

Life Cycle of a JSP Page

JSP stands for JAVA Server Pages. It is JAVA Code inside HTML. It is useful technology for presentation layer or View in Model-View-Controller architecture. Using JSP, developer can generate dynamic content on web pages. Major …