JSP
JavaServer Pages (JSP) is a Java technology that allows software developers to dynamically generate HTML, XML or other types of documents in response to a Web client request. The technology allows Java code and certain pre-defined actions to be embedded into static content. The JSP syntax adds additional XML tags, called JSP actions, to be used to invoke built-in functionality. Additionally, the technology allows for the creation of JSP tag libraries that act as extensions to the standard HTML or XML tags. Tag libraries provide a platform independent way of extending the capabilities of a Web server. JSPs are compiled into Java Servlets by a JSP compiler. A JSP compiler may generate a servlet in Java code that is then compiled by the Java compiler, or it may generate byte code for the servlet directly. In either case, it is helpful to understand how the JSP compiler transforms the page into a Java servlet.
Categories in section: Articles Reviews
Wednesday, 25 April 2007 |
Written by
MS
|
User rating: Rate it first |
Hits: 2114
{mos_sb_discuss:34} Introduction JavaServer Pages (JSP) is a Java technology that allows software developers to dynamically generate HTML, XML or other types of documents in response to a Web client request. The technology allows Java code and certain pre-defined actions to be embedded into static content.It mixes regular, static HTML with dynamically-generated HTML.It mark servlet code with special tags.The entire JSP page gets translated into a servlet (once), and then servlet is what actually gets invoked (for each request).
Monday, 16 April 2007 |
Written by
MS
|
User rating:
5.0 |
Hits: 1912
{mos_sb_discuss:34} You should have the basic knowledge of Core Java. JSPs are used to generate dynamic WebPages by including the java code inside the html. The JSP file are stored as .jsp and they need to be run on a server you can’t just open a JSP file in a browser like you do incase of .HTML files. So before you can run your jsp file you need to download and install a server (You can try downloading Jboss or tomcat- www.Jboss.org ).
User rating: Rate it first |
Hits: 1616
{mos_sb_discuss:34} Java Server Pages is an extension of the Java Servlet technology where the java code is written inside the HTML pages which are then converted in Servlets and compiled and run on the server. It is used to create dynamic content on the server using HTML and java code which makes it platform independent.
Sunday, 01 April 2007 |
Written by
MS
|
User rating:
4.0 |
Hits: 5010
Performance testing Performance Testing is testing conducted to evaluate the compliance of a system or component with specified performance requirements. Its all about applying production workloads to pre-deployment systems while simultaneously measuring system performance and end-user experience.
User rating: Rate it first |
Hits: 2042
{mos_sb_discuss:34}
In this tutorial you will learn how to disable session creation in the JSP pages. Disabling the session in some pages will improve the performance of your JSP container.
User rating: Rate it first |
Hits: 1525
{mos_sb_discuss:34}
Custom JSP tag helps you implement some programming tricks in Ajax style.
This taglib lets you integrate JSP and JavaScript. Right from your JavaScript code you will be able to call
server-side stuff (JSP, servlet) with the same idea - update the part of your screen without the reloading the whole
page.
User rating: Rate it first |
Hits: 1394
{mos_sb_discuss:34}
Java
Print Service (JPS), introduced in JDK 1.4, is an API intended for printing
on all Java platforms. It includes the Java 2 Print API, which was used before
the introduction of JPS. This article explains how client and server
applications can locate and select printers that have the capabilities
specified by the appropriate attributes.
User rating: Rate it first |
Hits: 2236
mos_sb_discuss:34}
Summary of New Features in JSP 2.1 Technology
The main theme for the Java Platform, Enterprise Edition (Java EE) 5 is ease of development. The platform's web tier contributes significantly to ease of development in two ways. First, the platform now includes the Java Standard Tag Library (JSTL) and JavaServer Faces technology. Second, all the web-tier technologies offer a set of features that make development of web applications on Java EE much easier. Some of these features are the following:
User rating: Rate it first |
Hits: 2801
{mos_sb_discuss:34}
This article takes a look at the facilities provided by former versions
of the JSP specification for writing custom tags. As you'll see
throughout the article, these previous methods, now called classic
tags, provide more flexibility than current methods, and for this
reason they're still useful in some scenarios. You'll also see how
classic tags can take advantage of some of the new features that are
now a part of the JSP 2.0 specification, including how custom tags can
now support dynamic attributes.
Friday, 01 September 2006 |
Written by
Bogdan V
|
User rating: Rate it first |
Hits: 3798
The prerequisites for the tutorial are:
* HTML. You should be able to put together HTML pages.
* Java. You should be able to program in Java.
Powered by jReviews
|