Đang chuẩn bị liên kết để tải về tài liệu:
Introduction to java programming: Chapter 34 - Servlets

Đang chuẩn bị nút TẢI XUỐNG, xin hãy chờ

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 34.2 . To run servlets with Tomcat 34.3 . To know the servlets API 34.4 . To create simple servlets 34.5 . To create and process HTML forms 34.6 . To develop servlets to access databases 34.7 . To use hidden fields cookies and HttpSession to track sessions 34.8 . To send images from servlets 34.9 . 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. .