Module 1 - Servlets, Form Handling and Security
3.5 hours (approx)
Having problems? check the errata
Introduction 20m 18s An introduction to the course. For this second edition of the course, we use an embedded version of Tomcat, which makes for easier and faster development. |
Preview |
Getting started with Servlets 38m 7s Servlets are the most basic tool in Java Web Development. Although professional projects rarely use them directly, they are still often "behind the scenes" and it is very useful to have a knowledge of how they work. |
Watch |
Servlet Exercise 8m 21s Your chance to practice building a servlet. |
Watch |
Handing Forms 16m 31s How to pass data from the webpage to your Java code. |
Watch |
GET and POST 26m 30s Any good web developer needs to know the difference between these two methods of sending data to server side code. |
Watch |
POST-REDIRECT-GET 19m 4s This is a common "pattern" for developing the flow of webpages; it solves a common problem in web applications and avoids such horrors as duplicate submissions. |
Watch |
Sessions and Cookies 40m 5s How to use Server Side Sessions, and where Cookies fit in. |
Watch |
Servlet Security 33m 29s How to use BASIC and FORM authentication using the basic web.xml based syntax provided in the servlet standard. |
Watch |