What is JSP Technology

Java Server Page is a standard Java extension that is defined on top of the servlet Extensions. The goal of JSP is the simplified creation and management of dynamic Web pages. JSPs are secure, platform-independent, and best of all, make use of Java as a server-side scripting language. JavaServer Pages (JSP) is a technology used … Read more

What Are The Two Kinds of Comments in JSP and what’s the Difference Between them

<%– JSP Comment –%> <!– HTML Comment –> In JavaServer Pages (JSP), there are two types of comments: HTML Comments: Syntax: <!– This is an HTML comment –> Description: HTML comments in JSP are similar to standard HTML comments and are used for adding comments to the generated HTML output. These comments are visible in … Read more

What is Difference Between Custom JSP Tags and Beans

Custom JSP tag is a tag you defined. You define how a tag, its attributes and its body are interpreted, and then group your tags into collections called tag libraries that can be used in any number of JSP files. To use custom JSP tags, you need to define three separate components: the tag handler … Read more

What is a JSP and what is it Used For

Java Server Pages (JSP) is a platform independent presentation layer technology that comes with SUN s J2EE platform. JSPs are normal HTML pages with Java code pieces embedded in them. JSP pages are saved to *.jsp files. A JSP compiler is used in the background to generate a Servlet from the JSP page. JavaServer Pages … Read more

What is JSP Tag Handler

A Java programming language object that implements the behavior of a custom tag. If you have any questions that you want answer for – please leave a comment on this page and I will answer them In Advanced Java, particularly in the context of JavaServer Pages (JSP), a JSP tag handler is a Java class … Read more