Web Application Developer’s Guide ppt

248 292 0
Web Application Developer’s Guide ppt

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Web Application Developer’s Guide VERSION 6 Borland Software Corporation 100 Enterprise Way, Scotts Valley, CA 95066-3249 www.borland.com Borland ® JBuilder ™ Refer to the file DEPLOY.TXT located in the redist directory of your JBuilder product for a complete list of files that you can distribute in accordance with the JBuilder License Statement and Limited Warranty. Borland Software Corporation may have patents and/or pending patent applications covering subject matter in this document. Please refer to the product CD or the About dialog box for the list of applicable patents. The furnishing of this document does not give you any license to these patents. C OPYRIGHT © 1997–2001 Borland Software Corporation. All rights reserved. All Borland brand and product names are trademarks or registered trademarks of Borland Software Corporation in the United States and other countries. All other marks are the property of their respective owners. For third-party conditions and disclaimers, see the Release Notes on your JBuilder product CD. Printed in the U.S.A. JBE0060WW21003 1E1R0901 0102030405-9 8 7 6 54321 PDF i Chapter 1 Introduction 1-1 Documentation conventions . . . . . . . . . . . 1-3 Note to Macintosh users . . . . . . . . . . . . 1-5 Contacting Borland developer support . . . . . 1-5 Online resources . . . . . . . . . . . . . . . . 1-6 World Wide Web . . . . . . . . . . . . . . . . 1-6 Borland newsgroups . . . . . . . . . . . . . . 1-6 Usenet newsgroups . . . . . . . . . . . . . . 1-6 Reporting bugs . . . . . . . . . . . . . . . . . 1-7 Chapter 2 Overview of the web application development process 2-1 Applets . . . . . . . . . . . . . . . . . . . . . . . 2-2 Servlets . . . . . . . . . . . . . . . . . . . . . . . 2-3 JavaServer Pages (JSP). . . . . . . . . . . . . . . 2-3 InternetBeans Express . . . . . . . . . . . . . . . 2-5 Deciding which technologies to use in your web application . . . . . . . . . . . . . . 2-5 The basic web application development process. . . . . . . . . . . . . . . . . . . . . . . 2-6 Web applications vs. distributed applications . . . . . . . . . . . . . . . . . . . . 2-7 Chapter 3 Working with WebApps and WAR files 3-1 The WebApp . . . . . . . . . . . . . . . . . . . . 3-1 Web archive (WAR) files . . . . . . . . . . . . . 3-2 Tools for working with WebApps and WAR files . . . . . . . . . . . . . . . . . . . . . 3-2 The Web Application wizard . . . . . . . . . . . 3-3 The WebApp and its properties . . . . . . . . . 3-4 Root directory. . . . . . . . . . . . . . . . . . 3-4 Deployment descriptors . . . . . . . . . . . . 3-5 WebApp properties . . . . . . . . . . . . . . 3-5 The WebApp page . . . . . . . . . . . . . 3-5 The Classes page . . . . . . . . . . . . . . 3-6 The Dependencies page . . . . . . . . . . 3-8 The Manifest page . . . . . . . . . . . . . 3-9 The WAR file . . . . . . . . . . . . . . . . . . . .3-10 Applets in a WAR file . . . . . . . . . . . . . 3-11 Chapter 4 Working with applets 4-1 How do applets work? . . . . . . . . . . . . . . . 4-2 The <applet> tag . . . . . . . . . . . . . . . . . . 4-2 Sample <applet> tag . . . . . . . . . . . . . . 4-2 <applet> tag attributes . . . . . . . . . . . . . 4-3 Common mistakes in the <applet> tag . . . . 4-4 Browser issues. . . . . . . . . . . . . . . . . . . . 4-5 Java support . . . . . . . . . . . . . . . . . . . 4-5 Getting the preferred browser to the end user. . . . . . . . . . . . . . . . . . . . . 4-5 Supporting multiple browsers . . . . . . . . . 4-6 Differences in Java implementation . . . . . . 4-6 Solutions to browser issues . . . . . . . . . . . . 4-7 Additional tips for making applets work . . . . 4-8 Security and the security manager . . . . . . . 4-10 The sandbox . . . . . . . . . . . . . . . . . . 4-10 Applet restrictions. . . . . . . . . . . . . . . 4-11 Solutions to security problems . . . . . . . . . 4-11 Using third-party libraries . . . . . . . . . . . . 4-12 Deploying applets . . . . . . . . . . . . . . . . 4-13 Testing applets . . . . . . . . . . . . . . . . . . 4-13 Basic testing steps . . . . . . . . . . . . . . . 4-14 Testing in the browsers . . . . . . . . . . . . 4-15 JBuilder and applets . . . . . . . . . . . . . . . 4-15 Creating applets with the Applet wizard. . . . . . . . . . . . . . . . . . . . . 4-16 Running applets . . . . . . . . . . . . . . . . 4-19 JBuilder’s AppletTestbed and Sun’s appletviewer. . . . . . . . . . . . 4-20 Running JDK 1.1.x applets in JBuilder . . . . . . . . . . . . . . . . . . 4-20 Running JDK 1.2 applets in JBuilder. . . 4-20 Debugging applets . . . . . . . . . . . . . . 4-21 Debugging applets in the Java Plug-in. . . . . . . . . . . . . . . . . . . 4-22 Deploying applets in JBuilder . . . . . . . . 4-23 Chapter 5 Working with servlets 5-1 Servlets and JSPs . . . . . . . . . . . . . . . . . . 5-2 Servlets and web servers . . . . . . . . . . . . . . 5-3 The servlet API . . . . . . . . . . . . . . . . . . . 5-3 The servlet.HTTP package . . . . . . . . . . . 5-4 Contents ii The servlet lifecycle . . . . . . . . . . . . . . . . 5-5 Constructing and initializing the servlet . . . . . . . . . . . . . . . . . . . . . 5-5 Handling client requests. . . . . . . . . . . . 5-6 Servlets and multi-threading . . . . . . . . . 5-6 Destroying a servlet . . . . . . . . . . . . . . 5-6 Servlet-aware HTML . . . . . . . . . . . . . . . 5-7 HTTP-specific servlets. . . . . . . . . . . . . . . 5-7 How servlets are used . . . . . . . . . . . . . . . 5-8 Deploying servlets . . . . . . . . . . . . . . . . . 5-8 Chapter 6 Creating servlets in JBuilder 6-1 Servlet wizard options. . . . . . . . . . . . . . . 6-1 Naming and Type page . . . . . . . . . . . . 6-1 Standard Servlet Details page. . . . . . . . . 6-3 Generate Content Type option . . . . . . 6-4 Implement Methods options . . . . . . . 6-5 SHTML File Details options . . . . . . . . 6-6 Naming Options page . . . . . . . . . . . . . 6-6 Parameters page . . . . . . . . . . . . . . . . 6-8 Listener Servlet Details page . . . . . . . . . 6-9 Invoking servlets. . . . . . . . . . . . . . . . . . 6-9 Invoking a servlet from a browser window . . . . . . . . . . . . . . . . . . . . 6-9 Calling a servlet from an HTML page . . . .6-10 Internationalizing servlets . . . . . . . . . . . . 6-11 Writing a data-aware servlet . . . . . . . . . . . 6-12 Chapter 7 Tutorial: Creating a simple servlet 7-1 Step 1: Creating the project . . . . . . . . . . . . 7-2 Step 2: Creating the WebApp . . . . . . . . . . . 7-2 Step 3: Creating the servlet with the Servlet wizard . . . . . . . . . . . . . . . . . . 7-3 Step 4: Adding code to the servlet . . . . . . . . 7-6 Step 5: Compiling and running the servlet . . . 7-7 Chapter 8 Tutorial: Creating a servlet that updates a guestbook 8-1 Step 1: Creating the project . . . . . . . . . . . . 8-2 Step 2: Creating the WebApp . . . . . . . . . . . 8-2 Step 3: Creating the servlets . . . . . . . . . . . 8-3 Step 4: Creating the data module. . . . . . . . . 8-7 Step 5: Adding database components to the data module . . . . . . . . . . . . . . . . . 8-8 Step 6: Creating the data connection to the DBServlet . . . . . . . . . . . . . . . . . . 8-11 Step 7: Adding an input form to FormServlet . . . . . . . . . . . . . . . . . . . 8-11 Step 8: Adding code to connect DBServlet to the data module . . . . . . . . . 8-12 Step 9: Adding code to render the Guestbook SIGNATURES table . . . . . . . . 8-13 What the doGet() method does . . . . . . . 8-14 Step 10: Adding business logic to the data module . . . . . . . . . . . . . . . . . . . 8-16 Step 11: Compiling and running your project . . . . . . . . . . . . . . . . . . . . . . 8-17 Chapter 9 Developing JavaServer Pages 9-1 The JSP API . . . . . . . . . . . . . . . . . . . . . 9-2 JSPs in JBuilder . . . . . . . . . . . . . . . . . . . 9-3 The JSP wizard. . . . . . . . . . . . . . . . . . 9-4 Developing a JSP . . . . . . . . . . . . . . . . 9-4 Compiling a JSP . . . . . . . . . . . . . . . . . 9-4 Running a JSP . . . . . . . . . . . . . . . . . . 9-4 Debugging a JSP. . . . . . . . . . . . . . . . . 9-4 Deploying a JSP . . . . . . . . . . . . . . . . . 9-5 Additional JSP resources . . . . . . . . . . . . . . 9-5 Chapter 10 Tutorial: Creating a JSP using the JSP wizard 10-1 Step 1: Creating a new project . . . . . . . . . . 10-1 Step 2: Creating a new WebApp. . . . . . . . . 10-2 Step 3: Using the JSP wizard. . . . . . . . . . . 10-3 Step 4: Adding functionality to the JavaBean . . . . . . . . . . . . . . . . . . . . . 10-4 Step 5: Modifying the JSP code . . . . . . . . . 10-4 Step 6: Running the JSP . . . . . . . . . . . . . 10-5 Using the Web View. . . . . . . . . . . . . . 10-7 Debugging the JSP . . . . . . . . . . . . . . 10-7 Deploying the JSP . . . . . . . . . . . . . . . 10-7 Chapter 11 Using InternetBeans Express 11-1 Overview of InternetBeans Express classes . . . . . . . . . . . . . . . . . . . . . . 11-2 Using InternetBeans Express with servlets. . . 11-3 Displaying live web pages with servlets using InternetBeans Express . . . 11-3 iii Posting data with servlets using InternetBeans Express . . . . . . . . . . . . 11-4 Parsing pages . . . . . . . . . . . . . . . . . . 11-5 Generating tables . . . . . . . . . . . . . . . . 11-5 Using InternetBeans Express with JSPs . . . . . 11-6 Table of InternetBeans tags . . . . . . . . . . 11-8 Format of internetbeans.tld . . . . . . . . . . 11-9 Chapter 12 Tutorial: Creating a servlet with InternetBeans Express 12-1 Step 1: Creating a new project . . . . . . . . . .12-1 Step 2: Creating a new WebApp . . . . . . . . . 12-2 Step 3: Using the Servlet wizard . . . . . . . . .12-3 Step 4: Creating the DataModule. . . . . . . . . 12-4 Step 5: Designing the HTML template page . .12-5 Step 6: Connecting the servlet to the DataModule. . . . . . . . . . . . . . . . . . . .12-7 Step 7: Designing the servlet . . . . . . . . . . .12-8 Step 8: Editing the servlet . . . . . . . . . . . . 12-10 Step 9: Running the servlet . . . . . . . . . . . 12-11 Deploying the servlet . . . . . . . . . . . . 12-11 Chapter 13 Tutorial: Creating a JSP with InternetBeans Express 13-1 Step 1: Creating a new project . . . . . . . . . .13-1 Step 2: Creating a new WebApp . . . . . . . . . 13-2 Step 3: Using the JSP wizard . . . . . . . . . . . 13-3 Step 4: Designing the HTML portion of the JSP . . . . . . . . . . . . . . . . . . . . .13-4 Step 5: Adding the InternetBeans database tag. . . . . . . . . . . . . . . . . . . .13-5 Step 6: Adding the InternetBeans query tag . . . . . . . . . . . . . . . . . . . . .13-6 Step 7: Adding the InternetBeans table tag . . . . . . . . . . . . . . . . . . . . . .13-6 Step 8: Adding the InternetBeans control tags . . . . . . . . . . . . . . . . . . . . 13-7 Step 9: Adding the InternetBeans submit tag. . . . . . . . . . . . . . . . . . . . .13-7 Step 10: Adding the submitPerformed() method . . . . . . . . . . . . . . . . . . . . . .13-8 Step 11: Adding code to insert a row . . . . . .13-8 Step 12: Adding the JDataStore Server library to the project . . . . . . . . . . . . . . . 13-9 Step 13: Running the JSP . . . . . . . . . . . . 13-10 Deploying the JSP . . . . . . . . . . . . . . 13-10 Chapter 14 Configuring your web server 14-1 Configuring Tomcat . . . . . . . . . . . . . . . 14-1 Setting up JBuilder for web servers other than Tomcat . . . . . . . . . . . . . . . . 14-3 Setting up JBuilder for web servers other than Tomcat (Enterprise users) . . . 14-3 Setting up JBuilder for web servers other than Tomcat (Professional users) . . 14-4 Configuring the selected web server . . . . . . 14-4 Setting web view options. . . . . . . . . . . 14-4 Setting web run options . . . . . . . . . . . 14-6 Creating your own web server plugin . . . . . 14-7 Register as an OpenTool . . . . . . . . . . . 14-8 Setup the web server . . . . . . . . . . . . . 14-8 Start and stop the web server . . . . . . . . 14-8 JSP considerations . . . . . . . . . . . . . . . 14-9 GUI deployment descriptor editor . . . . . 14-9 Chapter 15 Working with web applications in JBuilder 15-1 Compiling your servlet or JSP . . . . . . . . . . 15-2 How URLs run servlets . . . . . . . . . . . . . 15-3 Running your servlet or JSP . . . . . . . . . . . 15-5 Starting your web server . . . . . . . . . . . 15-6 Web view . . . . . . . . . . . . . . . . . . 15-7 Web view source . . . . . . . . . . . . . . 15-7 Stopping the web server . . . . . . . . . . . 15-8 Enabling web commands. . . . . . . . . . . 15-8 Setting run parameters for your servlet or JSP . . . . . . . . . . . . . . . . . 15-9 Setting run properties for a servlet . . . . 15-12 Debugging your servlet or JSP . . . . . . . . 15-13 Chapter 16 Deploying your web application 16-1 Overview . . . . . . . . . . . . . . . . . . . . . 16-1 Archive files . . . . . . . . . . . . . . . . . . 16-1 Deployment descriptors . . . . . . . . . . . 16-2 Applets . . . . . . . . . . . . . . . . . . . . . 16-2 Servlets . . . . . . . . . . . . . . . . . . . . . 16-2 JSPs . . . . . . . . . . . . . . . . . . . . . . . 16-3 Testing your web application . . . . . . . . 16-3 Deployment descriptors . . . . . . . . . . . . . 16-3 The WebApp DD Editor . . . . . . . . . . . 16-4 WebApp DD Editor context menu . . . . 16-5 WebApp Deployment Descriptor page . 16-5 iv Context Parameters page . . . . . . . . .16-6 Filters page . . . . . . . . . . . . . . . . .16-7 Listeners page . . . . . . . . . . . . . . . .16-8 Servlets page . . . . . . . . . . . . . . . . 16-9 Tag Libraries page . . . . . . . . . . . . 16-11 MIME Types page. . . . . . . . . . . . . 16-12 Error Pages page . . . . . . . . . . . . . 16-12 Environment page . . . . . . . . . . . . 16-13 Resource References page . . . . . . . . 16-13 EJB References page . . . . . . . . . . . 16-14 Login page. . . . . . . . . . . . . . . . . 16-14 Security page . . . . . . . . . . . . . . . 16-15 Editing vendor-specific deployment descriptors. . . . . . . . . . . . . . . . . . 16-17 More information on deployment descriptors. . . . . . . . . . . . . . . . . . 16-18 Chapter 17 Launching your web application with Java Web Start 17-1 Considerations for Java Web Start applications . . . . . . . . . . . . . . . . . . . . 17-1 Installing Java Web Start . . . . . . . . . . . . . 17-3 Java Web Start and JBuilder. . . . . . . . . . . .17-3 The application’s JAR file . . . . . . . . . . . 17-4 The application’s JNLP file and homepage . . . . . . . . . . . . . . . . . . .17-5 Tutorial: Running the CheckBoxControl sample application with Java Web Start . . . .17-6 Step 1: Opening and setting up the project . . . . . . . . . . . . . . . . . . . . .17-6 Step 2: Creating the application’s WebApp . . . . . . . . . . . . . . . . . . . .17-7 Step 3: Creating the application’s JAR file. . . . . . . . . . . . . . . . . . . . . 17-8 Step 4: Creating the application’s homepage and JNLP file . . . . . . . . . . .17-9 Step 5: Launching the application . . . . . 17-12 Chapter 18 Using the Borland Enterprise Server Web Edition 18-1 Core services . . . . . . . . . . . . . . . . . . . .18-2 Smart Agent implementation . . . . . . . . .18-2 Connecting Apache Web Server to Tomcat Web Container . . . . . . . . . .18-2 Connecting Tomcat Web Containers to Java Session Service . . . . . . . . . . 18-3 Apache Web Server implementation and configuration . . . . . . . . . . . . . . 18-4 Apache configuration . . . . . . . . . . . 18-5 Apache directory structure . . . . . . . . . . 18-6 Partition services . . . . . . . . . . . . . . . . . 18-6 Tomcat Web Container implementation . . 18-7 Web Application Archive file. . . . . . . 18-8 Java Session Service (JSS) implementation and configuration . . . . . . . . . . . . . . . . 18-9 Session management with JSS . . . . . . 18-9 Managing/Configuring the JSS properties. . . . . . . . . . . . . . . . . . 18-10 Modifying Web component connection . . . .18-11 Modifying Apache. . . . . . . . . . . . 18-12 Modifying the Connector in Tomcat . . 18-12 Connecting to the CORBA Server . . . . . 18-13 Configuring the IIOP Plug-in for use with CORBA . . . . . . . . . . . . 18-14 Interface Definition Language (IDL) for Apache, Tomcat and CORBA Server 18-14 Security for the web components . . . . . . . 18-15 Security for the Apache Web Server. . . . 18-15 Security for the Tomcat Web Container . . 18-16 Authentication setup . . . . . . . . . . 18-16 Authorization setup . . . . . . . . . . . 18-17 Data Exchange using SOAP and Cocoon. . . 18-19 About SOAP . . . . . . . . . . . . . . . . . 18-19 About Cocoon . . . . . . . . . . . . . . . . 18-20 Clustering of multiple web components . . . 18-20 Stateless service . . . . . . . . . . . . . . . 18-21 Load balancing . . . . . . . . . . . . . . 18-22 Fault tolerance . . . . . . . . . . . . . . 18-22 Stateful service. . . . . . . . . . . . . . . . 18-22 Session management . . . . . . . . . . 18-22 Session storage implementation . . . . 18-25 Using JSS for session storage . . . . . . 18-26 Using HTTP sessions . . . . . . . . . . 18-27 Index I-1 v 1.1 Typeface and symbol conventions . . . . . 1-3 1.2 Platform conventions and directories . . . 1-4 2.1 Web application technologies . . . . . . . 2-1 3.1 JBuilder WebApp and WAR file tools . . . 3-2 5.1 Overview of Servlet API . . . . . . . . . . 5-3 6.1 Servlet type options . . . . . . . . . . . . . 6-2 7.1 Servlet wizard parameter options . . . . . 7-5 14.1 Tomcat setup options . . . . . . . . . . . . 14-2 14.2 Tomcat log file options . . . . . . . . . . . 14-2 15.1 URL patterns . . . . . . . . . . . . . . . . 15-4 15.2 URI dialog box trees . . . . . . . . . . . 15-10 17.1 Overview of JNLP API . . . . . . . . . . . 17-2 17.2 Archive Builder options . . . . . . . . . . 17-3 17.3 Web Start Launcher options . . . . . . . . 17-4 18.1 Apache-specific Directories . . . . . . . . 18-6 18.2 JSS Properties . . . . . . . . . . . . . . . 18-10 Tables vi 3.1 Web Application wizard . . . . . . . . . . 3-3 3.2 Project pane showing a WebApp node . . . . . . . . . . . . . . . . . . . . . 3-4 3.3 WebApp page of WebApp Properties dialog box . . . . . . . . . . . . . . . . . . 3-6 3.4 Classes page of WebApp Properties dialog box . . . . . . . . . . . . . . . . . . 3-8 3.5 Dependencies page of WebApp Properties dialog box . . . . . . . . . . . . 3-9 3.6 Manifest page of WebApp Properties dialog box . . . . . . . . . . . . 3-9 3.7 WAR file node open in JBuilder IDE . . . 3-10 3.8 WAR file properties dialog. . . . . . . . . 3-11 6.1 Servlet wizard - Naming and Type page. . . . . . . . . . . . . . . . . . . . . . 6-3 6.2 Servlet wizard - Standard Servlet Details page . . . . . . . . . . . . . . . . . 6-3 6.3 Servlet wizard - Standard servlet Naming Options page . . . . . . . . . . . 6-7 6.4 Servlet wizard - Filter servlet Naming Options page . . . . . . . . . . . 6-8 6.5 Servlet wizard - Parameters page . . . . . 6-8 6.6 Servlet wizard - Listener Servlet Details page . . . . . . . . . . . . . . . . . 6-9 7.1 Servlet running in the web view . . . . . 7-8 7.2 Servlet running after name submitted . . 7-9 10.1 WebApp node in project pane . . . . . . . 10-3 10.2 JSP in web view . . . . . . . . . . . . . . . 10-6 12.1 WebApp node in project pane . . . . . . . 12-3 13.1 WebApp node in project pane . . . . . . . 13-3 13.2 JSP wizard . . . . . . . . . . . . . . . . . .13-3 13.3 Required Libraries tab of Project Properties . . . . . . . . . . . . . . . . . .13-9 13.4 JSP running in the Web View . . . . . . 13-10 15.1 Tomcat startup messages. . . . . . . . . . 15-6 15.2 Web view output . . . . . . . . . . . . . . 15-7 15.3 Web view source . . . . . . . . . . . . . .15-7 16.1 WebApp Deployment Descriptor page of WebApp DD Editor . . . . . . . . 16-6 16.2 Context Parameters page of WebApp DD Editor . . . . . . . . . . . . .16-6 16.3 Filters page of Webapp DD Editor . . . .16-7 16.4 Individual filter node in Webapp DD Editor . . . . . . . . . . . . . . . . . . 16-8 16.5 Listeners page of Webapp DD Editor . . 16-9 16.6 Servlets page of WebApp DD Editor. . . 16-9 16.7 Individual servlet node in WebApp DD Editor . . . . . . . . . . . . . . . . . .16-11 16.8 Tag Libraries page in WebApp DD Editor . . . . . . . . . . . . . . . . . . . .16-11 16.9 MIME Types page in WebApp DD Editor . . . . . . . . . . . . . . . . . . . 16-12 16.10 Error Pages page in WebApp DD Editor . . . . . . . . . . . . . . . . . . . 16-12 16.11 Environment page in WebApp DD Editor . . . . . . . . . . . . . . . . . . . 16-13 16.12 Resource References page in WebApp DD Editor . . . . . . . . . . . 16-13 16.13 EJB References page in WebApp DD Editor . . . . . . . . . . . . . . . . . 16-14 16.14 Login page in WebApp DD Editor . . . 16-15 16.15 Security page in WebApp DD Editor . . . . . . . . . . . . . . . . . . . 16-15 16.16 Security constraint in WebApp DD Editor . . . . . . . . . . . . . . . . . 16-16 16.17 Web resource collection node in WebApp DD Editor . . . . . . . . . . . 16-17 18.1 An architectural view of the services provided by the Borland Enterprise Server Web Edition . . . . . . . . . . . . 18-1 18.2 Client program binding to an object reference . . . . . . . . . . . . . . 18-3 18.3 Connecting multiple servers to a single JSS . . . . . . . . . . . . . . . . . 18-4 18.4 JSS Management with two Tomcat Web Container instances . . . . . . . . 18-10 18.5 Web components connection via IIOP .18-11 18.6 Connecting from Apache to a CORBA server . . . . . . . . . . . . . . 18-13 18.7 Three-tier authorization scheme . . . . 18-18 18.8 Apache and Tomcat communicate via IIOP . . . . . . . . . . . . . . . . . . 18-21 18.9 Session Management for multiple Tomcats . . . . . . . . . . . . . . . . . . 18-23 18.10 JSS providing session management to multiple Tomcats . . . . . . . . . . . 18-24 Figures Introduction 1-1 Chapter 1 Chapter1 Introduction Web Development is a feature of JBuilder Professional and Enterprise. Applet development is a feature of all editions of JBuilder. The Web Application Developer’s Guide presents some of the technologies available for developing web-based multi-tier applications. A web application is a collection of HTML/XML documents, web components (servlets and JavaServer Pages), and other resources in either a directory structure or archived format known as a web archive (WAR) file. A web application is located on a central server and provides service to a variety of clients. This book details how these technologies are surfaced in JBuilder and how you work with them in the IDE and the editor. It also explains how these technologies fit together in a web application. Choose one of the following topics for more information: • Chapter 2, “Overview of the web application development process” Introduces the technologies discussed in this book, including applets, servlets, JavaServer Pages (JSPs), and InternetBeans Express. • Chapter 3, “Working with WebApps and WAR files” Explains how to create a web application and archive it into a WAR file in JBuilder. This chapter also discusses general WebApp concepts and structure. • Chapter 4, “Working with applets” Explains how to create applets in JBuilder and deploy them to a web server. Discusses the main issues involved in applet development and deployment and presents solutions. • Chapter 5, “Working with servlets” Introduces servlets and the servlet API. 1-2 Web Application Developer’ s Guide Introduction • Chapter 6, “Creating servlets in JBuilder” Explains the Servlet wizard options, how to run servlets, how to internationalize them, and how to create data-aware servlets. • Chapter 7, “Tutorial: Creating a simple servlet” Takes you through the steps of writing a simple servlet that accepts user input and counts the number of visitors to a site. • Chapter 8, “Tutorial: Creating a servlet that updates a guestbook” Takes you through the steps of writing a servlet that connects to a JDataStore database, accepts user input, and saves data back to the database. • Chapter 9, “Developing JavaServer Pages” Introduces JSPs and the JSP API. Explains how to use the JSP wizard to create a JSP. • Chapter 10, “Tutorial: Creating a JSP using the JSP wizard” Takes you through the steps of writing a JSP that accepts and displays user input and counts how many times a web page has been visited. • Chapter 11, “Using InternetBeans Express” Explains the InternetBeans library and how to use the components with servlets and JSPs. • Chapter 12, “Tutorial: Creating a servlet with InternetBeans Express” Takes you through the steps of writing a servlet that uses InternetBeans components to query a database table and displays its contents, accept user input, and save it back to the database. • Chapter 13, “Tutorial: Creating a JSP with InternetBeans Express” Takes you through the steps of writing a JSP that uses InternetBeans components to query a database table and displays its contents, accept user input, and save it back to the database. • Chapter 14, “Configuring your web server” Explains how to configure your web server for running in JBuilder. • Chapter 15, “Working with web applications in JBuilder” Explains how to compile, run, and debug servlets and JSPs. • Chapter 16, “Deploying your web application” Explains how to manage your web application’s deployment descriptors, use JBuilder’s deployment descriptor editor, and deploy your web application. [...]... required for each WebApp You can also edit server-specific deployment descriptors, such as WebLogic’s weblogic.xml, in JBuilder Deployment descriptors and the WebApp DD Editor are discussed in detail in “Deployment descriptors” on page 16-3 Web Application Developer’s Guide The Web Application wizard The Web Application wizard The Web Application wizard creates a new WebApp To display the Web Application. .. on a different machine than the web server You may also want to try different browsers, since the application may appear slightly different in each one Web Application Developer’s Guide Web applications vs distributed applications Web applications vs distributed applications You might be considering using a distributed application for your program rather than a web application Both handle client/server... containing your existing web application If the web application is valid, it can be run from within the JBuilder IDE immediately Working with WebApps and WAR files 3-3 The WebApp and its properties The WebApp and its properties A Java-enabled web server locates a web application by its ServletContext, which maps to the WebApp A WebApp is represented in the JBuilder IDE by a WebApp node This is a node... file are found on the WebApp page of the WebApp Properties dialog box 3-10 Web Application Developer’s Guide The WAR file Figure 3.8 WAR file properties dialog To have JBuilder create a WAR file for your web application, first you need to have a WebApp node in your project You can create this WebApp with the Web Application wizard, available in the object gallery or use the default WebApp You can tell... and WAR files 3-1 Web archive (WAR) files /defaultroot directory If you don’t specify WebApps for your web applications, they go into the default WebApp For more information on how JBuilder works with WebApps, see “The Web Application wizard” on page 3-3 and “The WebApp and its properties” on page 3-4 Web archive (WAR) files A WAR file is an archive file for a web application It’s... the sections called “The Client Tier” and “The Web Tier.” Overview of the web application development process 2-7 2-8 Web Application Developer’s Guide Chapter 3 Working with WebApps and WAR files Chapter3 Web Development is a feature of JBuilder Professional and Enterprise JBuilder provides some important features for managing the structure of your web application There are two key concepts you need... these features: WebApps and web archive (WAR) files The WebApp A WebApp describes the structure for a web application It is essentially a directory tree containing web content used in your application It maps to a ServletContext A deployment descriptor file called web. xml is always associated with each WebApp This deployment descriptor contains the information you need to provide to your web server when... your web application with Java Web Start” Explains how to use Web Start to launch non -web applications from a web browser • Chapter 18, “Using the Borland Enterprise Server Web Edition” Provides an overview of the Core Services, Partition Services, and the IIOP Connection features available in the Borland Enterprise Server Web Edition This document contains many links to external web sites These web. .. provides for working with WebApps and WAR files: Table 3.1 JBuilder WebApp and WAR file tools Tool Web Application wizard A simple wizard for creating a WebApp It allows you to specify the WebApp name, the root directory for the web application s documents, and whether or not to generate a WAR file WebApp node A node in the project pane of the JBuilder IDE representing the WebApp This node has a properties... 3-4 Web Application Developer’s Guide The WebApp and its properties Deployment descriptors Each WebApp must have a WEB- INF directory This directory contains information needed by the web server when the application is deployed This information is in the form of deployment descriptor files These files have xml extensions They are shown in the Deployment Descriptors node in the project pane The WEB- INF . “Launching your web application with Java Web Start” Explains how to use Web Start to launch non -web applications from a web browser. • Chapter 18, “Using the Borland Enterprise Server Web Edition” Provides. our product. 1-8 Web Application Developer’ s Guide Overview of the web application development process 2-1 Chapter 2 Chapter2 Overview of the web application development process Web Development. your web application . . . . . . . . . . . . . . 2-5 The basic web application development process. . . . . . . . . . . . . . . . . . . . . . . 2-6 Web applications vs. distributed applications

Ngày đăng: 27/06/2014, 11:20

Từ khóa liên quan

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan