tailieunhanh - Introduction to java programming: Chapter 34 - Servlets

Introduction to java programming: Chapter 34 - Servlet's Objectives is to understand the concept of servlets; run servlets with Tomcat; know the servlets API; create simple servlets; create and process HTML forms; develop servlets to access databases. | Chapter 34 Servlets Liang Introduction to Java Programming Sixth Edition c 2005 Pearson Education Inc. All rights reserved. 0-13-148952-6 1 Objectives To understand the concept of servlets . To run servlets with Tomcat . To know the servlets API . To create simple servlets . To create and process HTML forms . To develop servlets to access databases . To use hidden fields cookies and HttpSession to track sessions . To send images from servlets . Liang Introduction to Java Programming Sixth Edition c 2005 Pearson Education Inc. All rights reserved. 0-13-148952-6 Understand the concept of servlets Servlet technology is primarily designed for use with the HTTP protocol of the Web. Servlets are Java programs that run on a Web server. Java servlets can be used to process client requests or produce dynamic Web pages. Liang Introduction to Java Programming Sixth Edition c 2005 Pearson Education Inc. All rights reserved. .