Class Central is learner-supported. When you buy through links on our site, we may earn an affiliate commission.

Udemy

JSP (Java Server Pages) Comprehensive Course

via Udemy

Overview

Become a Full Stack Web Developer. Learn core concepts of JSP and build interactive & complex web applications using JSP

What you'll learn:
  • Describe JavaServer Pages and their relationship to servlets and J2EE generally
  • How to build database-related Web applications using JavaServer Pages
  • Fundamentals of Java server side web development
  • How a JSP is translated into a servlet and processed at runtime
  • Newer features and techniques, including JSP expressions and the JSTL tags
  • Know everything about JSP and learn to apply JSP code to build a web application
  • Manage cookies to store client-specific information at various scopes and duration
  • How linking is done with database through coding
  • How to build a fully functioning JSP and Servlets web application from scratch
  • Understand and use Java Database Connectivity
  • Write JavaBeans and access JavaBeans from servlets / JSPs
  • Use JavaBeans to implement effective interactive JSP applications
  • Use JSP tags and understand JSP JavaBean scopes
  • How to use JSP forwarding
  • Use Model, View, Controller methodologies
  • Enumerate and use the implicit objects available to scripting elements
  • Explain the use of directives on JSPs and outline the principal directives
  • Implement simple JSPs that use Java code in declarations, expressions and scriptlets
  • Use Java exception handling and JSP error pages to handle errors in JSP applications
  • Implement session management for a JSP application
  • Describe custom tags in JSP and explain how they are implemented
  • Describe the various uses of XML in JSP applications
  • Deploy a logical Web application to a Web server in a WAR file
  • Implement an interactive Web application using HTML forms and JSP

A warm welcome to the Java Server Pages (JSP) course by Uplatz.


Java Server Pages (JSP) is a server-side programming technology that enables the creation of dynamic, platform-independent method for building Web-based applications. JSP have access to the entire family of Java APIs, including the JDBC API to access enterprise databases. This tutorial will teach you how to use Java Server Pages to develop your web applications in simple and easy steps.

JSP is essentially a server-side scripting language that helps you to create dynamic, platform-independent method for building applications based on web. One of the original Java web technologies, JavaServer Pages is widely used to build dynamic web pages that connect to the Java backend. JSP is a Java standard technology that enables you to write dynamic, data-driven pages for your Java web applications.

JSP is built on top of the Java Servlet specification. The two technologies typically work together, especially in older Java web applications. From a coding perspective, the most obvious difference between them is that with servlets you write Java code and then embed client-side markup (like HTML) into that code, whereas with JSP you start with the client-side script or markup, then embed JSP tags to connect your page to the Java backend. JavaServer Pages (JSP) technology allows you to easily create web content that has both static and dynamic components. JSP technology makes available all the dynamic capabilities of Java Servlet technology but provides a more natural approach to creating static content. By using JSP, you can take input from users through forms present on web page, display records from a database or another source, and can move dynamically from one page to another JSP page present in same file or other file.

Since Java Server Pages are built on top of the Java Servlets API, so like Servlets, JSP also has access to all the powerful Enterprise Java APIs, including JDBC, JNDI, EJB, JAXP, etc. JSP pages can be used in combination with servlets that handle the business logic, the model supported by Java servlet template engines. JSP is a complimentary technology to Java Servlet which facilitates the mixing of dynamic and static web contents. JSP is Java's answer to the popular Microsoft's Active Server Pages (ASP). JSP, like ASP, provides a elegant way to mix static and dynamic contents. The main page is written in regular HTML, while special tags are provided to insert pieces of Java programming codes. The business programming logic and the presentation are cleanly separated. This allows the programmers to focus on the business logic, while the web designer to concentrate on the presentation.

A JSP page is a text document that contains two types of text: static data, which can be expressed in any text-based format (such as HTML, SVG, WML, and XML), and JSP elements, which construct dynamic content. JSP helps developers to insert java code in HTML pages by using special JSP tags, most of which start with tag. Developers of programmers write JSP as a normal text file and then attach this JSP code with any other file like html, xml, etc. The recommended file extension for the source file of a JSP page is .jsp. The page can be composed of a top file that includes other files that contain either a complete JSP page or a fragment of a JSP page. The recommended extension for the source file of a fragment of a JSP page is .jspf.

The JSP elements in a JSP page can be expressed in two syntaxes, standard and XML, though any given file can use only one syntax. A JSP page in XML syntax is an XML document and can be manipulated by tools and APIs for XML documents. This chapter and Chapters Chapter 7, JavaServer Pages Standard Tag Library through Chapter 9, Scripting in JSP Pages document only the standard syntax. The XML syntax is covered in Chapter 6, JavaServer Pages Documents.

Finally, JSP is an integral part of Java EE, a complete platform for enterprise class applications. This means that JSP can play a part in the simplest applications to the most complex and demanding.


Uplatz provides this in-depth training on Java Server Pages (JSP) to help you master the most widely used technology for developing web applications.

This practical, application-oriented Java JSPtraining course teaches Java Servlets, JDBC and JSP and shows how to use it to develop simple to complex database-driven Web applications. It is intended for experienced Java (J2SE) programmers who want to build Web applications or J2EE components and systems.

This JavaEE JSPtraining course for web developers & programmers will show you how to build end to end Web applications using JEE best practices, design patterns, and technologies to ensure that you get a performant, scalable JEE/JSP applications. JSP training develops skills to create web pages that display dynamically-generated content.


Features of JSP

  • A language for developing JSP pages, which are text-based documents that describe how to process a request and construct a response

  • An expression language for accessing server-side objects

  • Mechanisms for defining extensions to the JSP language

  • JSP technology also contains an API that is used by developers of web containers


Advantages of JSP

  • Using Javaserver Pages is very simple and like other Java based programs a candidate can learn JSP without having any in depth knowledge or Java related training. Also it can even be implemented by non- Java programmers.

  • Javaserver Pages allows developers to make presentation codes, since the webpages are compiled dynamically into servers.

  • JSP allows web developers to change a specific portion in the template of a page, without affecting the entire application logic.

  • JSP is a portable platform, which means the technology can be used in other web servers and operating system.

  • Javaserver Pages provided implicit exception handling mechanism and compiles pages automatically.

  • Separation of static and dynamic contents: The dynamic contents are generated via programming logic and inserted into the static template. This greatly simplifies the creation and maintenance of web contents.

  • Reuse of components and tag libraries: The dynamic contents can be provided by re-usable components such as JavaBean, Enterprise JavaBean (EJB) and tag libraries - you do not have to re-inventing the wheels.

  • Java's power and portability.


JSP (Java Server Pages) - course syllabus

Topics covered

  1. Introduction to Web

  2. Introduction to JSP

  3. Directory Structure

  4. Lifecycle JSP

  5. Scripting Elements - part 1

  6. Scripting Elements - part 2

  7. Scripting Elements - part 3

  8. Implicit Object Request

  9. Implicit Project - part 1

  10. Implicit Project - part 2

  11. Implicit Project (Login) - part 3

  12. Implicit Project (Reg) - part 4

  13. Implicit Project - part 5

  14. Implicit Project (Output) - part 6

  15. Directives Page - part 1

  16. Directive Page - part 2

  17. Directive Include - part 1

  18. Directive Include - part 2

  19. JSP Action Tag - Usebean - part 1

  20. JSP Action Tag - Usebean - part 2

  21. JSP Action Tag - Usebean - part 3

  22. JSP - Include Action Tag - part 1

  23. JSP - Include Action - part 2

  24. JSP - Forward Action - part 1

  25. JSP - Forward Action - part 2

  26. Expression Language - part 1

  27. Expression Language (Param) - part 2

  28. Expression Language - part 3

  29. Expression Language (RequestScope) - part 4

  30. Java Bean using Expression Language - part 1

  31. Java Bean using Expression Language - part 2

  32. Java Bean using Expression Language - part 3

  33. JSTL Core - part 1

  34. JSTL Core - part 2

  35. JSTL Core (URL) - part 3

  36. JSTL SQL - part 1

  37. JSTL SQL (Update) - part 2

  38. JSTL SQL Update - part 3

  39. SQL Param

  40. JSTL - Function - part 1

  41. JSTL - Function - part 2

  42. JSTL - Function - part 3

  43. MVC in JSP - part 1

  44. MVC in JSP - part 2


Detailed-level list of topics covered

1. Web Applications

  • Server-Side Programming

  • Web Protocols and Web Applications

  • Role of Web Servers

  • Java Servlets

  • Using Tomcat Web server

  • Structure of a Java Servlet

2. Servlets Architecture

  • Servlets Architecture

  • Servlet and HttpServlet

  • Request and Response

  • Reading Request Parameters

  • Producing an HTML Response

  • Redirecting the Web Server

  • Deployment Descriptors

  • Servlets Life Cycle

  • Relationship to the Container

3. Interactive Web Applications

  • Building an HTML Interface

  • HTML Forms

  • Handling Form Input

  • Application Architecture

  • Single-Servlet Model

  • Multiple-Servlet Model

  • Routing Servlet Model

  • Template Parsers

4. Session Management

  • Managing Client State

  • Sessions

  • Session Implementations

  • HttpSession

  • Session Attributes

  • Session Events

  • Invalidating Sessions

5. Configuration and Context

  • The Need for Configuration

  • Initialization Parameters

  • Properties Files

  • JNDI and the Component Environment

  • JDBC Data Sources

  • Working with XML Data

6. Filters

  • Servlet Filters

  • Uses for Filters

  • Building a Filter

  • Filter Configuration and Context

  • Filter Chains

  • Deploying Filters

7. Database and SQL Fundamentals

  • Relational Databases and SQL

  • SQL Versions and Code Portability

  • Database, Schema, Tables, Columns and Rows

  • DDL - Creating and Managing Database Objects

  • DML - Retrieving and Managing Data

  • Sequences

  • Stored Procedures

  • Result Sets and Cursors

  • Using SQL Terminals

8. JDBC Fundamentals

  • What is the JDBC API?

  • JDBC Drivers

  • Making a Connection

  • Creating and Executing a Statement

  • Retrieving Values from a ResultSet

  • SQL and Java Datatypes

  • SQL NULL Versus Java null

  • Creating and Updating Tables

  • Handling SQL Exceptions and Proper Cleanup

  • Handling SQLWarning

9. Advanced JDBC

  • SQL Escape Syntax

  • Using Prepared Statements

  • Using Callable Statements

  • Scrollable Result Sets

  • Updatable Result Sets

  • Transactions

  • Commits, Rollbacks, and Savepoints

  • Batch Processing

  • Alternatives to JDBC

10. Introduction to Row Sets

  • Row Sets in GUI and J2EE programming

  • Advantages of RowSets

  • RowSet Specializations

  • Using CachedRowSets

11. JSP Architecture

  • JSP Containers

  • Servlet Architecture

  • Page Translation

  • Types of JSP Content

  • Directives

  • Content Type

  • Buffering

  • Scripting Elements

  • JSP Expressions

  • Standard Actions

  • Custom Actions and JSTL

  • Objects and Scopes

  • Implicit Objects

  • JSP Lifecycle

12. Scripting Elements

  • Translation of Template Content

  • Scriptlets

  • Expressions

  • Declarations

  • Dos and Don'ts

  • Implicit Objects for Scriptlets

  • The request Object

  • The response Object

  • The out Object

13. Interactive JSP Applications

  • HTML Forms

  • Reading CGI Parameters

  • JSPs and Java Classes

  • Error Handling

  • Session Management

  • The Session API

  • Cookies and JSP

14. Using JavaBeans

  • Separating Presentation and Business Logic

  • JSP Actions

  • JavaBeans

  • Working with Properties

  • and

  • Using Form Parameters with Beans

  • Objects and Scopes

  • Working with Vectors

15. The Expression Language and the JSTL

  • Going Scriptless

  • The JSP Expression Language

  • EL Syntax

  • Type Coercio

  • Error Handling

  • Implicit Objects for EL

  • The JSP Standard Tag Library

  • Role of JSTL

  • The Core Actions

  • Using Beans with JSTL

  • The Formatting Actions

  • Scripts vs. EL/JSTL

16. Advanced JSP Features

  • Web Components

  • Forwarding

  • Inclusion

  • Passing Parameters

  • Custom Tag Libraries

  • Tag Library Architecture

  • Implementing in Java or JSP

  • Threads

  • Strategies for Thread Safety

  • XML and JSP

17. JSP for Web Services


JSP Training Learning Objectives

  • Explain the fundamentals of HTML and HTTP in the World Wide Web.

  • Describe JavaServer Pages and their relationship to servlets and J2EE generally.

  • Describe how a JSP is translated into a servlet and processed at runtime.

  • Explain the use of directives on JSPs and outline the principal directives.

  • Implement simple JSPs that use Java code in declarations, expressions and scriptlets.

  • Enumerate and use the implicit objects available to scripting elements.

  • Implement an interactive Web application using HTML forms and JSP.

  • Use Java exception handling and JSP error pages to handle errors in JSP applications.

  • Implement session management for a JSP application.

  • Manage cookies to store client-specific information at various scopes and durations.

  • Use JavaBeans to implement effective interactive JSP applications.

  • Describe custom tags in JSP and explain how they are implemented, both using Java and JSP itself, and how they are used.

  • Discuss threading issues in JSP and describe the use of directives to control how threading is handled.

  • Describe the various uses of XML in JSP applications.

  • Deploy a logical Web application to a Web server in a WAR file.

  • Describe the use of the JSP expression language to simplify dynamic page output.

  • Write JSP expressions and implement JSPs that use them in favor of scripts.

  • Implement JSPs that use basic JSTL actions to simplify presentation logic.

  • Decompose a JSP application design into fine-grained, reusable elements including JavaBeans, custom tag handlers and tag files that use JSTL.

  • Use core JSTL actions to complement standard actions, custom actions, and

  • JSP expressions for seamless, script-free page logic.

  • Direct conditional and iterative processing of page content by looping through ranges of numbers, over elements in a collection, or over tokens in a master string.

  • Set locale and time zone information in JSPs, and use them to correctly format numbers, dates and times for all clients.

  • Use resource bundles to manage application strings, and produce the appropriate strings at runtime for a particular client locale.

  • Locate a data source, query for relational data, and parse result sets.

  • Perform updates, inserts and deletes on relational data using SQL actions.

  • Manage queries and updates in transaction contexts.

  • Derive information from parsed XML content using XPath expressions.

  • Implement conditional processing and loops based on XML information.

  • Apply XSLT transformations to XML content.

  • Implement a simple Web service that reads and writes SOAP.

  • Understand and appreciate the role of Java Servlets in the overall Java 2 Enterprise Edition architecture, and as the best Java solution to HTTP application development.

  • Use request and response objects provided to a servlet to read CGI parameters and to produce an HTML response.

  • Develop interactive Web applications using HTML forms and servlets.

  • Manage complex conversations with HTTP clients using session attributes.

  • Understand the role of JDBC in Java persistence code, and use JDBC for persistence in servlet applications.

  • Preserve portability and ease of administration for a servlet application by parameterizing servlet code, using initialization parameters, properties files, and JNDI.

  • Use JavaBeans classes to share complex business data between components.

  • Implement filters to adapt existing servlets with new features, and to maximize the decomposition of logic between vertical business functions and horizontal facilities.


Comparison of JSP vs. similar technologies or concepts

JSP vs. Active Server Pages (ASP)

  • The advantages of JSP are twofold. First, the dynamic part is written in Java, not Visual Basic or other MS specific language, so it is more powerful and easier to use. Second, it is portable to other operating systems and non-Microsoft Web servers.

JSP vs. Pure Servlets

  • It is more convenient to write (and to modify!) regular HTML than to have plenty of println statements that generate the HTML.

JSP vs. Server-Side Includes (SSI)

  • SSI is really only intended for simple inclusions, not for "real" programs that use form data, make database connections, and the like.

JSP vs. JavaScript

  • JavaScript can generate HTML dynamically on the client but can hardly interact with the web server to perform complex tasks like database access and image processing etc.

JSP vs. Static HTML

  • Regular HTML, of course, cannot contain dynamic information.

Taught by

Uplatz Training

Reviews

4.3 rating at Udemy based on 21 ratings

Start your review of JSP (Java Server Pages) Comprehensive Course

Never Stop Learning.

Get personalized course recommendations, track subjects and courses with reminders, and more.

Someone learning on their laptop while sitting on the floor.