You'll need to know some basic Java first
Having problems? check the errata for this course.
1 |
Introduction |
Preview
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. | |||
2 |
Getting started with Servlets |
Watch
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. | |||
3 |
Servlet Exercise |
Watch
8m 21s |
|
Your chance to practice building a servlet. | |||
4 |
Handing Forms |
Watch
16m 31s |
|
How to pass data from the webpage to your Java code. | |||
5 |
GET and POST |
Watch
26m 30s |
|
Any good web developer needs to know the difference between these two methods of sending data to server side code. | |||
6 |
POST-REDIRECT-GET |
Watch
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. | |||
7 |
Sessions and Cookies |
Watch
40m 5s |
|
How to use Server Side Sessions, and where Cookies fit in. | |||
8 |
Servlet Security |
Watch
33m 29s |
|
How to use BASIC and FORM authentication using the basic web.xml based syntax provided in the servlet standard. |