Professional JSP Java / JSP and Servlets
This chapter will examine a variety of ways to architect a system with JavaServer Pages, Servlets, and JavaBeans. We will see a series of different architectures, each a development of the one before.
JSP Tutorial For Beginners Java / JSP and Servlets
JSP is part of the Java technology family. JSP technology is a key component in a highly scalable architecture for web-based applications.
A JSP is translated into Java servlet before being run, and it processes HTTP requests and generates responses like any servlet.
Like ASP or PHP, JSP also has dynamic scripting capability that works with HTML code, separating the web page logic from the static elements.
Sending E-Mails with JSP Pages Java / JSP and Servlets
In this article we will learn how to send simple text emails using JSP pages. Since it is not a good habit to put Java code in JSP pages, we will create a JavaBean to do that.
JSP templates Java / JSP and Servlets
This article explores a template mechanism for JavaServer Pages (JSP) that, like layout managers, encapsulates layout so it can be reused instead of replicated.
Using XML and JSP together Java / JSP and Servlets
XML and JSP are two of the hottest buzzwords these days. This article shows how you can use these two technologies together to make a dynamic Website. You also get a look at code examples for DOM, XPath, XSL, and other Java-XML techniques.
Herong's Tutorial Notes on JSP and JSTL Java / JSP and Servlets
It is a collection of notes and sample codes written by the author while he was learning JSP and JSTL himself. Topics include attachment, content-disposition, content_type, cookie, custom tag, debugging, expression language, file upload, header lines.
Counting Active Users using JSP Java / JSP and Servlets
Ever wondered how many users are viewing your website at this moment? well this article seems to answer that. In this article we will build a JSP page and a session listener class which will allow you to determine how many users are viewing your site in real time.
Counting Records in MySQL by JSP Java / Database Integration
This code source displays count of records in MySQL. We are using a SQL statement. You can easily modify the code to use in different languages. But this code can be used for JSP with MySQL. We will use Connector/J driver to connect database.