Java EE Tutorials JSP Tutorials Recommended Books for Java Server Pages (JSP) JavaBeans are simple classes that are used to develop dynamic WebPages. JavaBeans are required to create dynamic web pages by using separate java classes instead of using java code in a JSP page. It provides getter and setter methods to get and set values …
JSP Tutorials
Session Tracking in JSP
Java EE Tutorials JSP Tutorials Recommended Books for Java Server Pages (JSP) Sessions are mechanism for storing client data across multiple HTTP requests. From one request to another user the HTTP server does not maintain a reference or keep any record of client previous request. HttpSession Methods getAttribute : it returns stored value from session …
JSP API
Java EE Tutorials JSP Tutorials Recommended Books for Java Server Pages (JSP) This tutorial lists down the API’s used in the Java Server Pages (JSP) programming. API stands for Application Programming Interface that allows programmers for building software applications in java. JSP API is categorized into following packages: Packages Description javax.el It provides classes and interfaces …
JSP Redirect
Java EE Tutorials JSP Tutorials Recommended Books for Java Server Pages (JSP) Redirect is used to move or redirect response to another resource. The resource may be servlet , jsp or html file. In this tutorial we will see an example of how to redirect in JSP. We can do PageRedirect using the sendRedirect() method, which …
JSP Implicit Objects
Java EE Tutorials JSP Tutorials Recommended Books for Java Server Pages (JSP) Implicit objects are java objects that are created by container when JSP page is being translated to servlet and are accessible to Java scriptlets or expressions in JSP pages based on scope of particular object type. There are 9 implicit objects which are …
JSP Directives
Java EE Tutorials JSP Tutorials Recommended Books for Java Server Pages (JSP) Directives specifies translation time instruction to JSP engine. There are three types of directives: page directive include directive taglib directive JSP Page Directive This directive can be used to specify any of a number of page-dependent attributes such as scripting language to use, …
JSP Actions
Java EE Tutorials JSP Tutorials Recommended Books for Java Server Pages (JSP) JSP actions are XML syntax tags used to control servlet engine.The Action tags are used to control the flow between pages and to use Java Bean. We can insert file, forward one page to another page or we can create HTML page for …
JSP Syntax
Java EE Tutorials JSP Tutorials Recommended Books for Java Server Pages (JSP) This tutorial explains the basic elements used in the JSP pages. Following table lists these JSP elements with syntax. JSP Tag Description Syntax Directive Specifies translation time instruction to JSP engine. There are there types of directives: page,include and taglib directives. <%@Directives%>, <%@page..%>, …