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.
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.
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.
First Java Servlets and JSP Tutorial Java / JSP and Servlets
We want to create a small web application (library), that illustrates the usage of JavaServer Pages combined with Java Servlets. We use the JavaServer Pages to display data (presentation) and the servlets to control and call the business logic of the web application.
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.