The Java EE 6 Tutorial Part No: 821–1841–16 January 2013 Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Copyright and License: The Java EE 6 Tutorial This tutorial is a guide to developing applications for the Java Platform, Enterprise Edition and contains documentation ("Tutorial") and sample code. The "sample code" made available with this Tutorial is licensed separately to you by Oracle under the Berkeley license. If you download any such sample code, you agree to the terms of the Berkeley license. This Tutorial is provided to you by Oracle under the following license terms containing restrictions on use and disclosure and is protected by intellectual property laws. Oracle grants to you a limited, non-exclusive license to use this Tutorial for information purposes only, as an aid to learning about the Java EE platform. Except as expressly permitted in these license terms, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means this Tutorial. Reverse engineering, disassembly, or decompilation of this Tutorial is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If the Tutorial is licensed on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, the use, duplication, disclosure, modification, and adaptation shall be subject to the restrictions and license terms set forth in the applicable Government contract, and, to the extent applicable by the terms of the Government contract, the additional rights set forth in FAR 52.227-19, Commercial Computer Software License (December 2007). Oracle USA, Inc., 500 Oracle Parkway, Redwood City, CA 94065. This Tutorial is not developed or intended for use in any inherently dangerous applications, including applications which may create a risk of personal injury. If you use this Tutorial in dangerous applications, then you shall be responsible to take all appropriate fail-safe, backup, redundancy, and other measures to ensure the safe use. THE TUTORIAL IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT. IN NO EVENT SHALL ORACLE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE OR CONSEQUENTIAL DAMAGES, OR DAMAGES FOR LOSS OF PROFITS, REVENUE, DATA OR DATA USE, INCURRED BY YOU OR ANY THIRD PARTY, WHETHER IN AN ACTION IN CONTRACT OR TORT, EVEN IF ORACLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ORACLE'S ENTIRE LIABILITY FOR DAMAGES HEREUNDER SHALL IN NO EVENT EXCEED ONE THOUSAND DOLLARS (U.S. $1,000). No Technical Support Oracle's technical support organization will not provide technical support, phone support, or updates to you. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners. The sample code and Tutorial may provide access to or information on content, products, and services from third parties. Oracle Corporation and its affiliates are not responsible for and expressly disclaim all warranties of any kind with respect to third-party content, products, and services. Oracle Corporation and its affiliates will not be responsible for any loss, costs, or damages incurred due to your access to or use of third-party content, products, or services. 130131@25097 Contents Preface ...................................................................................................................................................31 Part I Introduction .........................................................................................................................................35 1 Overview ...............................................................................................................................................37 Java EE 6 Platform Highlights ............................................................................................................ 38 Java EE Application Model ................................................................................................................. 39 Distributed Multitiered Applications ............................................................................................... 39 Security .......................................................................................................................................... 41 Java EE Components ................................................................................................................... 42 Java EE Clients .............................................................................................................................. 42 Web Components ........................................................................................................................ 44 Business Components ................................................................................................................. 45 Enterprise Information System Tier .......................................................................................... 46 Java EE Containers .............................................................................................................................. 47 Container Services ....................................................................................................................... 47 Container Types ........................................................................................................................... 48 Web Services Support ......................................................................................................................... 49 XML ............................................................................................................................................... 49 SOAP Transport Protocol ........................................................................................................... 50 WSDL Standard Format .............................................................................................................. 50 Java EE Application Assembly and Deployment ............................................................................. 50 Packaging Applications ...................................................................................................................... 51 Development Roles ............................................................................................................................. 52 Java EE Product Provider ............................................................................................................ 53 Tool Provider ................................................................................................................................ 53 Application Component Provider ............................................................................................. 53 3 Contents Application Assembler ................................................................................................................ 54 Application Deployer and Administrator ................................................................................. 54 Java EE 6 APIs ...................................................................................................................................... 55 Enterprise JavaBeans Technology .............................................................................................. 58 Java Servlet Technology .............................................................................................................. 59 JavaServer Faces Technology ...................................................................................................... 59 JavaServer Pages Technology ..................................................................................................... 60 JavaServer Pages Standard Tag Library ..................................................................................... 60 Java Persistence API ..................................................................................................................... 61 Java Transaction API ................................................................................................................... 61 Java API for RESTful Web Services ........................................................................................... 61 Managed Beans ............................................................................................................................ 61 Contexts and Dependency Injection for the Java EE Platform (JSR 299) ............................. 62 Dependency Injection for Java (JSR 330) .................................................................................. 62 Bean Validation ............................................................................................................................ 62 Java Message Service API ............................................................................................................ 63 Java EE Connector Architecture ................................................................................................ 63 JavaMail API ................................................................................................................................. 63 Java Authorization Contract for Containers ............................................................................ 63 Java Authentication Service Provider Interface for Containers ............................................. 64 Java EE 6 APIs in the Java Platform, Standard Edition 6 and 7 ...................................................... 64 Java Database Connectivity API ................................................................................................. 64 Java Naming and Directory Interface API ................................................................................ 65 JavaBeans Activation Framework .............................................................................................. 65 Java API for XML Processing ..................................................................................................... 65 Java Architecture for XML Binding ........................................................................................... 66 SOAP with Attachments API for Java ........................................................................................ 66 Java API for XML Web Services ................................................................................................. 66 Java Authentication and Authorization Service ....................................................................... 67 GlassFish Server Tools ........................................................................................................................ 67 2 Using the Tutorial Examples .............................................................................................................. 69 Required Software ............................................................................................................................... 69 Java Platform, Standard Edition ................................................................................................. 69 Java EE 6 Software Development Kit ......................................................................................... 70 4 The Java EE 6 Tutorial • January 2013 Contents Java EE 6 Tutorial Component ................................................................................................... 70 NetBeans IDE ............................................................................................................................... 71 Apache Ant ................................................................................................................................... 72 Starting and Stopping the GlassFish Server ...................................................................................... 73 ▼ To Start the GlassFish Server Using NetBeans IDE ................................................................. 74 Starting the Administration Console ................................................................................................ 74 ▼ To Start the Administration Console Using NetBeans IDE ................................................... 74 Starting and Stopping the Java DB Server ......................................................................................... 75 ▼ To Start the Database Server Using NetBeans IDE .................................................................. 75 Building the Examples ........................................................................................................................ 75 Tutorial Example Directory Structure .............................................................................................. 76 Getting the Latest Updates to the Tutorial ....................................................................................... 77 ▼ To Update the Tutorial through the Update Center ................................................................ 77 Debugging Java EE Applications ....................................................................................................... 77 Using the Server Log .................................................................................................................... 77 Using a Debugger ......................................................................................................................... 78 Part II The Web Tier ......................................................................................................................................... 79 3 Getting Started with Web Applications ........................................................................................... 81 Web Applications ................................................................................................................................ 81 Web Application Lifecycle ................................................................................................................. 83 Web Modules: The hello1 Example ................................................................................................. 84 Examining the hello1 Web Module ......................................................................................... 85 Packaging a Web Module ............................................................................................................ 88 Deploying a Web Module ........................................................................................................... 90 Running a Deployed Web Module ............................................................................................ 90 Listing Deployed Web Modules ................................................................................................. 91 Updating a Web Module ............................................................................................................. 91 Dynamic Reloading ..................................................................................................................... 91 Undeploying Web Modules ........................................................................................................ 92 Configuring Web Applications: The hello2 Example ................................................................... 93 Mapping URLs to Web Components ........................................................................................ 93 Examining the hello2 Web Module ......................................................................................... 94 Running the hello2 Example ..................................................................................................... 95 5 Contents Declaring Welcome Files ............................................................................................................ 97 Setting Context Parameters ........................................................................................................ 97 Mapping Errors to Error Screens ............................................................................................... 98 Declaring Resource References .................................................................................................. 99 Further Information about Web Applications ............................................................................... 101 4 JavaServer Faces Technology ..........................................................................................................103 What Is a JavaServer Faces Application? ......................................................................................... 104 JavaServer Faces Technology Benefits ............................................................................................ 105 Creating a Simple JavaServer Faces Application ............................................................................ 106 Developing the Managed Bean ................................................................................................. 106 Creating the Web Page .............................................................................................................. 107 Mapping the FacesServlet Instance ...................................................................................... 108 The Lifecycle of the hello Application ................................................................................... 108 Running the hello Application ............................................................................................... 109 Further Information about JavaServer Faces Technology ............................................................ 110 5 Introduction to Facelets ...................................................................................................................111 What Is Facelets? ................................................................................................................................ 111 Developing a Simple Facelets Application ..................................................................................... 113 Creating a Facelets Application ................................................................................................ 113 Configuring the Application ..................................................................................................... 116 Running the guessnumber Facelets Example ......................................................................... 117 Using Facelets Templates ................................................................................................................. 119 Composite Components .................................................................................................................. 121 Web Resources ................................................................................................................................... 123 6 Expression Language ........................................................................................................................125 Overview of the EL ............................................................................................................................ 125 Immediate and Deferred Evaluation Syntax .................................................................................. 126 Immediate Evaluation ............................................................................................................... 127 Deferred Evaluation ................................................................................................................... 127 Value and Method Expressions ....................................................................................................... 128 Value Expressions ...................................................................................................................... 128 6 The Java EE 6 Tutorial • January 2013 Contents Method Expressions .................................................................................................................. 132 Defining a Tag Attribute Type ......................................................................................................... 134 Literal Expressions ............................................................................................................................ 135 Operators ............................................................................................................................................ 136 Reserved Words ................................................................................................................................. 136 Examples of EL Expressions ............................................................................................................. 137 7 Using JavaServer Faces Technology in Web Pages ...................................................................... 139 Setting Up a Page ............................................................................................................................... 139 Adding Components to a Page Using HTML Tags ....................................................................... 140 Common Component Tag Attributes ..................................................................................... 142 Adding HTML Head and Body Tags ....................................................................................... 145 Adding a Form Component ..................................................................................................... 146 Using Text Components ........................................................................................................... 147 Using Command Component Tags for Performing Actions and Navigation ................... 152 Adding Graphics and Images with the h:graphicImage Tag ............................................... 153 Laying Out Components with the h:panelGrid and h:panelGroup Tags ......................... 154 Displaying Components for Selecting One Value ................................................................. 156 Displaying Components for Selecting Multiple Values ........................................................ 158 Using the f:selectItem and f:selectItems Tags .............................................................. 159 Displaying the Results from Selection Components ............................................................. 161 Using Data-Bound Table Components .................................................................................. 161 Displaying Error Messages with the h:message and h:messages Tags .............................. 164 Creating Bookmarkable URLs with the h:button and h:link Tags ................................... 165 Using View Parameters to Configure Bookmarkable URLs ................................................. 166 The bookmarks Example Application ...................................................................................... 167 Resource Relocation Using h:outputScript and h:outputStylesheet Tags ................. 169 Using Core Tags ................................................................................................................................ 171 8 Using Converters, Listeners, and Validators ................................................................................. 175 Using the Standard Converters ........................................................................................................ 175 Converting a Component’s Value ............................................................................................ 176 Using DateTimeConverter ....................................................................................................... 177 Using NumberConverter ........................................................................................................... 179 Registering Listeners on Components ............................................................................................ 180 7 Contents Registering a Value-Change Listener on a Component ........................................................ 181 Registering an Action Listener on a Component ................................................................... 182 Using the Standard Validators ......................................................................................................... 183 Validating a Component’s Value ............................................................................................. 185 Using LongRangeValidator ..................................................................................................... 185 Referencing a Managed Bean Method ............................................................................................ 186 Referencing a Method That Performs Navigation ................................................................. 187 Referencing a Method That Handles an Action Event .......................................................... 187 Referencing a Method That Performs Validation .................................................................. 187 Referencing a Method That Handles a Value-Change Event ............................................... 188 9 Developing with JavaServer Faces Technology ........................................................................... 189 Managed Beans in JavaServer Faces Technology .......................................................................... 189 Creating a Managed Bean ......................................................................................................... 190 Using the EL to Reference Managed Beans ............................................................................. 191 Writing Bean Properties ................................................................................................................... 192 Writing Properties Bound to Component Values ................................................................. 193 Writing Properties Bound to Component Instances ............................................................. 198 Writing Properties Bound to Converters, Listeners, or Validators ..................................... 199 Writing Managed Bean Methods .................................................................................................... 200 Writing a Method to Handle Navigation ................................................................................ 201 Writing a Method to Handle an Action Event ........................................................................ 202 Writing a Method to Perform Validation ............................................................................... 202 Writing a Method to Handle a Value-Change Event ............................................................. 203 Using Bean Validation ...................................................................................................................... 204 Validating Null and Empty Strings .......................................................................................... 207 10 JavaServer Faces Technology: Advanced Concepts ..................................................................... 209 The Lifecycle of a JavaServer Faces Application ............................................................................ 210 Overview of the JavaServer Faces Lifecycle ............................................................................. 210 Restore View Phase .................................................................................................................... 213 Apply Request Values Phase ..................................................................................................... 213 Process Validations Phase ......................................................................................................... 214 Update Model Values Phase ..................................................................................................... 214 Invoke Application Phase ......................................................................................................... 215 8 The Java EE 6 Tutorial • January 2013 Contents Render Response Phase ............................................................................................................. 215 Partial Processing and Partial Rendering ....................................................................................... 216 The Lifecycle of a Facelets Application ........................................................................................... 216 User Interface Component Model .................................................................................................. 217 User Interface Component Classes .......................................................................................... 217 Component Rendering Model ................................................................................................. 219 Conversion Model ..................................................................................................................... 220 Event and Listener Model ......................................................................................................... 221 Validation Model ....................................................................................................................... 222 Navigation Model ...................................................................................................................... 223 11 Using Ajax with JavaServer Faces Technology ............................................................................. 227 Overview of Ajax ............................................................................................................................... 228 Using Ajax Functionality with JavaServer Faces Technology ...................................................... 228 Using Ajax with Facelets ................................................................................................................... 229 Using the f:ajax Tag ................................................................................................................ 229 Sending an Ajax Request ................................................................................................................... 231 Using the event Attribute ......................................................................................................... 231 Using the execute Attribute ..................................................................................................... 232 Using the immediate Attribute ................................................................................................. 232 Using the listener Attribute ................................................................................................... 233 Monitoring Events on the Client ..................................................................................................... 233 Handling Errors ................................................................................................................................. 234 Receiving an Ajax Response ............................................................................................................. 234 Ajax Request Lifecycle ...................................................................................................................... 235 Grouping of Components ................................................................................................................ 236 Loading JavaScript as a Resource ..................................................................................................... 236 Using JavaScript API in a Facelets Application ...................................................................... 237 Using the @ResourceDependency Annotation in a Bean Class ............................................ 238 The ajaxguessnumber Example Application ................................................................................ 238 The ajaxguessnumber Source Files ......................................................................................... 239 Running the ajaxguessnumber Example ................................................................................ 240 Further Information about Ajax in JavaServer Faces Technology ............................................... 242 9 Contents 12 13 Composite Components: Advanced Topics and Example ........................................................... 243 Attributes of a Composite Component .......................................................................................... 243 Invoking a Managed Bean ................................................................................................................ 244 Validating Composite Component Values .................................................................................... 245 The compositecomponentlogin Example Application ................................................................ 245 The Composite Component File .............................................................................................. 245 The Using Page ........................................................................................................................... 246 The Managed Bean .................................................................................................................... 247 Running the compositecomponentlogin Example ............................................................... 248 Creating Custom UI Components and Other Custom Objects ................................................... 251 Determining Whether You Need a Custom Component or Renderer ....................................... 253 When to Use a Custom Component ........................................................................................ 253 When to Use a Custom Renderer ............................................................................................. 254 Component, Renderer, and Tag Combinations ..................................................................... 255 Understanding the Image Map Example ........................................................................................ 256 Why Use JavaServer Faces Technology to Implement an Image Map? ............................... 256 Understanding the Rendered HTML ...................................................................................... 257 Understanding the Facelets Page ............................................................................................. 258 Configuring Model Data ........................................................................................................... 259 Summary of the Image Map Application Classes ................................................................... 260 Steps for Creating a Custom Component ....................................................................................... 261 Creating Custom Component Classes ............................................................................................ 262 Specifying the Component Family .......................................................................................... 264 Performing Encoding ................................................................................................................ 265 Performing Decoding ................................................................................................................ 267 Enabling Component Properties to Accept Expressions ...................................................... 268 Saving and Restoring State ........................................................................................................ 269 Delegating Rendering to a Renderer ............................................................................................... 270 Creating the Renderer Class ..................................................................................................... 270 Identifying the Renderer Type ................................................................................................. 272 Implementing an Event Listener ..................................................................................................... 273 Implementing Value-Change Listeners .................................................................................. 273 Implementing Action Listeners ............................................................................................... 274 Handling Events for Custom Components .................................................................................... 275 10 The Java EE 6 Tutorial • January 2013 Contents Defining the Custom Component Tag in a Tag Library Descriptor ........................................... 276 Using a Custom Component ........................................................................................................... 277 Creating and Using a Custom Converter ....................................................................................... 279 Creating a Custom Converter .................................................................................................. 279 Using a Custom Converter ....................................................................................................... 282 Creating and Using a Custom Validator ........................................................................................ 283 Implementing the Validator Interface ..................................................................................... 284 Specifying a Custom Tag ........................................................................................................... 286 Using a Custom Validator ......................................................................................................... 287 Binding Component Values and Instances to Managed Bean Properties .................................. 288 Binding a Component Value to a Property ............................................................................. 289 Binding a Component Value to an Implicit Object ............................................................... 291 Binding a Component Instance to a Bean Property .............................................................. 292 Binding Converters, Listeners, and Validators to Managed Bean Properties ............................ 293 14 Configuring JavaServer Faces Applications ..................................................................................295 Using Annotations to Configure Managed Beans ......................................................................... 296 Using Managed Bean Scopes .................................................................................................... 296 Application Configuration Resource File ....................................................................................... 297 Ordering of Application Configuration Resource Files ........................................................ 298 Configuring Managed Beans ........................................................................................................... 300 Using the managed-bean Element ............................................................................................ 300 Initializing Properties Using the managed-property Element ............................................ 303 Initializing Maps and Lists ........................................................................................................ 308 Registering Application Messages ................................................................................................... 308 Using FacesMessage to Create a Message .............................................................................. 310 Referencing Error Messages ..................................................................................................... 310 Using Default Validators .................................................................................................................. 311 Registering a Custom Validator ....................................................................................................... 312 Registering a Custom Converter ..................................................................................................... 313 Configuring Navigation Rules ......................................................................................................... 313 ▼ To Configure a Navigation Rule ............................................................................................... 315 Implicit Navigation Rules ......................................................................................................... 316 Registering a Custom Renderer with a Render Kit ........................................................................ 317 Registering a Custom Component .................................................................................................. 319 11 Contents 15 Basic Requirements of a JavaServer Faces Application ................................................................. 320 Configuring an Application with a Web Deployment Descriptor ....................................... 321 Configuring Project Stage ......................................................................................................... 324 Including the Classes, Pages, and Other Resources ............................................................... 324 Java Servlet Technology ...................................................................................................................327 What Is a Servlet? ............................................................................................................................... 328 Servlet Lifecycle ................................................................................................................................. 328 Handling Servlet Lifecycle Events ............................................................................................ 328 Handling Servlet Errors ............................................................................................................. 330 Sharing Information ......................................................................................................................... 330 Using Scope Objects .................................................................................................................. 330 Controlling Concurrent Access to Shared Resources ........................................................... 331 Creating and Initializing a Servlet ................................................................................................... 331 Writing Service Methods .................................................................................................................. 332 Getting Information from Requests ........................................................................................ 332 Constructing Responses ............................................................................................................ 333 Filtering Requests and Responses .................................................................................................... 334 Programming Filters .................................................................................................................. 335 Programming Customized Requests and Responses ............................................................ 336 Specifying Filter Mappings ....................................................................................................... 336 Invoking Other Web Resources ....................................................................................................... 338 Including Other Resources in the Response ........................................................................... 339 Transferring Control to Another Web Component .............................................................. 339 Accessing the Web Context .............................................................................................................. 339 Maintaining Client State ................................................................................................................... 340 Accessing a Session .................................................................................................................... 340 Associating Objects with a Session .......................................................................................... 340 Session Management ................................................................................................................. 341 Session Tracking ........................................................................................................................ 341 Finalizing a Servlet ............................................................................................................................. 342 Tracking Service Requests ........................................................................................................ 342 Notifying Methods to Shut Down ............................................................................................ 343 Creating Polite Long-Running Methods ................................................................................. 343 The mood Example Application ........................................................................................................ 344 12 The Java EE 6 Tutorial • January 2013 Contents Components of the mood Example Application ..................................................................... 344 Running the mood Example ....................................................................................................... 344 Further Information about Java Servlet Technology .................................................................... 346 16 Uploading Files with Java Servlet Technology ............................................................................. 347 The @MultipartConfig Annotation ............................................................................................... 347 The getParts and getPart Methods .............................................................................................. 348 The fileupload Example Application ........................................................................................... 349 Architecture of the fileupload Example Application .......................................................... 349 Running the fileupload Example .......................................................................................... 352 17 Internationalizing and Localizing Web Applications .................................................................. 355 Java Platform Localization Classes .................................................................................................. 355 Providing Localized Messages and Labels ...................................................................................... 356 Establishing the Locale .............................................................................................................. 356 Setting the Resource Bundle ..................................................................................................... 357 Retrieving Localized Messages ................................................................................................. 358 Date and Number Formatting ......................................................................................................... 359 Character Sets and Encodings .......................................................................................................... 359 Character Sets ............................................................................................................................. 359 Character Encoding ................................................................................................................... 360 Part III Web Services ......................................................................................................................................361 18 Introduction to Web Services ..........................................................................................................363 What Are Web Services? ................................................................................................................... 363 Types of Web Services ....................................................................................................................... 363 “Big” Web Services ..................................................................................................................... 364 RESTful Web Services ............................................................................................................... 364 Deciding Which Type of Web Service to Use ................................................................................ 366 19 Building Web Services with JAX-WS ............................................................................................... 367 Creating a Simple Web Service and Clients with JAX-WS ........................................................... 368 Requirements of a JAX-WS Endpoint ..................................................................................... 369 13 Contents Coding the Service Endpoint Implementation Class ............................................................ 370 Building, Packaging, and Deploying the Service .................................................................... 370 Testing the Methods of a Web Service Endpoint ................................................................... 371 A Simple JAX-WS Application Client ..................................................................................... 372 A Simple JAX-WS Web Client ................................................................................................. 374 Types Supported by JAX-WS ........................................................................................................... 377 Schema-to-Java Mapping .......................................................................................................... 377 Java-to-Schema Mapping .......................................................................................................... 378 Web Services Interoperability and JAX-WS .................................................................................. 379 Further Information about JAX-WS ............................................................................................... 379 Building RESTful Web Services with JAX-RS ................................................................................. 381 What Are RESTful Web Services? ................................................................................................... 381 Creating a RESTful Root Resource Class ........................................................................................ 382 Developing RESTful Web Services with JAX-RS ................................................................... 382 Overview of a JAX-RS Application .......................................................................................... 384 The @Path Annotation and URI Path Templates ................................................................... 385 Responding to HTTP Methods and Requests ........................................................................ 387 Using @Consumes and @Produces to Customize Requests and Responses .......................... 390 Extracting Request Parameters ................................................................................................ 392 Example Applications for JAX-RS ................................................................................................... 396 A RESTful Web Service ............................................................................................................. 396 The rsvp Example Application ................................................................................................ 398 Real-World Examples ............................................................................................................... 400 Further Information about JAX-RS ................................................................................................ 401 JAX-RS: Advanced Topics and Example .......................................................................................... 403 Annotations for Field and Bean Properties of Resource Classes ................................................. 403 Extracting Path Parameters ...................................................................................................... 404 Extracting Query Parameters ................................................................................................... 405 Extracting Form Data ................................................................................................................ 405 Extracting the Java Type of a Request or Response ................................................................ 406 Subresources and Runtime Resource Resolution .......................................................................... 407 Subresource Methods ................................................................................................................ 407 Subresource Locators ................................................................................................................ 407 20 21 14 The Java EE 6 Tutorial • January 2013 Contents Integrating JAX-RS with EJB Technology and CDI ...................................................................... 408 Conditional HTTP Requests ............................................................................................................ 409 Runtime Content Negotiation ......................................................................................................... 410 Using JAX-RS With JAXB ................................................................................................................ 412 Using Java Objects to Model Your Data .................................................................................. 414 Starting from an Existing XML Schema Definition ............................................................... 415 Using JSON with JAX-RS and JAXB ........................................................................................ 417 The customer Example Application ............................................................................................... 418 Overview of the customer Example Application ................................................................... 419 The Customer and Address Entity Classes ............................................................................. 419 The CustomerService Class ..................................................................................................... 422 The CustomerClientXML and CustomerClientJSON Classes ............................................... 424 Modifying the Example to Generate Entity Classes from an Existing Schema .................. 426 Running the customer Example .............................................................................................. 428 Part IV Enterprise Beans ................................................................................................................................433 22 Enterprise Beans ................................................................................................................................435 What Is an Enterprise Bean? ............................................................................................................ 435 Benefits of Enterprise Beans ..................................................................................................... 436 When to Use Enterprise Beans ................................................................................................. 436 Types of Enterprise Beans ......................................................................................................... 436 What Is a Session Bean? .................................................................................................................... 437 Types of Session Beans .............................................................................................................. 437 When to Use Session Beans ...................................................................................................... 438 What Is a Message-Driven Bean? .................................................................................................... 439 What Makes Message-Driven Beans Different from Session Beans? .................................. 439 When to Use Message-Driven Beans ....................................................................................... 440 Accessing Enterprise Beans .............................................................................................................. 441 Using Enterprise Beans in Clients ............................................................................................ 441 Deciding on Remote or Local Access ....................................................................................... 442 Local Clients ............................................................................................................................... 443 Remote Clients ........................................................................................................................... 445 Web Service Clients ................................................................................................................... 446 Method Parameters and Access ................................................................................................ 447 15 Contents The Contents of an Enterprise Bean ............................................................................................... 447 Packaging Enterprise Beans in EJB JAR Modules .................................................................. 447 Packaging Enterprise Beans in WAR Modules ...................................................................... 448 Naming Conventions for Enterprise Beans ................................................................................... 449 The Lifecycles of Enterprise Beans .................................................................................................. 450 The Lifecycle of a Stateful Session Bean .................................................................................. 450 The Lifecycle of a Stateless Session Bean ................................................................................. 451 The Lifecycle of a Singleton Session Bean ............................................................................... 451 The Lifecycle of a Message-Driven Bean ................................................................................. 452 Further Information about Enterprise Beans ................................................................................ 453 23 Getting Started with Enterprise Beans .......................................................................................... 455 Creating the Enterprise Bean ........................................................................................................... 455 Coding the Enterprise Bean Class ............................................................................................ 456 Creating the converter Web Client ........................................................................................ 456 Running the converter Example ............................................................................................ 457 Modifying the Java EE Application ................................................................................................. 458 ▼ To Modify a Class File ................................................................................................................ 458 24 Running the Enterprise Bean Examples ........................................................................................ 461 The cart Example ............................................................................................................................. 461 The Business Interface ............................................................................................................... 462 Session Bean Class ..................................................................................................................... 463 The @Remove Method ................................................................................................................. 466 Helper Classes ............................................................................................................................. 466 Running the cart Example ....................................................................................................... 466 A Singleton Session Bean Example: counter ................................................................................. 468 Creating a Singleton Session Bean ........................................................................................... 468 The Architecture of the counter Example .............................................................................. 472 Running the counter Example ................................................................................................ 475 A Web Service Example: helloservice ......................................................................................... 476 The Web Service Endpoint Implementation Class ................................................................ 476 Stateless Session Bean Implementation Class ........................................................................ 477 Running the helloservice Example ...................................................................................... 477 Using the Timer Service .................................................................................................................... 479 16 The Java EE 6 Tutorial • January 2013 Contents Creating Calendar-Based Timer Expressions ........................................................................ 479 Programmatic Timers ............................................................................................................... 482 Automatic Timers ...................................................................................................................... 483 Canceling and Saving Timers ................................................................................................... 484 Getting Timer Information ...................................................................................................... 485 Transactions and Timers .......................................................................................................... 485 The timersession Example ..................................................................................................... 485 Running the timersession Example ...................................................................................... 488 Handling Exceptions ......................................................................................................................... 489 25 A Message-Driven Bean Example ...................................................................................................491 Overview of the simplemessage Example ..................................................................................... 491 The simplemessage Application Client ......................................................................................... 492 The Message-Driven Bean Class ..................................................................................................... 493 The onMessage Method ............................................................................................................. 494 Running the simplemessage Example ........................................................................................... 495 Administered Objects for the simplemessage Example ....................................................... 495 ▼ To Run the simplemessage Application Using NetBeans IDE ............................................ 496 ▼ To Run the simplemessage Application Using Ant .............................................................. 496 Removing the Administered Objects for the simplemessage Example .............................. 497 26 Using the Embedded Enterprise Bean Container ........................................................................ 499 Overview of the Embedded Enterprise Bean Container ............................................................... 499 Developing Embeddable Enterprise Bean Applications ............................................................... 499 Running Embedded Applications ............................................................................................ 500 Creating the Enterprise Bean Container ................................................................................. 500 Looking Up Session Bean References ...................................................................................... 502 Shutting Down the Enterprise Bean Container ..................................................................... 502 The standalone Example Application ........................................................................................... 502 ▼ To Run the standalone Example Application ....................................................................... 503 27 Using Asynchronous Method Invocation in Session Beans ....................................................... 505 Asynchronous Method Invocation ................................................................................................. 505 Creating an Asynchronous Business Method ......................................................................... 506 17 Contents Calling Asynchronous Methods from Enterprise Bean Clients ........................................... 507 The async Example Application ...................................................................................................... 508 Architecture of the async Example Application .................................................................... 508 Running the async Example ..................................................................................................... 509 Part V Contexts and Dependency Injection for the Java EE Platform ...................................................513 28 Introduction to Contexts and Dependency Injection for the Java EE Platform .......................515 Overview of CDI ................................................................................................................................ 516 About Beans ....................................................................................................................................... 517 About CDI Managed Beans .............................................................................................................. 517 Beans as Injectable Objects ............................................................................................................... 518 Using Qualifiers ................................................................................................................................. 519 Injecting Beans ................................................................................................................................... 520 Using Scopes ...................................................................................................................................... 520 Overriding the Scope of a Bean at the Point of Injection .............................................................. 522 Giving Beans EL Names .................................................................................................................... 522 Adding Setter and Getter Methods .................................................................................................. 523 Using a Managed Bean in a Facelets Page ....................................................................................... 524 Injecting Objects by Using Producer Methods .............................................................................. 524 Configuring a CDI Application ....................................................................................................... 525 Using the @PostConstruct and @PreDestroy Annotations With CDI Managed Bean Classes ................................................................................................................................................. 525 ▼ To Initialize a Managed Bean Using the @PostConstruct Annotation .............................. 525 ▼ To Prepare for the Destruction of a Managed Bean Using the @PreDestroy Annotation 526 Further Information about CDI ...................................................................................................... 526 29 Running the Basic Contexts and Dependency Injection Examples .......................................... 527 The simplegreeting CDI Example ................................................................................................ 527 The simplegreeting Source Files ........................................................................................... 528 The Facelets Template and Page ............................................................................................... 528 Configuration Files .................................................................................................................... 529 Running the simplegreeting Example .................................................................................. 530 The guessnumber CDI Example ...................................................................................................... 531 The guessnumber Source Files ................................................................................................. 532 18 The Java EE 6 Tutorial • January 2013 The Facelets Page ....................................................................................................................... 536 Running the guessnumber Example ........................................................................................ 537 Contents 30 Contexts and Dependency Injection for the Java EE Platform: Advanced Topics ...................539 Using Alternatives in CDI Applications ......................................................................................... 539 Using Specialization .................................................................................................................. 540 Using Producer Methods, Producer Fields, and Disposer Methods in CDI Applications ....... 541 Using Producer Methods .......................................................................................................... 542 Using Producer Fields to Generate Resources ........................................................................ 543 Using a Disposer Method .......................................................................................................... 543 Using Predefined Beans in CDI Applications ................................................................................ 544 Using Events in CDI Applications ................................................................................................... 545 Defining Events .......................................................................................................................... 545 Using Observer Methods to Handle Events ............................................................................ 545 Firing Events ............................................................................................................................... 546 Using Interceptors in CDI Applications ......................................................................................... 547 Using Decorators in CDI Applications ........................................................................................... 549 Using Stereotypes in CDI Applications .......................................................................................... 550 31 Running the Advanced Contexts and Dependency Injection Examples ................................. 553 The encoder Example: Using Alternatives .................................................................................... 553 The Coder Interface and Implementations ............................................................................. 554 The encoder Facelets Page and Managed Bean ...................................................................... 554 Running the encoder Example ................................................................................................ 556 The producermethods Example: Using a Producer Method To Choose a Bean Implementation ................................................................................................................................. 558 Components of the producermethods Example .................................................................... 559 Running the producermethods Example ................................................................................ 560 The producerfields Example: Using Producer Fields to Generate Resources ........................ 561 The Producer Field for the producerfields Example .......................................................... 561 The producerfields Entity and Session Bean ...................................................................... 563 The producerfields Facelets Pages and Managed Bean ..................................................... 564 Running the producerfields Example .................................................................................. 566 The billpayment Example: Using Events and Interceptors ........................................................ 568 The PaymentEvent Event Class ................................................................................................ 568 19 Contents The PaymentHandler Event Listener ....................................................................................... 568 The billpayment Facelets Pages and Managed Bean ............................................................ 569 The LoggedInterceptor Interceptor Class ............................................................................ 572 Running the billpayment Example ........................................................................................ 573 The decorators Example: Decorating a Bean ............................................................................... 574 Components of the decorators Example .............................................................................. 574 Running the decorators Example .......................................................................................... 575 Part VI Persistence ..........................................................................................................................................577 32 Introduction to the Java Persistence API ...................................................................................... 579 Entities ................................................................................................................................................ 579 Requirements for Entity Classes .............................................................................................. 580 Persistent Fields and Properties in Entity Classes .................................................................. 580 Primary Keys in Entities ............................................................................................................ 585 Multiplicity in Entity Relationships ......................................................................................... 587 Direction in Entity Relationships ............................................................................................. 587 Embeddable Classes in Entities ................................................................................................ 590 Entity Inheritance .............................................................................................................................. 591 Abstract Entities ......................................................................................................................... 591 Mapped Superclasses ................................................................................................................. 591 Non-Entity Superclasses ........................................................................................................... 592 Entity Inheritance Mapping Strategies .................................................................................... 592 Managing Entities .............................................................................................................................. 595 The EntityManager Interface .................................................................................................. 595 Persistence Units ........................................................................................................................ 599 Querying Entities ............................................................................................................................... 600 Further Information about Persistence .......................................................................................... 601 33 Running the Persistence Examples ................................................................................................603 The order Application ...................................................................................................................... 603 Entity Relationships in the order Application ....................................................................... 604 Primary Keys in the order Application ................................................................................... 606 Entity Mapped to More Than One Database Table ............................................................... 610 20 The Java EE 6 Tutorial • January 2013 Contents Cascade Operations in the order Application ....................................................................... 610 BLOB and CLOB Database Types in the order Application ................................................ 611 Temporal Types in the order Application .............................................................................. 612 Managing the order Application’s Entities ............................................................................. 612 Running the order Example ..................................................................................................... 614 The roster Application .................................................................................................................... 615 Relationships in the roster Application ................................................................................. 616 Entity Inheritance in the roster Application ......................................................................... 617 Criteria Queries in the roster Application ............................................................................ 619 Automatic Table Generation in the roster Application ...................................................... 620 Running the roster Example ................................................................................................... 621 The address-book Application ....................................................................................................... 623 Bean Validation Constraints in address-book ...................................................................... 623 Specifying Error Messages for Constraints in address-book .............................................. 624 Validating Contact Input from a JavaServer Faces Application .......................................... 625 Running the address-book Example ...................................................................................... 625 34 The Java Persistence Query Language .......................................................................................... 629 Query Language Terminology ......................................................................................................... 630 Creating Queries Using the Java Persistence Query Language .................................................... 630 Named Parameters in Queries .................................................................................................. 631 Positional Parameters in Queries ............................................................................................. 631 Simplified Query Language Syntax ................................................................................................. 632 Select Statements ........................................................................................................................ 632 Update and Delete Statements ................................................................................................. 632 Example Queries ................................................................................................................................ 633 Simple Queries ........................................................................................................................... 633 Queries That Navigate to Related Entities .............................................................................. 634 Queries with Other Conditional Expressions ........................................................................ 635 Bulk Updates and Deletes ......................................................................................................... 637 Full Query Language Syntax ............................................................................................................ 637 BNF Symbols .............................................................................................................................. 637 BNF Grammar of the Java Persistence Query Language ....................................................... 638 FROM Clause ................................................................................................................................. 642 Path Expressions ........................................................................................................................ 646 21 Contents WHERE Clause ............................................................................................................................... 647 SELECT Clause ............................................................................................................................. 657 ORDER BY Clause ......................................................................................................................... 659 GROUP BY and HAVING Clauses .................................................................................................. 659 35 Using the Criteria API to Create Queries ........................................................................................ 661 Overview of the Criteria and Metamodel APIs .............................................................................. 661 Using the Metamodel API to Model Entity Classes ....................................................................... 663 Using Metamodel Classes ......................................................................................................... 664 Using the Criteria API and Metamodel API to Create Basic Typesafe Queries ......................... 664 Creating a Criteria Query .......................................................................................................... 665 Query Roots ................................................................................................................................ 665 Querying Relationships Using Joins ........................................................................................ 666 Path Navigation in Criteria Queries ........................................................................................ 667 Restricting Criteria Query Results ........................................................................................... 667 Managing Criteria Query Results ............................................................................................ 669 Executing Queries ...................................................................................................................... 671 36 37 Creating and Using String-Based Criteria Queries ...................................................................... 673 Overview of String-Based Criteria API Queries ............................................................................ 673 Creating String-Based Queries ........................................................................................................ 674 Executing String-Based Queries ...................................................................................................... 675 Controlling Concurrent Access to Entity Data with Locking ...................................................... 677 Overview of Entity Locking and Concurrency .............................................................................. 677 Using Optimistic Locking ......................................................................................................... 678 Lock Modes ........................................................................................................................................ 679 Setting the Lock Mode ............................................................................................................... 680 Using Pessimistic Locking ........................................................................................................ 680 38 Using a Second-Level Cache with Java Persistence API Applications .......................................683 Overview of the Second-Level Cache .............................................................................................. 683 Controlling Whether Entities May Be Cached ....................................................................... 684 Specifying the Cache Mode Settings to Improve Performance .................................................... 685 22 The Java EE 6 Tutorial • January 2013 Setting the Cache Retrieval and Store Modes ......................................................................... 686 Controlling the Second-Level Cache Programmatically ....................................................... 687 Contents Part VII Security ...............................................................................................................................................689 39 Introduction to Security in the Java EE Platform ......................................................................... 691 Overview of Java EE Security ........................................................................................................... 692 A Simple Application Security Walkthrough ......................................................................... 692 Features of a Security Mechanism ............................................................................................ 695 Characteristics of Application Security ................................................................................... 696 Security Mechanisms ........................................................................................................................ 697 Java SE Security Mechanisms ................................................................................................... 697 Java EE Security Mechanisms ................................................................................................... 698 Securing Containers .......................................................................................................................... 700 Using Annotations to Specify Security Information ............................................................. 700 Using Deployment Descriptors for Declarative Security ...................................................... 701 Using Programmatic Security .................................................................................................. 701 Securing the GlassFish Server .......................................................................................................... 702 Working with Realms, Users, Groups, and Roles .......................................................................... 702 What Are Realms, Users, Groups, and Roles? ........................................................................ 703 Managing Users and Groups on the GlassFish Server ........................................................... 706 Setting Up Security Roles .......................................................................................................... 707 Mapping Roles to Users and Groups ....................................................................................... 709 Establishing a Secure Connection Using SSL ................................................................................. 710 Verifying and Configuring SSL Support ................................................................................. 711 Further Information about Security ................................................................................................ 711 40 Getting Started Securing Web Applications ................................................................................. 713 Overview of Web Application Security .......................................................................................... 713 Securing Web Applications .............................................................................................................. 715 Specifying Security Constraints ............................................................................................... 715 Specifying Authentication Mechanisms ................................................................................. 719 Specifying an Authentication Mechanism in the Deployment Descriptor ......................... 722 Declaring Security Roles ........................................................................................................... 723 23 Contents Using Programmatic Security with Web Applications ................................................................. 724 Authenticating Users Programmatically ................................................................................. 724 Checking Caller Identity Programmatically ........................................................................... 726 Example Code for Programmatic Security ............................................................................. 727 Declaring and Linking Role References .................................................................................. 728 Examples: Securing Web Applications ........................................................................................... 729 ▼ To Set Up Your System for Running the Security Examples ................................................ 729 The hello2_basicauth Example: Basic Authentication with a Servlet .............................. 730 The hello1_formauth Example: Form-Based Authentication with a JavaServer Faces Application ................................................................................................................................. 734 41 Getting Started Securing Enterprise Applications ...................................................................... 739 Securing Enterprise Beans ................................................................................................................ 739 Securing an Enterprise Bean Using Declarative Security ...................................................... 742 Securing an Enterprise Bean Programmatically .................................................................... 746 Propagating a Security Identity (Run-As) ............................................................................... 747 Deploying Secure Enterprise Beans ......................................................................................... 749 Examples: Securing Enterprise Beans ............................................................................................. 749 The cart-secure Example: Securing an Enterprise Bean with Declarative Security ....... 750 The converter-secure Example: Securing an Enterprise Bean with Programmatic Security ........................................................................................................................................ 754 42 Java EE Security: Advanced Topics .................................................................................................. 759 Working with Digital Certificates ................................................................................................... 759 Creating a Server Certificate ..................................................................................................... 760 Adding Users to the Certificate Realm .................................................................................... 762 Using a Different Server Certificate with the GlassFish Server ............................................. 763 Authentication Mechanisms ............................................................................................................ 764 Client Authentication ................................................................................................................ 764 Mutual Authentication .............................................................................................................. 764 Using Form-Based Login in JavaServer Faces Web Applications ................................................ 769 Using j_security_check in JavaServer Faces Forms ........................................................... 769 Using a Managed Bean for Authentication in JavaServer Faces Applications .................... 770 Using the JDBC Realm for User Authentication ........................................................................... 771 ▼ To Configure a JDBC Authentication Realm ......................................................................... 772 24 The Java EE 6 Tutorial • January 2013 Contents Securing HTTP Resources ................................................................................................................ 775 Securing Application Clients ........................................................................................................... 778 Using Login Modules ................................................................................................................ 779 Using Programmatic Login ...................................................................................................... 779 Securing Enterprise Information Systems Applications ............................................................... 780 Container-Managed Sign-On .................................................................................................. 780 Component-Managed Sign-On ............................................................................................... 780 Configuring Resource Adapter Security ................................................................................. 781 ▼ To Map an Application Principal to EIS Principals ............................................................... 782 Configuring Security Using Deployment Descriptors ................................................................. 783 Specifying Security for Basic Authentication in the Deployment Descriptor .................... 783 Specifying Non-Default Principal-to-Role Mapping in the Deployment Descriptor ....... 784 Further Information about Security ................................................................................................ 785 Part VIII Java EE Supporting Technologies ................................................................................................... 787 43 Introduction to Java EE Supporting Technologies ....................................................................... 789 Transactions in Java EE Applications ............................................................................................. 789 Resources in Java EE Applications ................................................................................................... 790 The Java EE Connector Architecture and Resource Adapters ............................................. 790 Java Database Connectivity Software ...................................................................................... 790 Java Message Service ......................................................................................................................... 791 44 Transactions ...................................................................................................................................... 793 What Is a Transaction? ..................................................................................................................... 793 Container-Managed Transactions .................................................................................................. 794 Transaction Attributes .............................................................................................................. 795 Rolling Back a Container-Managed Transaction .................................................................. 799 Synchronizing a Session Bean’s Instance Variables ............................................................... 799 Methods Not Allowed in Container-Managed Transactions ............................................... 799 Bean-Managed Transactions ........................................................................................................... 800 JTA Transactions ....................................................................................................................... 800 Returning without Committing ............................................................................................... 801 Methods Not Allowed in Bean-Managed Transactions ........................................................ 801 25 Contents 45 46 Transaction Timeouts ....................................................................................................................... 801 ▼ To Set a Transaction Timeout .................................................................................................. 801 Updating Multiple Databases .......................................................................................................... 802 Transactions in Web Components ................................................................................................. 803 Further Information about Transactions ....................................................................................... 803 Resources and Resource Adapters ..................................................................................................805 Resources and JNDI Naming ........................................................................................................... 805 DataSource Objects and Connection Pools ................................................................................... 806 Resource Injection ............................................................................................................................. 807 Field-Based Injection ................................................................................................................. 808 Method-Based Injection ............................................................................................................ 809 Class-Based Injection ................................................................................................................ 810 Resource Adapters and Contracts ................................................................................................... 810 Management Contracts ............................................................................................................. 811 Generic Work Context Contract ............................................................................................. 813 Outbound and Inbound Contracts .......................................................................................... 813 Metadata Annotations ...................................................................................................................... 814 Common Client Interface ................................................................................................................ 815 Using Resource Adapters With Contexts and Dependency Injection for the Java EE Platform (CDI) ................................................................................................................................................... 816 Further Information about Resources ............................................................................................ 817 The Resource Adapter Example ......................................................................................................819 The Resource Adapter ....................................................................................................................... 819 The Message-Driven Bean ............................................................................................................... 820 The Web Application ........................................................................................................................ 820 Running the mailconnector Example ........................................................................................... 820 ▼ Before You Deploy the mailconnector Example .................................................................. 820 ▼ To Build, Package, and Deploy the mailconnector Example Using NetBeans IDE ......... 821 ▼ To Build, Package, and Deploy the mailconnector Example Using Ant ........................... 822 ▼ To Run the mailconnector Example ...................................................................................... 822 47 Java Message Service Concepts ......................................................................................................825 Overview of the JMS API .................................................................................................................. 825 26 The Java EE 6 Tutorial • January 2013 Contents What Is Messaging? ................................................................................................................... 825 What Is the JMS API? ................................................................................................................ 826 When Can You Use the JMS API? ........................................................................................... 826 How Does the JMS API Work with the Java EE Platform? ................................................... 827 Basic JMS API Concepts ................................................................................................................... 828 JMS API Architecture ................................................................................................................ 829 Messaging Domains ................................................................................................................... 829 Message Consumption .............................................................................................................. 832 The JMS API Programming Model ................................................................................................. 832 JMS Administered Objects ....................................................................................................... 833 JMS Connections ....................................................................................................................... 835 JMS Sessions ............................................................................................................................... 835 JMS Message Producers ............................................................................................................ 836 JMS Message Consumers .......................................................................................................... 837 JMS Messages ............................................................................................................................. 839 JMS Queue Browsers ................................................................................................................. 841 JMS Exception Handling ........................................................................................................... 842 Creating Robust JMS Applications .................................................................................................. 842 Using Basic Reliability Mechanisms ........................................................................................ 843 Using Advanced Reliability Mechanisms ............................................................................... 847 Using the JMS API in Java EE Applications ................................................................................... 851 Using @Resource Annotations in Enterprise Bean or Web Components .......................... 852 Using Session Beans to Produce and to Synchronously Receive Messages ........................ 852 Using Message-Driven Beans to Receive Messages Asynchronously .................................. 853 Managing Distributed Transactions ........................................................................................ 856 Using the JMS API with Application Clients and Web Components ................................. 858 Further Information about JMS ....................................................................................................... 858 48 Java Message Service Examples .....................................................................................................859 Writing Simple JMS Applications ................................................................................................... 860 A Simple Example of Synchronous Message Receives .......................................................... 860 A Simple Example of Asynchronous Message Consumption .............................................. 870 A Simple Example of Browsing Messages in a Queue ........................................................... 875 Running JMS Clients on Multiple Systems ............................................................................. 880 Undeploying and Cleaning the Simple JMS Examples .......................................................... 886 27 Contents Writing Robust JMS Applications ................................................................................................... 886 A Message Acknowledgment Example ................................................................................... 887 A Durable Subscription Example ............................................................................................. 889 A Local Transaction Example .................................................................................................. 891 An Application That Uses the JMS API with a Session Bean ....................................................... 897 Writing the Application Components for the clientsessionmdb Example ..................... 897 Creating Resources for the clientsessionmdb Example ..................................................... 900 Running the clientsessionmdb Example ............................................................................. 900 An Application That Uses the JMS API with an Entity ................................................................. 902 Overview of the clientmdbentity Example Application .................................................... 902 Writing the Application Components for the clientmdbentity Example ....................... 904 Creating Resources for the clientmdbentity Example ....................................................... 906 Running the clientmdbentity Example ................................................................................ 906 An Application Example That Consumes Messages from a Remote Server .............................. 910 Overview of the consumeremote Example Modules .............................................................. 910 Writing the Module Components for the consumeremote Example ................................... 911 Creating Resources for the consumeremote Example ........................................................... 911 Using Two Application Servers for the consumeremote Example ....................................... 912 Running the consumeremote Example .................................................................................... 912 An Application Example That Deploys a Message-Driven Bean on Two Servers ..................... 916 Overview of the sendremote Example Modules .................................................................... 916 Writing the Module Components for the sendremote Example ......................................... 918 Creating Resources for the sendremote Example .................................................................. 919 ▼ To Enable Deployment on the Remote System ...................................................................... 920 ▼ To Use Two Application Servers for the sendremote Example ........................................... 920 Running the sendremote Example .......................................................................................... 921 ▼ To Disable Deployment on the Remote System ..................................................................... 926 49 Bean Validation: Advanced Topics ..................................................................................................929 Creating Custom Constraints .......................................................................................................... 929 Using the Built-In Constraints to Make a New Constraint ................................................... 929 Customizing Validator Messages .................................................................................................... 930 The ValidationMessages Resource Bundle .......................................................................... 930 Grouping Constraints ....................................................................................................................... 931 Customizing Group Validation Order .................................................................................... 931 28 The Java EE 6 Tutorial • January 2013 Contents 50 Using Java EE Interceptors ...............................................................................................................933 Overview of Interceptors .................................................................................................................. 933 Interceptor Classes ..................................................................................................................... 934 Interceptor Lifecycle .................................................................................................................. 934 Interceptors and CDI ................................................................................................................. 935 Using Interceptors ............................................................................................................................. 935 Intercepting Method Invocations ............................................................................................ 936 Intercepting Lifecycle Callback Events .................................................................................... 937 Intercepting Timeout Events .................................................................................................... 938 The interceptor Example Application ......................................................................................... 939 Running the interceptor Example ........................................................................................ 940 Part IX Case Studies .......................................................................................................................................943 51 Duke’s Bookstore Case Study Example .......................................................................................... 945 Design and Architecture of Duke’s Bookstore ............................................................................... 945 The Duke’s Bookstore Interface ....................................................................................................... 946 The Book Java Persistence API Entity ...................................................................................... 946 Enterprise Beans Used in Duke’s Bookstore ........................................................................... 947 Facelets Pages and Managed Beans Used in Duke’s Bookstore ............................................ 947 Custom Components and Other Custom Objects Used in Duke’s Bookstore ................... 949 Properties Files Used in Duke’s Bookstore .............................................................................. 949 Deployment Descriptors Used in Duke’s Bookstore ............................................................. 950 Running the Duke’s Bookstore Case Study Application ............................................................... 951 ▼ To Build and Deploy Duke’s Bookstore Using NetBeans IDE .............................................. 951 ▼ To Build and Deploy Duke’s Bookstore Using Ant ................................................................ 951 ▼ To Run Duke’s Bookstore ......................................................................................................... 952 52 Duke’s Tutoring Case Study Example ............................................................................................. 953 Design and Architecture of Duke’s Tutoring ................................................................................. 953 Main Interface .................................................................................................................................... 955 Java Persistence API Entities Used in the Main Interface ..................................................... 955 Enterprise Beans Used in the Main Interface ......................................................................... 956 Facelets Files Used in the Main Interface ................................................................................ 956 29 Contents Helper Classes Used in the Main Interface ............................................................................. 957 Properties Files ........................................................................................................................... 958 Deployment Descriptors Used in Duke’s Tutoring ............................................................... 959 Administration Interface .................................................................................................................. 959 Enterprise Beans Used in the Administration Interface ....................................................... 959 Facelets Files Used in the Administration Interface .............................................................. 960 Running the Duke’s Tutoring Case Study Application ................................................................. 960 Setting Up GlassFish Server ...................................................................................................... 960 Running Duke’s Tutoring ......................................................................................................... 961 53 Duke’s Forest Case Study Example ................................................................................................. 965 Design and Architecture of Duke’s Forest ...................................................................................... 966 The events Project .................................................................................................................... 968 The entities Project ................................................................................................................ 969 The dukes-payment Project ...................................................................................................... 971 The dukes-resources Project ................................................................................................. 972 The Duke’s Store Project ........................................................................................................... 972 The Duke’s Shipment Project ................................................................................................... 977 Building and Deploying the Duke’s Forest Case Study Application ............................................ 979 Prerequisite Task ........................................................................................................................ 979 ▼ To Build and Deploy the Duke’s Forest Application Using NetBeans IDE ......................... 980 ▼ To Build and Deploy the Duke’s Forest Application Using Ant ........................................... 981 Running the Duke’s Forest Application .......................................................................................... 982 ▼ To Register as a Duke’s Store Customer .................................................................................. 982 ▼ To Purchase Products ................................................................................................................ 982 ▼ To Approve Shipment of a Product ......................................................................................... 983 ▼ To Create a New Product .......................................................................................................... 983 Index ................................................................................................................................................... 985 30 The Java EE 6 Tutorial • January 2013 Preface This tutorial is a guide to developing enterprise applications for the Java Platform, Enterprise Edition 6 (Java EE 6) using GlassFish Server Open Source Edition. Oracle GlassFish Server, a Java EE compatible application server, is based on GlassFish Server Open Source Edition, the leading open-source and open-community platform for building and deploying next-generation applications and services. GlassFish Server Open Source Edition, developed by the GlassFish project open-source community at http://glassfish.java.net/, is the first compatible implementation of the Java EE 6 platform specification. This lightweight, flexible, and open-source application server enables organizations not only to leverage the new capabilities introduced within the Java EE 6 specification, but also to add to their existing capabilities through a faster and more streamlined development and deployment cycle. Oracle GlassFish Server, the product version, and GlassFish Server Open Source Edition, the open-source version, are hereafter referred to as GlassFish Server. The following topics are addressed here: ■ “Before You Read This Book” on page 31 ■ “Related Documentation” on page 32 ■ “Typographic Conventions” on page 32 ■ “Default Paths and File Names” on page 33 ■ “Third-Party Web Site References” on page 34 Before You Read This Book Before proceeding with this tutorial, you should have a good knowledge of the Java programming language. A good way to get to that point is to work through the Java Tutorials (http://docs.oracle.com/javase/tutorial/index.html). 31 Preface Related Documentation The GlassFish Server documentation set describes deployment planning and system installation. To obtain documentation for GlassFish Server Open Source Edition, go to http://glassfish.java.net/docs/. The Uniform Resource Locator (URL) for the Oracle GlassFish Server product documentation is http://docs.oracle.com/cd/E26576_01/ index.htm. The API documentation for packages that are provided with GlassFish Server is available as follows. ■ The API specification for version 6 of Java EE is located at http://docs.oracle.com/ javaee/6/api/. ■ The API specification for GlassFish Server, including Java EE 6 platform packages and nonplatform packages that are specific to the GlassFish Server product, is located at http://glassfish.java.net/nonav/docs/v3/api/. Additionally, the Java EE Specifications at http://www.oracle.com/technetwork/java/ javaee/tech/index.html might be useful. For information about creating enterprise applications in the NetBeans Integrated Development Environment (IDE), see http://www.netbeans.org/kb/. For information about the Java DB database for use with the GlassFish Server, see http://www.oracle.com/technetwork/java/javadb/overview/index.html. The GlassFish Samples project is a collection of sample applications that demonstrate a broad range of Java EE technologies. The GlassFish Samples are bundled with the Java EE Software Development Kit (SDK) and are also available from the GlassFish Samples project page at http://glassfish-samples.java.net/. Typographic Conventions Table P–1 describes the typographic changes that are used in this book. TABLE P–1 Typographic Conventions Typeface Meaning Example AaBbCc123 The names of commands, files, and directories, and onscreen computer output Edit your .login file. Use ls -a to list all files. machine_name% you have mail. AaBbCc123 What you type, contrasted with onscreen computer output machine_name% su Password: 32 The Java EE 6 Tutorial • January 2013 Preface TABLE P–1 Typographic Conventions Typeface Meaning (Continued) Example AaBbCc123 AaBbCc123 A placeholder to be replaced with a real name or value The command to remove a file is rm filename. Book titles, new terms, and terms to be emphasized (note that some emphasized items appear bold online) Read Chapter 6 in the User’s Guide. A cache is a copy that is stored locally. Do not save the file. Default Paths and File Names Table P–2 describes the default paths and file names that are used in this book. TABLE P–2 Default Paths and File Names Placeholder Description Default Value as-install Represents the base installation directory for the GlassFish Server or the SDK of which the GlassFish Server is a part. Installations on the Solaris operating system, Linux operating system, and Mac operating system: user’s-home-directory/glassfish3/glassfish Windows, all installations: SystemDrive:\glassfish3\glassfish Installations on the Solaris operating system, Linux operating system, and Mac operating system: user’s-home-directory/glassfish3 Windows, all installations: SystemDrive:\glassfish3 as-install/docs/javaee-tutorial as-install-parent Represents the parent of the base installation directory for GlassFish Server. tut-install Represents the base installation directory for the Java EE Tutorial after you install the GlassFish Server or the SDK and run the Update Tool. domain-root-dir Represents the directory in which a domain is created by default. as-install/domains/ domain-dir Represents the directory in which a domain’s configuration is stored. domain-root-dir/domain-name 33 Preface Third-Party Web Site References Third-party URLs are referenced in this document and provide additional, related information. Note – Oracle is not responsible for the availability of third-party web sites mentioned in this document. Oracle does not endorse and is not responsible or liable for any content, advertising, products, or other materials that are available on or through such sites or resources. Oracle will not be responsible or liable for any actual or alleged damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods, or services that are available on or through such sites or resources. 34 The Java EE 6 Tutorial • January 2013 P A R T I Introduction Part I introduces the platform, the tutorial, and the examples. This part contains the following chapters: ■ Chapter 1, “Overview” ■ Chapter 2, “Using the Tutorial Examples” 35 36 1C H A P T E R 1 Overview This chapter introduces you to Java EE enterprise application development. Here you will review development basics, learn about the Java EE architecture and APIs, become acquainted with important terms and concepts, and find out how to approach Java EE application programming, assembly, and deployment. Developers today increasingly recognize the need for distributed, transactional, and portable applications that leverage the speed, security, and reliability of server-side technology. Enterprise applications provide the business logic for an enterprise. They are centrally managed and often interact with other enterprise software. In the world of information technology, enterprise applications must be designed, built, and produced for less money, with greater speed, and with fewer resources. With the Java Platform, Enterprise Edition (Java EE), development of Java enterprise applications has never been easier or faster. The aim of the Java EE platform is to provide developers with a powerful set of APIs while shortening development time, reducing application complexity, and improving application performance. The Java EE platform is developed through the Java Community Process (JCP), which is responsible for all Java technologies. Expert groups, composed of interested parties, have created Java Specification Requests (JSRs) to define the various Java EE technologies. The work of the Java Community under the JCP program helps to ensure Java technology’s standard of stability and cross-platform compatibility. The Java EE platform uses a simplified programming model. XML deployment descriptors are optional. Instead, a developer can simply enter the information as an annotation directly into a Java source file, and the Java EE server will configure the component at deployment and runtime. These annotations are generally used to embed in a program data that would otherwise be furnished in a deployment descriptor. With annotations, you put the specification information in your code next to the program element affected. In the Java EE platform, dependency injection can be applied to all resources a component needs, effectively hiding the creation and lookup of resources from application code. 37 Java EE 6 Platform Highlights Dependency injection can be used in EJB containers, web containers, and application clients. Dependency injection allows the Java EE container to automatically insert references to other required components or resources, using annotations. This tutorial uses examples to describe the features available in the Java EE platform for developing enterprise applications. Whether you are a new or experienced Enterprise developer, you should find the examples and accompanying text a valuable and accessible knowledge base for creating your own solutions. The following topics are addressed here: ■ “Java EE 6 Platform Highlights” on page 38 ■ “Java EE Application Model” on page 39 ■ “Distributed Multitiered Applications” on page 39 ■ “Java EE Containers” on page 47 ■ “Web Services Support” on page 49 ■ “Java EE Application Assembly and Deployment” on page 50 ■ “Packaging Applications” on page 51 ■ “Development Roles” on page 52 ■ “Java EE 6 APIs” on page 55 ■ “Java EE 6 APIs in the Java Platform, Standard Edition 6 and 7” on page 64 ■ “GlassFish Server Tools” on page 67 Java EE 6 Platform Highlights The most important goal of the Java EE 6 platform is to simplify development by providing a common foundation for the various kinds of components in the Java EE platform. Developers benefit from productivity improvements with more annotations and less XML configuration, more Plain Old Java Objects (POJOs), and simplified packaging. The Java EE 6 platform includes the following new features: ■ Profiles: configurations of the Java EE platform targeted at specific classes of applications. Specifically, the Java EE 6 platform introduces a lightweight Web Profile targeted at next-generation web applications, as well as a Full Profile that contains all Java EE technologies and provides the full power of the Java EE 6 platform for enterprise applications. ■ New technologies, including the following: ■ Java API for RESTful Web Services (JAX-RS) ■ Managed Beans ■ Contexts and Dependency Injection for the Java EE Platform (JSR 299), informally known as CDI ■ Dependency Injection for Java (JSR 330) ■ Bean Validation (JSR 303) 38 The Java EE 6 Tutorial • January 2013 Distributed Multitiered Applications ■ Java Authentication Service Provider Interface for Containers (JASPIC) ■ New features for Enterprise JavaBeans (EJB) components (see “Enterprise JavaBeans Technology” on page 58 for details) ■ New features for servlets (see “Java Servlet Technology” on page 59 for details) ■ New features for JavaServer Faces components (see “JavaServer Faces Technology” on page 59 for details) Java EE Application Model The Java EE application model begins with the Java programming language and the Java virtual machine. The proven portability, security, and developer productivity they provide forms the basis of the application model. Java EE is designed to support applications that implement enterprise services for customers, employees, suppliers, partners, and others who make demands on or contributions to the enterprise. Such applications are inherently complex, potentially accessing data from a variety of sources and distributing applications to a variety of clients. To better control and manage these applications, the business functions to support these various users are conducted in the middle tier. The middle tier represents an environment that is closely controlled by an enterprise’s information technology department. The middle tier is typically run on dedicated server hardware and has access to the full services of the enterprise. The Java EE application model defines an architecture for implementing services as multitier applications that deliver the scalability, accessibility, and manageability needed by enterprise-level applications. This model partitions the work needed to implement a multitier service into the following parts: ■ The business and presentation logic to be implemented by the developer ■ The standard system services provided by the Java EE platform The developer can rely on the platform to provide solutions for the hard systems-level problems of developing a multitier service. Distributed Multitiered Applications The Java EE platform uses a distributed multitiered application model for enterprise applications. Application logic is divided into components according to function, and the application components that make up a Java EE application are installed on various machines, depending on the tier in the multitiered Java EE environment to which the application component belongs. Chapter 1 • Overview 39 Distributed Multitiered Applications Figure 1–1 shows two multitiered Java EE applications divided into the tiers described in the following list. The Java EE application parts shown in Figure 1–1 are presented in “Java EE Components” on page 42. ■ Client-tier components run on the client machine. ■ Web-tier components run on the Java EE server. ■ Business-tier components run on the Java EE server. ■ Enterprise information system (EIS)-tier software runs on the EIS server. Although a Java EE application can consist of all tiers shown in Figure 1–1, Java EE multitiered applications are generally considered to be three-tiered applications because they are distributed over three locations: client machines, the Java EE server machine, and the database or legacy machines at the back end. Three-tiered applications that run in this way extend the standard two-tiered client-and-server model by placing a multithreaded application server between the client application and back-end storage. 40 The Java EE 6 Tutorial • January 2013 Distributed Multitiered Applications FIGURE 1–1 Multitiered Applications Java EE Application 1 Java EE Application 2 Application Client Web Pages Client Tier Client Machine JavaServer Faces Pages Enterprise Beans Enterprise Beans Java EE Server Web Tier Business Tier Database Database EIS Tier Database Server Security Although other enterprise application models require platform-specific security measures in each application, the Java EE security environment enables security constraints to be defined at deployment time. The Java EE platform makes applications portable to a wide variety of security implementations by shielding application developers from the complexity of implementing security features. The Java EE platform provides standard declarative access control rules that are defined by the developer and interpreted when the application is deployed on the server. Java EE also provides standard login mechanisms so application developers do not have to implement these mechanisms in their applications. The same application works in a variety of security environments without changing the source code. Chapter 1 • Overview 41 Distributed Multitiered Applications Java EE Components Java EE applications are made up of components. A Java EE component is a self-contained functional software unit that is assembled into a Java EE application with its related classes and files and that communicates with other components. The Java EE specification defines the following Java EE components: ■ Application clients and applets are components that run on the client. ■ Java Servlet, JavaServer Faces, and JavaServer Pages (JSP) technology components are web components that run on the server. ■ Enterprise JavaBeans (EJB) components (enterprise beans) are business components that run on the server. Java EE components are written in the Java programming language and are compiled in the same way as any program in the language. The differences between Java EE components and “standard” Java classes are that Java EE components are assembled into a Java EE application, they are verified to be well formed and in compliance with the Java EE specification, and they are deployed to production, where they are run and managed by the Java EE server. Java EE Clients A Java EE client is usually either a web client or an application client. Web Clients A web client consists of two parts: ■ Dynamic web pages containing various types of markup language (HTML, XML, and so on), which are generated by web components running in the web tier ■ A web browser, which renders the pages received from the server A web client is sometimes called a thin client. Thin clients usually do not query databases, execute complex business rules, or connect to legacy applications. When you use a thin client, such heavyweight operations are off-loaded to enterprise beans executing on the Java EE server, where they can leverage the security, speed, services, and reliability of Java EE server-side technologies. Application Clients An application client runs on a client machine and provides a way for users to handle tasks that require a richer user interface than can be provided by a markup language. An application client typically has a graphical user interface (GUI) created from the Swing or the Abstract Window Toolkit (AWT) API, but a command-line interface is certainly possible. 42 The Java EE 6 Tutorial • January 2013 Distributed Multitiered Applications Application clients directly access enterprise beans running in the business tier. However, if application requirements warrant it, an application client can open an HTTP connection to establish communication with a servlet running in the web tier. Application clients written in languages other than Java can interact with Java EE servers, enabling the Java EE platform to interoperate with legacy systems, clients, and non-Java languages. Applets A web page received from the web tier can include an embedded applet. Written in the Java programming language, an applet is a small client application that executes in the Java virtual machine installed in the web browser. However, client systems will likely need the Java Plug-in and possibly a security policy file for the applet to successfully execute in the web browser. Web components are the preferred API for creating a web client program, because no plug-ins or security policy files are needed on the client systems. Also, web components enable cleaner and more modular application design because they provide a way to separate applications programming from web page design. Personnel involved in web page design thus do not need to understand Java programming language syntax to do their jobs. The JavaBeans Component Architecture The server and client tiers might also include components based on the JavaBeans component architecture (JavaBeans components) to manage the data flow between the following: ■ An application client or applet and components running on the Java EE server ■ Server components and a database JavaBeans components are not considered Java EE components by the Java EE specification. JavaBeans components have properties and have get and set methods for accessing the properties. JavaBeans components used in this way are typically simple in design and implementation but should conform to the naming and design conventions outlined in the JavaBeans component architecture. Java EE Server Communications Figure 1–2 shows the various elements that can make up the client tier. The client communicates with the business tier running on the Java EE server either directly or, as in the case of a client running in a browser, by going through web pages or servlets running in the web tier. Chapter 1 • Overview 43 Distributed Multitiered Applications FIGURE 1–2 Server Communication Application Client and Optional JavaBeans Components Web Browser, Web Pages, Applets, and Optional JavaBeans Components Client Tier Web Tier Business Tier Java EE Server Web Components Java EE web components are either servlets or web pages created using JavaServer Faces technology and/or JSP technology (JSP pages). Servlets are Java programming language classes that dynamically process requests and construct responses. JSP pages are text-based documents that execute as servlets but allow a more natural approach to creating static content. JavaServer Faces technology builds on servlets and JSP technology and provides a user interface component framework for web applications. Static HTML pages and applets are bundled with web components during application assembly but are not considered web components by the Java EE specification. Server-side utility classes can also be bundled with web components and, like HTML pages, are not considered web components. As shown in Figure 1–3, the web tier, like the client tier, might include a JavaBeans component to manage the user input and send that input to enterprise beans running in the business tier for processing. 44 The Java EE 6 Tutorial • January 2013 Distributed Multitiered Applications FIGURE 1–3 Web Tier and Java EE Applications Application Client and Optional JavaBeans Components Web Browser, Web Pages, Applets, and Optional JavaBeans Components Client Tier JavaBeans Components (Optional) Web Pages Servlets Web Tier Business Tier Java EE Server Business Components Business code, which is logic that solves or meets the needs of a particular business domain such as banking, retail, or finance, is handled by enterprise beans running in either the business tier or the web tier. Figure 1–4 shows how an enterprise bean receives data from client programs, processes it (if necessary), and sends it to the enterprise information system tier for storage. An enterprise bean also retrieves data from storage, processes it (if necessary), and sends it back to the client program. Chapter 1 • Overview 45 Distributed Multitiered Applications FIGURE 1–4 Business and EIS Tiers Application Client and Optional JavaBeans Components Web Browser, Web Pages, Applets, and Optional JavaBeans Components Client Tier JavaBeans Components (Optional) Web Pages Servlets Web Tier Java Persistence Entities Session Beans Message-Driven Beans Business Tier Java EE Server Database and Legacy Systems EIS Tier Enterprise Information System Tier The enterprise information system tier handles EIS software and includes enterprise infrastructure systems, such as enterprise resource planning (ERP), mainframe transaction processing, database systems, and other legacy information systems. For example, Java EE application components might need access to enterprise information systems for database connectivity. 46 The Java EE 6 Tutorial • January 2013 Java EE Containers Java EE Containers Normally, thin-client multitiered applications are hard to write because they involve many lines of intricate code to handle transaction and state management, multithreading, resource pooling, and other complex low-level details. The component-based and platform-independent Java EE architecture makes Java EE applications easy to write because business logic is organized into reusable components. In addition, the Java EE server provides underlying services in the form of a container for every component type. Because you do not have to develop these services yourself, you are free to concentrate on solving the business problem at hand. Container Services Containers are the interface between a component and the low-level platform-specific functionality that supports the component. Before it can be executed, a web, enterprise bean, or application client component must be assembled into a Java EE module and deployed into its container. The assembly process involves specifying container settings for each component in the Java EE application and for the Java EE application itself. Container settings customize the underlying support provided by the Java EE server, including such services as security, transaction management, Java Naming and Directory Interface (JNDI) API lookups, and remote connectivity. Here are some of the highlights. ■ The Java EE security model lets you configure a web component or enterprise bean so that system resources are accessed only by authorized users. ■ The Java EE transaction model lets you specify relationships among methods that make up a single transaction so that all methods in one transaction are treated as a single unit. ■ JNDI lookup services provide a unified interface to multiple naming and directory services in the enterprise so that application components can access these services. ■ The Java EE remote connectivity model manages low-level communications between clients and enterprise beans. After an enterprise bean is created, a client invokes methods on it as if it were in the same virtual machine. Because the Java EE architecture provides configurable services, application components within the same Java EE application can behave differently based on where they are deployed. For example, an enterprise bean can have security settings that allow it a certain level of access to database data in one production environment and another level of database access in another production environment. The container also manages nonconfigurable services, such as enterprise bean and servlet lifecycles, database connection resource pooling, data persistence, and access to the Java EE platform APIs (see “Java EE 6 APIs” on page 55). Chapter 1 • Overview 47 Java EE Containers Container Types The deployment process installs Java EE application components in the Java EE containers as illustrated in Figure 1–5. FIGURE 1–5 Java EE Server and Containers Application Client Container Application Client Web Browser Servlet Web Page Enterprise Bean Enterprise Bean Web Container EJB Container Client Machine Java EE Server Database ■ Java EE server: The runtime portion of a Java EE product. A Java EE server provides EJB and web containers. ■ Enterprise JavaBeans (EJB) container: Manages the execution of enterprise beans for Java EE applications. Enterprise beans and their container run on the Java EE server. ■ Web container: Manages the execution of web pages, servlets, and some EJB components for Java EE applications. Web components and their container run on the Java EE server. 48 The Java EE 6 Tutorial • January 2013 ■ Application client container: Manages the execution of application client components. Application clients and their container run on the client. ■ Applet container: Manages the execution of applets. Consists of a web browser and Java Plug-in running on the client together. Web Services Support Web Services Support Web services are web-based enterprise applications that use open, XML-based standards and transport protocols to exchange data with calling clients. The Java EE platform provides the XML APIs and tools you need to quickly design, develop, test, and deploy web services and clients that fully interoperate with other web services and clients running on Java-based or non-Java-based platforms. To write web services and clients with the Java EE XML APIs, all you do is pass parameter data to the method calls and process the data returned; for document-oriented web services, you send documents containing the service data back and forth. No low-level programming is needed, because the XML API implementations do the work of translating the application data to and from an XML-based data stream that is sent over the standardized XML-based transport protocols. These XML-based standards and protocols are introduced in the following sections. The translation of data to a standardized XML-based data stream is what makes web services and clients written with the Java EE XML APIs fully interoperable. This does not necessarily mean that the data being transported includes XML tags, because the transported data can itself be plain text, XML data, or any kind of binary data, such as audio, video, maps, program files, computer-aided design (CAD) documents, and the like. The next section introduces XML and explains how parties doing business can use XML tags and schemas to exchange data in a meaningful way. XML Extensible Markup Language (XML) is a cross-platform, extensible, text-based standard for representing data. Parties that exchange XML data can create their own tags to describe the data, set up schemas to specify which tags can be used in a particular kind of XML document, and use XML style sheets to manage the display and handling of the data. For example, a web service can use XML and a schema to produce price lists, and companies that receive the price lists and schema can have their own style sheets to handle the data in a way that best suits their needs. Here are examples. ■ One company might put XML pricing information through a program to translate the XML to HTML so that it can post the price lists to its intranet. ■ A partner company might put the XML pricing information through a tool to create a marketing presentation. Chapter 1 • Overview 49 Java EE Application Assembly and Deployment ■ Another company might read the XML pricing information into an application for processing. SOAP Transport Protocol Client requests and web service responses are transmitted as Simple Object Access Protocol (SOAP) messages over HTTP to enable a completely interoperable exchange between clients and web services, all running on different platforms and at various locations on the Internet. HTTP is a familiar request-and-response standard for sending messages over the Internet, and SOAP is an XML-based protocol that follows the HTTP request-and-response model. The SOAP portion of a transported message does the following: ■ Defines an XML-based envelope to describe what is in the message and explain how to process the message ■ Includes XML-based encoding rules to express instances of application-defined data types within the message ■ Defines an XML-based convention for representing the request to the remote service and the resulting response WSDL Standard Format The Web Services Description Language (WSDL) is a standardized XML format for describing network services. The description includes the name of the service, the location of the service, and ways to communicate with the service. WSDL service descriptions can be published on the Web. GlassFish Server provides a tool for generating the WSDL specification of a web service that uses remote procedure calls to communicate with clients. Java EE Application Assembly and Deployment A Java EE application is packaged into one or more standard units for deployment to any Java EE platform-compliant system. Each unit contains ■ A functional component or components, such as an enterprise bean, web page, servlet, or applet ■ An optional deployment descriptor that describes its content Once a Java EE unit has been produced, it is ready to be deployed. Deployment typically involves using a platform’s deployment tool to specify location-specific information, such as a list of local users who can access it and the name of the local database. Once deployed on a local platform, the application is ready to run. 50 The Java EE 6 Tutorial • January 2013 Packaging Applications Packaging Applications A Java EE application is delivered in a Java Archive (JAR) file, a Web Archive (WAR) file, or an Enterprise Archive (EAR) file. A WAR or EAR file is a standard JAR (.jar) file with a .war or .ear extension. Using JAR, WAR, and EAR files and modules makes it possible to assemble a number of different Java EE applications using some of the same components. No extra coding is needed; it is only a matter of assembling (or packaging) various Java EE modules into Java EE JAR, WAR, or EAR files. An EAR file (see Figure 1–6) contains Java EE modules and, optionally, deployment descriptors. A deployment descriptor, an XML document with an .xml extension, describes the deployment settings of an application, a module, or a component. Because deployment descriptor information is declarative, it can be changed without the need to modify the source code. At runtime, the Java EE server reads the deployment descriptor and acts upon the application, module, or component accordingly. FIGURE 1–6 EAR File Structure Assembly Root META-INF Web Module EJB Module Application Client Module Resource Adapter Module application.xml glassfish-application.xml (optional) The two types of deployment descriptors are Java EE and runtime. A Java EE deployment descriptor is defined by a Java EE specification and can be used to configure deployment settings on any Java EE-compliant implementation. A runtime deployment descriptor is used to configure Java EE implementation-specific parameters. For example, the GlassFish Server runtime deployment descriptor contains such information as the context root of a web application, as well as GlassFish Server implementation-specific parameters, such as caching Chapter 1 • Overview 51 Development Roles directives. The GlassFish Server runtime deployment descriptors are named glassfish-moduleType.xml and are located in the same META-INF directory as the Java EE deployment descriptor. A Java EE module consists of one or more Java EE components for the same container type and, optionally, one component deployment descriptor of that type. An enterprise bean module deployment descriptor, for example, declares transaction attributes and security authorizations for an enterprise bean. A Java EE module can be deployed as a stand-alone module. Java EE modules are of the following types: ■ EJB modules, which contain class files for enterprise beans and, optionally, an EJB deployment descriptor. EJB modules are packaged as JAR files with a .jar extension. ■ Web modules, which contain servlet class files, web files, supporting class files, image and HTML files, and, optionally, a web application deployment descriptor. Web modules are packaged as JAR files with a .war (web archive) extension. ■ Application client modules, which contain class files and, optionally, an application client deployment descriptor. Application client modules are packaged as JAR files with a .jar extension. ■ Resource adapter modules, which contain all Java interfaces, classes, native libraries, and, optionally, a resource adapter deployment descriptor. Together, these implement the Connector architecture (see “Java EE Connector Architecture” on page 63) for a particular EIS. Resource adapter modules are packaged as JAR files with an .rar (resource adapter archive) extension. Development Roles Reusable modules make it possible to divide the application development and deployment process into distinct roles so that different people or companies can perform different parts of the process. The first two roles, Java EE product provider and tool provider, involve purchasing and installing the Java EE product and tools. After software is purchased and installed, Java EE components can be developed by application component providers, assembled by application assemblers, and deployed by application deployers. In a large organization, each of these roles might be executed by different individuals or teams. This division of labor works because each of the earlier roles outputs a portable file that is the input for a subsequent role. For example, in the application component development phase, an enterprise bean software developer delivers EJB JAR files. In the application assembly role, another developer may combine these EJB JAR files into a Java EE application and save it in an EAR file. In the application deployment role, a system administrator at the customer site uses the EAR file to install the Java EE application into a Java EE server. 52 The Java EE 6 Tutorial • January 2013 The different roles are not always executed by different people. If you work for a small company, for example, or if you are prototyping a sample application, you might perform tasks in every phase. Development Roles Java EE Product Provider The Java EE product provider is the company that designs and makes available for purchase the Java EE platform APIs and other features defined in the Java EE specification. Product providers are typically application server vendors that implement the Java EE platform according to the Java EE 6 Platform specification. Tool Provider The tool provider is the company or person who creates development, assembly, and packaging tools used by component providers, assemblers, and deployers. Application Component Provider The application component provider is the company or person who creates web components, enterprise beans, applets, or application clients for use in Java EE applications. Enterprise Bean Developer An enterprise bean developer performs the following tasks to deliver an EJB JAR file that contains one or more enterprise beans: ■ Writes and compiles the source code ■ Specifies the deployment descriptor (optional) ■ Packages the .class files and deployment descriptor into the EJB JAR file Web Component Developer A web component developer performs the following tasks to deliver a WAR file containing one or more web components: ■ Writes and compiles servlet source code ■ Writes JavaServer Faces, JSP, and HTML files ■ Specifies the deployment descriptor (optional) ■ Packages the .class, .jsp, and.html files and deployment descriptor into the WAR file Chapter 1 • Overview 53 Development Roles Application Client Developer An application client developer performs the following tasks to deliver a JAR file containing the application client: ■ Writes and compiles the source code ■ Specifies the deployment descriptor for the client (optional) ■ Packages the .class files and deployment descriptor into the JAR file Application Assembler The application assembler is the company or person who receives application modules from component providers and may assemble them into a Java EE application EAR file. The assembler or deployer can edit the deployment descriptor directly or can use tools that correctly add XML tags according to interactive selections. A software developer performs the following tasks to deliver an EAR file containing the Java EE application: ■ Assembles EJB JAR and WAR files created in the previous phases into a Java EE application (EAR) file ■ Specifies the deployment descriptor for the Java EE application (optional) ■ Verifies that the contents of the EAR file are well formed and comply with the Java EE specification Application Deployer and Administrator The application deployer and administrator is the company or person who configures and deploys application clients, web applications, Enterprise JavaBeans components, and Java EE applications, administers the computing and networking infrastructure where Java EE components and applications run, and oversees the runtime environment. Duties include setting transaction controls and security attributes and specifying connections to databases. During configuration, the deployer follows instructions supplied by the application component provider to resolve external dependencies, specify security settings, and assign transaction attributes. During installation, the deployer moves the application components to the server and generates the container-specific classes and interfaces. 54 The Java EE 6 Tutorial • January 2013 Java EE 6 APIs A deployer or system administrator performs the following tasks to install and configure a Java EE application or components: ■ Configures the Java EE application or components for the operational environment ■ Verifies that the contents of the EAR, JAR, and/or WAR files are well formed and comply with the Java EE specification ■ Deploys (installs) the Java EE application or components into the Java EE server Java EE 6 APIs Figure 1–7 shows the relationships among the Java EE containers. FIGURE 1–7 Java EE Containers Client System Java EE Server Browser Web Container Application Client Container Application Client JavaServer Faces Servlet EJB Container EJB EJB Figure 1–8 shows the availability of the Java EE 6 APIs in the web container. Database Chapter 1 • Overview 55 Java EE 6 APIs FIGURE 1–8 Java EE APIs in the Web Container Web Container Servlet JSR 330 Java SE Interceptors Managed Beans JSR 299 Bean Validation EJB Lite EL JavaMail JSP JavaServer Faces Connectors Java Persistence JMS Management WS Metadata Web Services JACC JASPIC JAX-RS JAX-WS JAX-RPC J A A S New in Java EE 6 Figure 1–9 shows the availability of the Java EE 6 APIs in the EJB container. 56 The Java EE 6 Tutorial • January 2013 Java EE 6 APIs FIGURE 1–9 Java EE APIs in the EJB Container EJB Container JSR 330 Java SE Interceptors Managed Beans JSR 299 Bean Validation JavaMail Java Persistence JTA Connectors EJB JMS Management WS Management Web Services JACC JASPIC JAXR JAX-RS JAX-WS JAX-RPC J A A S New in Java EE 6 Figure 1–10 shows the availability of the Java EE 6 APIs in the application client container. Chapter 1 • Overview 57 Java EE 6 APIs FIGURE 1–10 Java EE APIs in the Application Client Container Application Client Container Application Client Java Persistence Java SE Management WS Metadata Web Services JSR 299 JMS JAXR JAX-WS JAX-RPC J A A S New in Java EE 6 The following sections give a brief summary of the technologies required by the Java EE platform and the APIs used in Java EE applications. Enterprise JavaBeans Technology An Enterprise JavaBeans (EJB) component, or enterprise bean, is a body of code having fields and methods to implement modules of business logic. You can think of an enterprise bean as a building block that can be used alone or with other enterprise beans to execute business logic on the Java EE server. Enterprise beans are either session beans or message-driven beans. ■ A session bean represents a transient conversation with a client. When the client finishes executing, the session bean and its data are gone. ■ A message-driven bean combines features of a session bean and a message listener, allowing a business component to receive messages asynchronously. Commonly, these are Java Message Service (JMS) messages. 58 The Java EE 6 Tutorial • January 2013 Java EE 6 APIs In the Java EE 6 platform, new enterprise bean features include the following: ■ The ability to package local enterprise beans in a WAR file ■ Singleton session beans, which provide easy access to shared state ■ A lightweight subset of Enterprise JavaBeans functionality (EJB Lite) that can be provided within Java EE Profiles, such as the Java EE Web Profile. The Java EE 6 platform requires Enterprise JavaBeans 3.1 and Interceptors 1.1. The Interceptors specification, which is part of the EJB 3.1 specification, makes more generally available the interceptor facility originally defined as part of the EJB 3.0 specification. Java Servlet Technology Java Servlet technology lets you define HTTP-specific servlet classes. A servlet class extends the capabilities of servers that host applications accessed by way of a request-response programming model. Although servlets can respond to any type of request, they are commonly used to extend the applications hosted by web servers. In the Java EE 6 platform, new Java Servlet technology features include the following: ■ Annotation support ■ Asynchronous support ■ Ease of configuration ■ Enhancements to existing APIs ■ Pluggability The Java EE 6 platform requires Servlet 3.0. JavaServer Faces Technology JavaServer Faces technology is a user interface framework for building web applications. The main components of JavaServer Faces technology are as follows: ■ A GUI component framework. ■ A flexible model for rendering components in different kinds of HTML or different markup languages and technologies. A Renderer object generates the markup to render the component and converts the data stored in a model object to types that can be represented in a view. ■ A standard RenderKit for generating HTML/4.01 markup. The following features support the GUI components: ■ Input validation ■ Event handling Chapter 1 • Overview 59 Java EE 6 APIs ■ Data conversion between model objects and components ■ Managed model object creation ■ Page navigation configuration ■ Expression Language (EL) All this functionality is available using standard Java APIs and XML-based configuration files. In the Java EE 6 platform, new features of JavaServer Faces include the following: ■ The ability to use annotations instead of a configuration file to specify managed beans and other components ■ Facelets, a display technology that replaces JavaServer Pages (JSP) technology using XHTML files ■ Ajax support ■ Composite components ■ Implicit navigation The Java EE 6 platform requires JavaServer Faces 2.0 and Expression Language 2.2. JavaServer Pages Technology JavaServer Pages (JSP) technology lets you put snippets of servlet code directly into a text-based document. A JSP page is a text-based document that contains two types of text: ■ ■ Static data, which can be expressed in any text-based format such as HTML or XML JSP elements, which determine how the page constructs dynamic content For information about JSP technology, see the The Java EE 5 Tutorial at http://docs.oracle.com/javaee/5/tutorial/doc/. The Java EE 6 platform requires JavaServer Pages 2.2 for compatibility with earlier releases, but recommends the use of Facelets as the display technology in new applications. JavaServer Pages Standard Tag Library The JavaServer Pages Standard Tag Library (JSTL) encapsulates core functionality common to many JSP applications. Instead of mixing tags from numerous vendors in your JSP applications, you use a single, standard set of tags. This standardization allows you to deploy your applications on any JSP container that supports JSTL and makes it more likely that the implementation of the tags is optimized. JSTL has iterator and conditional tags for handling flow control, tags for manipulating XML documents, internationalization tags, tags for accessing databases using SQL, and commonly used functions. 60 The Java EE 6 Tutorial • January 2013 Java EE 6 APIs The Java EE 6 platform requires JSTL 1.2. Java Persistence API The Java Persistence API (JPA) is a Java standards-based solution for persistence. Persistence uses an object/relational mapping approach to bridge the gap between an object-oriented model and a relational database. The Java Persistence API can also be used in Java SE applications, outside of the Java EE environment. Java Persistence consists of the following areas: ■ The Java Persistence API ■ The query language ■ Object/relational mapping metadata The Java EE 6 platform requires Java Persistence API 2.0. Java Transaction API The Java Transaction API (JTA) provides a standard interface for demarcating transactions. The Java EE architecture provides a default auto commit to handle transaction commits and rollbacks. An auto commit means that any other applications that are viewing data will see the updated data after each database read or write operation. However, if your application performs two separate database access operations that depend on each other, you will want to use the JTA API to demarcate where the entire transaction, including both operations, begins, rolls back, and commits. The Java EE 6 platform requires Java Transaction API 1.1. Java API for RESTful Web Services The Java API for RESTful Web Services (JAX-RS) defines APIs for the development of web services built according to the Representational State Transfer (REST) architectural style. A JAX-RS application is a web application that consists of classes packaged as a servlet in a WAR file along with required libraries. The JAX-RS API is new to the Java EE 6 platform. The Java EE 6 platform requires JAX–RS 1.1. Managed Beans Managed Beans, lightweight container-managed objects (POJOs) with minimal requirements, support a small set of basic services, such as resource injection, lifecycle callbacks, and Chapter 1 • Overview 61 Java EE 6 APIs interceptors. Managed Beans represent a generalization of the managed beans specified by JavaServer Faces technology and can be used anywhere in a Java EE application, not just in web modules. The Managed Beans specification is part of the Java EE 6 platform specification (JSR 316). Managed Beans are new to the Java EE 6 platform. The Java EE 6 platform requires Managed Beans 1.0. Contexts and Dependency Injection for the Java EE Platform (JSR 299) Contexts and Dependency Injection (CDI) for the Java EE platform defines a set of contextual services, provided by Java EE containers, that make it easy for developers to use enterprise beans along with JavaServer Faces technology in web applications. Designed for use with stateful objects, CDI also has many broader uses, allowing developers a great deal of flexibility to integrate different kinds of components in a loosely coupled but type-safe way. CDI is new to the Java EE 6 platform. The Java EE 6 platform requires CDI 1.0. Dependency Injection for Java (JSR 330) Dependency Injection for Java defines a standard set of annotations (and one interface) for use on injectable classes. In the Java EE platform, CDI provides support for Dependency Injection. Specifically, you can use DI injection points only in a CDI-enabled application. Dependency Injection for Java is new to the Java EE 6 platform. The Java EE 6 platform requires Dependency Injection for Java 1.0. Bean Validation The Bean Validation specification defines a metadata model and API for validating data in JavaBeans components. Instead of distributing validation of data over several layers, such as the browser and the server side, you can define the validation constraints in one place and share them across the different layers. Bean Validation is new to the Java EE 6 platform. The Java EE 6 platform requires Bean Validation 1.0. 62 The Java EE 6 Tutorial • January 2013 Java EE 6 APIs Java Message Service API The Java Message Service (JMS) API is a messaging standard that allows Java EE application components to create, send, receive, and read messages. It enables distributed communication that is loosely coupled, reliable, and asynchronous. The Java EE 6 platform requires JMS 1.1. Java EE Connector Architecture The Java EE Connector architecture is used by tools vendors and system integrators to create resource adapters that support access to enterprise information systems that can be plugged in to any Java EE product. A resource adapter is a software component that allows Java EE application components to access and interact with the underlying resource manager of the EIS. Because a resource adapter is specific to its resource manager, a different resource adapter typically exists for each type of database or enterprise information system. The Java EE Connector architecture also provides a performance-oriented, secure, scalable, and message-based transactional integration of Java EE based web services with existing EISs that can be either synchronous or asynchronous. Existing applications and EISs integrated through the Java EE Connector architecture into the Java EE platform can be exposed as XML-based web services by using JAX-WS and Java EE component models. Thus JAX-WS and the Java EE Connector architecture are complementary technologies for enterprise application integration (EAI) and end-to-end business integration. The Java EE 6 platform requires Java EE Connector architecture 1.6. JavaMail API Java EE applications use the JavaMail API to send email notifications. The JavaMail API has two parts: ■ An application-level interface used by the application components to send mail ■ A service provider interface The Java EE platform includes the JavaMail API with a service provider that allows application components to send Internet mail. The Java EE 6 platform requires JavaMail 1.4. Java Authorization Contract for Containers The Java Authorization Contract for Containers (JACC) specification defines a contract between a Java EE application server and an authorization policy provider. All Java EE containers support this contract. Chapter 1 • Overview 63 Java EE 6 APIs in the Java Platform, Standard Edition 6 and 7 The JACC specification defines java.security.Permission classes that satisfy the Java EE authorization model. The specification defines the binding of container-access decisions to operations on instances of these permission classes. It defines the semantics of policy providers that use the new permission classes to address the authorization requirements of the Java EE platform, including the definition and use of roles. The Java EE 6 platform requires JACC 1.4. Java Authentication Service Provider Interface for Containers The Java Authentication Service Provider Interface for Containers (JASPIC) specification defines a service provider interface (SPI) by which authentication providers that implement message authentication mechanisms may be integrated in client or server message-processing containers or runtimes. Authentication providers integrated through this interface operate on network messages provided to them by their calling containers. The authentication providers transform outgoing messages so that the source of each message can be authenticated by the receiving container, and the recipient of the message can be authenticated by the message sender. Authentication providers authenticate each incoming message and return to their calling containers the identity established as a result of the message authentication. JASPIC is new to the Java EE 6 platform. The Java EE 6 platform requires JASPIC 1.0. Java EE 6 APIs in the Java Platform, Standard Edition 6 and 7 Several APIs that are required by the Java EE 6 platform are included in the Java Platform, Standard Edition 6 and 7 (Java SE 6 and 7) and are thus available to Java EE applications. Java Database Connectivity API The Java Database Connectivity (JDBC) API lets you invoke SQL commands from Java programming language methods. You use the JDBC API in an enterprise bean when you have a session bean access the database. You can also use the JDBC API from a servlet or a JSP page to access the database directly without going through an enterprise bean. The JDBC API has two parts: ■ An application-level interface used by the application components to access a database ■ A service provider interface to attach a JDBC driver to the Java EE platform The Java SE 6 platform requires JDBC 4.0. 64 The Java EE 6 Tutorial • January 2013 Java EE 6 APIs in the Java Platform, Standard Edition 6 and 7 Java Naming and Directory Interface API The Java Naming and Directory Interface (JNDI) API provides naming and directory functionality, enabling applications to access multiple naming and directory services such as LDAP, DNS, and NIS. The JNDI API provides applications with methods for performing standard directory operations, such as associating attributes with objects and searching for objects using their attributes. Using JNDI, a Java EE application can store and retrieve any type of named Java object, allowing Java EE applications to coexist with many legacy applications and systems. Java EE naming services provide application clients, enterprise beans, and web components with access to a JNDI naming environment. A naming environment allows a component to be customized without the need to access or change the component’s source code. A container implements the component’s environment and provides it to the component as a JNDI naming context. A Java EE component can locate its environment naming context by using JNDI interfaces. A component can create a javax.naming.InitialContext object and look up the environment naming context in InitialContext under the name java:comp/env. A component’s naming environment is stored directly in the environment naming context or in any of its direct or indirect subcontexts. A Java EE component can access named system-provided and user-defined objects. The names of system-provided objects, such as JTA UserTransaction objects, are stored in the environment naming context java:comp/env. The Java EE platform allows a component to name user-defined objects, such as enterprise beans, environment entries, JDBC DataSource objects, and message connections. An object should be named within a subcontext of the naming environment according to the type of the object. For example, enterprise beans are named within the subcontext java:comp/env/ejb, and JDBC DataSource references are named within the subcontext java:comp/env/jdbc. JavaBeans Activation Framework The JavaBeans Activation Framework (JAF) is used by the JavaMail API. JAF provides standard services to determine the type of an arbitrary piece of data, encapsulate access to it, discover the operations available on it, and create the appropriate JavaBeans component to perform those operations. Java API for XML Processing The Java API for XML Processing (JAXP), part of the Java SE platform, supports the processing of XML documents using Document Object Model (DOM), Simple API for XML (SAX), and Chapter 1 • Overview 65 Java EE 6 APIs in the Java Platform, Standard Edition 6 and 7 Extensible Stylesheet Language Transformations (XSLT). JAXP enables applications to parse and transform XML documents independently of a particular XML processing implementation. JAXP also provides namespace support, which lets you work with schemas that might otherwise have naming conflicts. Designed to be flexible, JAXP lets you use any XML-compliant parser or XSL processor from within your application and supports the Worldwide Web Consortium (W3C) schema. You can find information on the W3C schema at this URL: http://www.w3.org/XML/Schema. Java Architecture for XML Binding The Java Architecture for XML Binding (JAXB) provides a convenient way to bind an XML schema to a representation in Java language programs. JAXB can be used independently or in combination with JAX-WS, where it provides a standard data binding for web service messages. All Java EE application client containers, web containers, and EJB containers support the JAXB API. The Java EE 6 platform requires JAXB 2.2. SOAP with Attachments API for Java The SOAP with Attachments API for Java (SAAJ) is a low-level API on which JAX-WS depends. SAAJ enables the production and consumption of messages that conform to the SOAP 1.1 and 1.2 specifications and SOAP with Attachments note. Most developers do not use the SAAJ API, instead using the higher-level JAX-WS API. Java API for XML Web Services The Java API for XML Web Services (JAX-WS) specification provides support for web services that use the JAXB API for binding XML data to Java objects. The JAX-WS specification defines client APIs for accessing web services as well as techniques for implementing web service endpoints. The Implementing Enterprise Web Services specification describes the deployment of JAX-WS-based services and clients. The EJB and Java Servlet specifications also describe aspects of such deployment. JAX-WS-based applications can be deployed using any of these deployment models. The JAX-WS specification describes the support for message handlers that can process message requests and responses. In general, these message handlers execute in the same container and with the same privileges and execution context as the JAX-WS client or endpoint component with which they are associated. These message handlers have access to the same JNDI java:comp/env namespace as their associated component. Custom serializers and deserializers, if supported, are treated in the same way as message handlers. 66 The Java EE 6 Tutorial • January 2013 GlassFish Server Tools The Java EE 6 platform requires JAX-WS 2.2. Java Authentication and Authorization Service The Java Authentication and Authorization Service (JAAS) provides a way for a Java EE application to authenticate and authorize a specific user or group of users to run it. JAAS is a Java programming language version of the standard Pluggable Authentication Module (PAM) framework, which extends the Java Platform security architecture to support user-based authorization. GlassFish Server Tools The GlassFish Server is a compliant implementation of the Java EE 6 platform. In addition to supporting all the APIs described in the previous sections, the GlassFish Server includes a number of Java EE tools that are not part of the Java EE 6 platform but are provided as a convenience to the developer. This section briefly summarizes the tools that make up the GlassFish Server. Instructions for starting and stopping the GlassFish Server, starting the Administration Console, and starting and stopping the Java DB server are in Chapter 2, “Using the Tutorial Examples.” The GlassFish Server contains the tools listed in Table 1–1. Basic usage information for many of the tools appears throughout the tutorial. For detailed information, see the online help in the GUI tools. TABLE 1–1 GlassFish Server Tools Tool Description Administration Console A web-based GUI GlassFish Server administration utility. Used to stop the GlassFish Server and to manage users, resources, and applications. asadmin appclient capture-schema A command-line GlassFish Server administration utility. Used to start and stop the GlassFish Server and to manage users, resources, and applications. A command-line tool that launches the application client container and invokes the client application packaged in the application client JAR file. A command-line tool to extract schema information from a database, producing a schema file that the GlassFish Server can use for container-managed persistence. package-appclient A command-line tool to package the application client container libraries and JAR files. Java DB database A copy of the Java DB server. Chapter 1 • Overview 67 GlassFish Server Tools TABLE 1–1 GlassFish Server Tools Tool Description (Continued) xjc schemagen wsimport wsgen A command-line tool to transform, or bind, a source XML schema to a set of JAXB content classes in the Java programming language. A command-line tool to create a schema file for each namespace referenced in your Java classes. A command-line tool to generate JAX-WS portable artifacts for a given WSDL file. After generation, these artifacts can be packaged in a WAR file with the WSDL and schema documents, along with the endpoint implementation, and then deployed. A command-line tool to read a web service endpoint class and generate all the required JAX-WS portable artifacts for web service deployment and invocation. 68 The Java EE 6 Tutorial • January 2013 2C H A P T E R 2 Using the Tutorial Examples This chapter tells you everything you need to know to install, build, and run the tutorial examples. The following topics are addressed here: ■ “Required Software” on page 69 ■ “Starting and Stopping the GlassFish Server” on page 73 ■ “Starting the Administration Console” on page 74 ■ “Starting and Stopping the Java DB Server” on page 75 ■ “Building the Examples” on page 75 ■ “Tutorial Example Directory Structure” on page 76 ■ “Getting the Latest Updates to the Tutorial” on page 77 ■ “Debugging Java EE Applications” on page 77 Required Software The following software is required to run the examples: ■ “Java Platform, Standard Edition” on page 69 ■ “Java EE 6 Software Development Kit” on page 70 ■ “Java EE 6 Tutorial Component” on page 70 ■ “NetBeans IDE” on page 71 ■ “Apache Ant” on page 72 Java Platform, Standard Edition To build, deploy, and run the examples, you need a copy of the Java Platform, Standard Edition 6.0 Development Kit (JDK 6) or the Java Platform, Standard Edition 7.0 Development Kit (JDK 7). You can download the JDK 6 or JDK 7 software from http://www.oracle.com/ technetwork/java/javase/downloads/index.html. 69 Required Software Download the current JDK update that does not include any other software, such as NetBeans IDE or the Java EE SDK. Java EE 6 Software Development Kit GlassFish Server Open Source Edition 3.1.2 is targeted as the build and runtime environment for the tutorial examples. To build, deploy, and run the examples, you need a copy of the GlassFish Server and, optionally, NetBeans IDE. To obtain the GlassFish Server, you must install the Java EE 6 Software Development Kit (SDK), which you can download from http://www.oracle.com/technetwork/java/javaee/downloads/index.html. Make sure you download the Java EE 6 SDK, not the Java EE 6 Web Profile SDK. SDK Installation Tips During the installation of the SDK, do the following: ■ Allow the installer to download and configure the Update Tool. If you access the Internet through a firewall, provide the proxy host and port. ■ Configure the GlassFish Server administration user name as admin, and specify no password. This is the default setting. ■ Accept the default port values for the Admin Port (4848) and the HTTP Port (8080). ■ Do not select the check box to create an operating system service for the domain. You can leave the check box to start the domain after creation selected if you wish, but this is not required. This tutorial refers to as-install-parent, the directory where you install the GlassFish Server. For example, the default installation directory on Microsoft Windows is C:\glassfish3, so as-install-parent is C:\glassfish3. The GlassFish Server itself is installed in as-install, the glassfish directory under as-install-parent. So on Microsoft Windows, as-install is C:\glassfish3\glassfish. After you install the GlassFish Server, add the following directories to your PATH to avoid having to specify the full path when you use commands: as-install-parent/bin as-install/bin Java EE 6 Tutorial Component The tutorial example source is contained in the tutorial component. To obtain the tutorial component, use the Update Tool. 70 The Java EE 6 Tutorial • January 2013 Required Software ▼ To Obtain the Tutorial Component Using the Update Tool 1 Start the Update Tool by doing one of the following: ■ From the command line, type the command updatetool. ■ On a Windows system, from the Start menu, select All Programs, then select Java EE 6 SDK, then select Start Update Tool. Expand the Java EE 6 SDK node. Select the Available Updates node. From the list, select the Java EE 6 Tutorial check box. Click Install. Accept the license agreement. 2 3 4 5 6 After installation, the Java EE 6 Tutorial appears in the list of installed components. The tool is installed in the as-install/docs/javaee-tutorial directory. This directory contains two subdirectories: docs and examples. The examples directory contains subdirectories for each of the technologies discussed in the tutorial. Next Steps Updates to the Java EE 6 Tutorial are published periodically. For details on obtaining these updates, see “Getting the Latest Updates to the Tutorial” on page 77. NetBeans IDE The NetBeans integrated development environment (IDE) is a free, open-source IDE for developing Java applications, including enterprise applications. NetBeans IDE supports the Java EE platform. You can build, package, deploy, and run the tutorial examples from within NetBeans IDE. To run the tutorial examples, you need the latest version of NetBeans IDE. You can download NetBeans IDE from http://www.netbeans.org/downloads/index.html. Make sure that you download the Java EE bundle. ▼ To Install NetBeans IDE without GlassFish Server When you install NetBeans IDE, do not install the version of GlassFish Server that comes with NetBeans IDE. To skip the installation of GlassFish Server, follow these steps. 1 On the first page of the NetBeans IDE Installer wizard, deselect the check box for GlassFish Server and click OK. Chapter 2 • Using the Tutorial Examples 71 Required Software 2 Accept both the License Agreement and the Junit License Agreement. A few of the tutorial examples use the Junit library, so you should install it. 3 Continue with the installation of NetBeans IDE. ▼ To Add GlassFish Server as a Server in NetBeans IDE To run the tutorial examples in NetBeans IDE, you must add your GlassFish Server as a server in NetBeans IDE. Follow these instructions to add the GlassFish Server to NetBeans IDE. 1 From the Tools menu, select Servers. The Servers wizard opens. 2 3 4 5 6 Click Add Server. Under Choose Server, select GlassFish Server 3+ and click Next. Under Server Location, browse to the location of the Java EE 6 SDK and click Next. Under Domain Location, select Register Local Domain. Click Finish. Apache Ant Ant is a Java technology-based build tool developed by the Apache Software Foundation (http://ant.apache.org/) and is used to build, package, and deploy the tutorial examples. To run the tutorial examples, you need Ant 1.7.1 or higher. If you do not already have Ant, you can install it from the Update Tool that is part of the GlassFish Server. ▼ To Obtain Apache Ant 1 Start the Update Tool. ■ From the command line, type the command updatetool. ■ On a Windows system, from the Start menu, select All Programs, then select Java EE 6 SDK, then select Start Update Tool. Expand the Java EE 6 SDK node. Select the Available Add-ons node. 2 3 72 The Java EE 6 Tutorial • January 2013 Starting and Stopping the GlassFish Server 4 5 6 From the list, select the Apache Ant Build Tool check box. Click Install. Accept the license agreement. After installation, Apache Ant appears in the list of installed components. The tool is installed in the as-install-parent/ant directory. Next Steps To use the ant command, add as-install-parent/ant/bin to your PATH environment variable. Starting and Stopping the GlassFish Server To start the GlassFish Server from the command line, open a terminal window or command prompt and execute the following: asadmin start-domain --verbose A domain is a set of one or more GlassFish Server instances managed by one administration server. Associated with a domain are the following: ■ The GlassFish Server’s port number. The default is 8080. ■ The administration server’s port number. The default is 4848. ■ An administration user name and password. The default user name is admin, and by default no password is required. You specify these values when you install the GlassFish Server. The examples in this tutorial assume that you chose the default ports as well as the default user name and lack of password. With no arguments, the start-domain command initiates the default domain, which is domain1. The --verbose flag causes all logging and debugging output to appear on the terminal window or command prompt. The output also goes into the server log, which is located in domain-dir/logs/server.log. Or, on Windows, from the Start menu, select All Programs, then select Java EE 6 SDK, then select Start Application Server. To stop the GlassFish Server, open a terminal window or command prompt and execute: asadmin stop-domain domain1 Or, on Windows, from the Start menu, select All Programs, then select Java EE 6 SDK, then select Stop Application Server. Chapter 2 • Using the Tutorial Examples 73 Starting the Administration Console ▼ To Start the GlassFish Server Using NetBeans IDE 1 2 3 Click the Services tab. Expand the Servers node. Right-click the GlassFish Server instance and select Start. Next Steps To stop the GlassFish Server using NetBeans IDE, right-click the GlassFish Server instance and select Stop. Starting the Administration Console To administer the GlassFish Server and manage users, resources, and Java EE applications, use the Administration Console tool. The GlassFish Server must be running before you invoke the Administration Console. To start the Administration Console, open a browser at http://localhost:4848/. Or, on Windows, from the Start menu, select All Programs, then select Java EE 6 SDK, then select Administration Console. ▼ To Start the Administration Console Using NetBeans 1 2 3 IDE Click the Services tab. Expand the Servers node. Right-click the GlassFish Server instance and select View Domain Admin Console. Note – NetBeans IDE uses your default web browser to open the Administration Console. 74 The Java EE 6 Tutorial • January 2013 Starting and Stopping the Java DB Server The GlassFish Server includes the Java DB database server. Building the Examples To start the Java DB server from the command line, open a terminal window or command prompt and execute: asadmin start-database To stop the Java DB server from the command line, open a terminal window or command prompt and execute: asadmin stop-database For information about the Java DB included with the GlassFish Server, see http://www.oracle.com/technetwork/java/javadb/overview/index.html. ▼ To Start the Database Server Using NetBeans IDE When you start the GlassFish Server using NetBeans IDE, the database server starts automatically. If you ever need to start the database server manually, follow these steps. 1 2 3 Click the Services tab. Expand the Databases node. Right-click Java DB and select Start Server. Next Steps To stop the database using NetBeans IDE, right-click Java DB and select Stop Server. Building the Examples The tutorial examples are distributed with a configuration file for either NetBeans IDE or Ant. Either NetBeans IDE or Ant may be used to build, package, deploy, and run the examples. Directions for building the examples are provided in each chapter. Chapter 2 • Using the Tutorial Examples 75 Tutorial Example Directory Structure Tutorial Example Directory Structure To facilitate iterative development and keep application source separate from compiled files, the tutorial examples use the Java BluePrints application directory structure. Each application module has the following structure: ■ ■ ■ ■ ■ ■ build.xml: Ant build file src/java: Java source files for the module src/conf: configuration files for the module, with the exception of web applications web: web pages, style sheets, tag files, and images (web applications only) web/WEB-INF: configuration files for web applications (web applications only) nbproject: NetBeans project files When an example has multiple application modules packaged into an EAR file, its submodule directories use the following naming conventions: ■ ■ ■ example-name-app-client: application clients example-name-ejb: enterprise bean JAR files example-name-war: web applications The Ant build files (build.xml) distributed with the examples contain targets to create a build subdirectory and to copy and compile files into that directory; a dist subdirectory, which holds the packaged module file; and a client-jar directory, which holds the retrieved application client JAR. The tut-install/examples/bp-project/ directory contains additional Ant targets called by the build.xml file targets. For some web examples, an Ant target will open the example URL in a browser if one is available. This happens automatically on Windows systems. If you are running on a UNIX system, you may want to modify a line in the tut-install/examples/bp-project/build.properties file. Remove the comment character from the line specifying the default.browser property and specify the path to the command that invokes a browser. If you do not make the change, you can open the URL in the browser yourself. 76 The Java EE 6 Tutorial • January 2013 Getting the Latest Updates to the Tutorial Check for any updates to the tutorial by using the Update Center included with the Java EE 6 SDK. Debugging Java EE Applications ▼ To Update the Tutorial through the Update Center 1 2 3 4 5 Open the Services tab in NetBeans IDE and expand Servers. Right-click the GlassFish Server instance and select View Update Center to display the Update Tool. Select Available Updates in the tree to display a list of updated packages. Look for updates to the Java EE 6 Tutorial (javaee-tutorial) package. If there is an updated version of the Tutorial, select Java EE 6 Tutorial (javaee-tutorial) and click Install. Debugging Java EE Applications This section explains how to determine what is causing an error in your application deployment or execution. Using the Server Log One way to debug applications is to look at the server log in domain-dir/logs/server.log. The log contains output from the GlassFish Server and your applications. You can log messages from any Java class in your application with System.out.println and the Java Logging APIs (documented at http://docs.oracle.com/javase/6/docs/technotes/guides/logging/ index.html) and from web components with the ServletContext.log method. If you use NetBeans IDE, logging output appears in the Output window as well as the server log. If you start the GlassFish Server with the --verbose flag, all logging and debugging output will appear on the terminal window or command prompt and the server log. If you start the GlassFish Server in the background, debugging information is available only in the log. You can view the server log with a text editor or with the Administration Console log viewer. Chapter 2 • Using the Tutorial Examples 77 Debugging Java EE Applications ▼ To Use the Administration Console Log Viewer 1 2 Select the GlassFish Server node. Click the View Log Files button. The log viewer opens and displays the last 40 entries. 3 To display other entries, follow these steps. a. Click the Modify Search button. b. Specify any constraints on the entries you want to see. c. Click the Search button at the top of the log viewer. Using a Debugger The GlassFish Server supports the Java Platform Debugger Architecture (JPDA). With JPDA, you can configure the GlassFish Server to communicate debugging information using a socket. ▼ To Debug an Application Using a Debugger 1 Enable debugging in the GlassFish Server using the Administration Console: a. Expand the Configurations node, then expand the server-config node. b. Select the JVM Settings node. The default debug options are set to: -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=9009 As you can see, the default debugger socket port is 9009. You can change it to a port not in use by the GlassFish Server or another service. c. Select the Debug Enabled check box. d. Click the Save button. 2 Stop the GlassFish Server and then restart it. 78 The Java EE 6 Tutorial • January 2013 P A R T I I The Web Tier Part II explores the technologies in the web tier. This part contains the following chapters: ■ Chapter 3, “Getting Started with Web Applications” ■ Chapter 4, “JavaServer Faces Technology” ■ Chapter 5, “Introduction to Facelets” ■ Chapter 6, “Expression Language” ■ Chapter 7, “Using JavaServer Faces Technology in Web Pages” ■ Chapter 8, “Using Converters, Listeners, and Validators” ■ Chapter 9, “Developing with JavaServer Faces Technology” ■ Chapter 10, “JavaServer Faces Technology: Advanced Concepts” ■ Chapter 11, “Using Ajax with JavaServer Faces Technology” ■ Chapter 12, “Composite Components: Advanced Topics and Example” ■ Chapter 13, “Creating Custom UI Components and Other Custom Objects” ■ Chapter 14, “Configuring JavaServer Faces Applications” ■ Chapter 15, “Java Servlet Technology” ■ Chapter 16, “Uploading Files with Java Servlet Technology” ■ Chapter 17, “Internationalizing and Localizing Web Applications” 79 80 3C H A P T E R 3 Getting Started with Web Applications A web application is a dynamic extension of a web or application server. Web applications are of the following types: ■ Presentation-oriented: A presentation-oriented web application generates interactive web pages containing various types of markup language (HTML, XHTML, XML, and so on) and dynamic content in response to requests. Development of presentation-oriented web applications is covered in Chapter 4, “JavaServer Faces Technology,” through Chapter 9, “Developing with JavaServer Faces Technology.” ■ Service-oriented: A service-oriented web application implements the endpoint of a web service. Presentation-oriented applications are often clients of service-oriented web applications. Development of service-oriented web applications is covered in Chapter 19, “Building Web Services with JAX-WS,” and Chapter 20, “Building RESTful Web Services with JAX-RS,” in Part III, “Web Services.” The following topics are addressed here: ■ “Web Applications” on page 81 ■ “Web Application Lifecycle” on page 83 ■ “Web Modules: The hello1 Example” on page 84 ■ “Configuring Web Applications: The hello2 Example” on page 93 ■ “Further Information about Web Applications” on page 101 Web Applications In the Java EE platform, web components provide the dynamic extension capabilities for a web server. Web components can be Java servlets, web pages implemented with JavaServer Faces technology, web service endpoints, or JSP pages. Figure 3–1 illustrates the interaction between a web client and a web application that uses a servlet. The client sends an HTTP request to the web server. A web server that implements Java Servlet and JavaServer Pages technology converts the request into an HTTPServletRequest object. This object is delivered to a web component, which can interact with JavaBeans components or a database to generate dynamic 81 Web Applications content. The web component can then generate an HTTPServletResponse or can pass the request to another web component. A web component eventually generates a HTTPServletResponse object. The web server converts this object to an HTTP response and returns it to the client. FIGURE 3–1 Java Web Application Request Handling Web Client 1 HTTP Request HttpServlet Request 6 HTTP Response HttpServlet Response Database 2 5 W bWWeb WWeb Web WebWeb Web Web WebWeb WW bWWeb WWeb W bWeb W WebWeb Web Web Web Web Web Web CCC CCoCoC oooooooooo omponents Components ompoonents CCCCompoonents C CC ooone CCompoonents CCompoonents tne o CCompoonents C CCCC CC C Components o Components CoC mpono ents s CC Components p ss Components s Components Components 4 3 W bWWeb WWeb WebWeb Web Web WebWeb WW bWWeb WWeb W bWeb W Web WebWeb Web Web Web Web Web JavaBeans CCC C Components Components ompoonents Compoonents C CCompoonents CCompoonents CCompoonents C CCCC CC C Components Components Components CoC mpono ents C mp en s Componentsss s Components Components 4 Database Servlets are Java programming language classes that dynamically process requests and construct responses. Java technologies, such as JavaServer Faces and Facelets, are used for building interactive web applications. (Frameworks can also be used for this purpose.) Although servlets and Java Server Faces and Facelets pages can be used to accomplish similar things, each has its own strengths. Servlets are best suited for service-oriented applications (web service endpoints can be implemented as servlets) and the control functions of a presentation-oriented application, such as dispatching requests and handling nontextual data. Java Server Faces and Facelets pages are more appropriate for generating text-based markup, such as XHTML, and are generally used for presentation–oriented applications. Web components are supported by the services of a runtime platform called a web container. A web container provides such services as request dispatching, security, concurrency, and lifecycle management. A web container also gives web components access to such APIs as naming, transactions, and email. Certain aspects of web application behavior can be configured when the application is installed, or deployed, to the web container. The configuration information can be specified using Java EE annotations or can be maintained in a text file in XML format called a web application deployment descriptor (DD). A web application DD must conform to the schema described in the Java Servlet specification. 82 The Java EE 6 Tutorial • January 2013 This chapter gives a brief overview of the activities involved in developing web applications. First, it summarizes the web application lifecycle and explains how to package and deploy very simple web applications on the GlassFish Server. The chapter moves on to configuring web applications and discusses how to specify the most commonly used configuration parameters. Web Application Lifecycle Web Application Lifecycle A web application consists of web components; static resource files, such as images; and helper classes and libraries. The web container provides many supporting services that enhance the capabilities of web components and make them easier to develop. However, because a web application must take these services into account, the process for creating and running a web application is different from that of traditional stand-alone Java classes. The process for creating, deploying, and executing a web application can be summarized as follows: 1. Develop the web component code. 2. Develop the web application deployment descriptor, if necessary. 3. Compile the web application components and helper classes referenced by the components. 4. Optionally, package the application into a deployable unit. 5. Deploy the application into a web container. 6. Access a URL that references the web application. Developing web component code is covered in the later chapters. Steps 2 through 4 are expanded on in the following sections and illustrated with a Hello, World-style presentation-oriented application. This application allows a user to enter a name into an HTML form and then displays a greeting after the name is submitted. The Hello application contains two web components that generate the greeting and the response. This chapter discusses the following simple applications: ■ ■ hello1, a JavaServer Faces technology-based application that uses two XHTML pages and a managed bean hello2, a servlet-based web application in which the components are implemented by two servlet classes The applications are used to illustrate tasks involved in packaging, deploying, configuring, and running an application that contains web components. The source code for the examples is in the tut-install/examples/web/hello1/ and tut-install/examples/web/hello2/ directories. Chapter 3 • Getting Started with Web Applications 83 Web Modules: The hello1 Example Web Modules: The hello1 Example In the Java EE architecture, a web module is the smallest deployable and usable unit of web resources. A web module contains web components and static web content files, such as images, which are called web resources. A Java EE web module corresponds to a web application as defined in the Java Servlet specification. In addition to web components and web resources, a web module can contain other files: ■ Server-side utility classes, such as shopping carts ■ Client-side classes, such as applets and utility classes A web module has a specific structure. The top-level directory of a web module is the document root of the application. The document root is where XHTML pages, client-side classes and archives, and static web resources, such as images, are stored. The document root contains a subdirectory named WEB-INF, which can contain the following files and directories: ■ ■ classes: A directory that contains server-side classes: servlets, enterprise bean class files, utility classes, and JavaBeans components lib: A directory that contains JAR files that contain enterprise beans, and JAR archives of libraries called by server-side classes ■ Deployment descriptors, such as web.xml (the web application deployment descriptor) and ejb-jar.xml (an EJB deployment descriptor) A web module needs a web.xml file if it uses JavaServer Faces technology, if it must specify certain kinds of security information, or if you want to override information specified by web component annotations. You can also create application-specific subdirectories (that is, package directories) in either the document root or the WEB-INF/classes/ directory. A web module can be deployed as an unpacked file structure or can be packaged in a JAR file known as a Web Archive (WAR) file. Because the contents and use of WAR files differ from those of JAR files, WAR file names use a .war extension. The web module just described is portable; you can deploy it into any web container that conforms to the Java Servlet specification. To deploy a WAR on the GlassFish Server, the file must contain a runtime deployment descriptor. The runtime DD is an XML file that contains such information as the context root of the web application and the mapping of the portable names of an application’s resources to the GlassFish Server’s resources. The GlassFish Server web application runtime DD is named glassfish-web.xml and is located in the WEB-INF directory. The structure of a web module that can be deployed on the GlassFish Server is shown in Figure 3–2. For example, the glassfish-web.xml file for the hello1 application specifies the following context root: 84 The Java EE 6 Tutorial • January 2013 Web Modules: The hello1 Example /hello1 FIGURE 3–2 Web Module Structure Assembly Root WEB-INF lib classes Web pages web.xml glassfish-web.xml (optional) Library archive files All server-side .class files for this web module Examining the hello1 Web Module The hello1 application is a web module that uses JavaServer Faces technology to display a greeting and response. You can use a text editor to view the application files, or you can use NetBeans IDE. ▼ To View the hello1 Web Module Using NetBeans IDE 1 2 3 4 From the File menu, choose Open Project. In the Open Project dialog, navigate to: tut-install/examples/web/ Select the hello1 folder. Select the Open as Main Project check box. Chapter 3 • Getting Started with Web Applications 85 Web Modules: The hello1 Example 5 Expand the Web Pages node and double-click the index.xhtml file to view it in the right-hand pane. The index.xhtml file is the default landing page for a Facelets application. For this application, the page uses simple tag markup to display a form with a graphic image, a header, a text field, and two command buttons: Facelets Hello Greeting

Hello, my name is Duke. What’s yours?

...
The most complex element on the page is the inputText text field. The maxlength attribute specifies the maximum length of the field. The required attribute specifies that the field must be filled out; the requiredMessage attribute provides the error message to be displayed if the field is left empty. The title attribute provides the text to be used by screen readers for the visually disabled. Finally, the value attribute contains an expression that will be provided by the Hello managed bean. The Submit commandButton element specifies the action as response, meaning that when the button is clicked, the response.xhtml page is displayed. 6 Double-click the response.xhtml file to view it. The response page appears. Even simpler than the greeting page, the response page contains a graphic image, a header that displays the expression provided by the managed bean, and a single button whose action element transfers you back to the index.xhtml page: Facelets Hello Response

Hello, #{hello.name}!

7 8 Expand the Source Packages node, then the hello1 node. Double-click the Hello.java file to view it. The Hello class, called a managed bean class, provides getter and setter methods for the name property used in the Facelets page expressions. By default, the expression language refers to the class name, with the first letter in lowercase (hello.name). package hello1; import javax.faces.bean.ManagedBean; import javax.faces.bean.RequestScoped; @ManagedBean @RequestScoped public class Hello { private String name; public Hello() { } public String getName() { return name; } public void setName(String user_name) { this.name = user_name; } } 9 Under the Web Pages node, expand the WEB-INF node and double-click the web.xml file to view it. The web.xml file contains several elements that are required for a Facelets application. All these are created automatically when you use NetBeans IDE to create an application: ■ A context parameter specifying the project stage: javax.faces.PROJECT_STAGE Development Chapter 3 • Getting Started with Web Applications 87 Web Modules: The hello1 Example A context parameter provides configuration information needed by a web application. An application can define its own context parameters. In addition, JavaServer Faces technology and Java Servlet technology define context parameters that an application can use. ■ A servlet element and its servlet-mapping element specifying the FacesServlet: Faces Servlet javax.faces.webapp.FacesServlet 1 Faces Servlet /faces/* ■ A welcome-file-list element specifying the location of the landing page; note that the location is faces/index.xhtml, not just index.xhtml: faces/index.xhtml Introduction to Scopes In the Hello.java class, the annotations javax.faces.bean.ManagedBean and javax.faces.bean.RequestScoped identify the class as a JavaServer Faces managed bean using request scope. Scope defines how application data persists and is shared. The most commonly used scopes in JavaServer Faces applications are the following: ■ Request (@RequestScoped): Request scope persists during a single HTTP request in a web ■ application. In an application like hello1, where the application consists of a single request and response, the bean uses request scope. Session (@SessionScoped): Session scope persists across multiple HTTP requests in a web application. When an application consists of multiple requests and responses where data needs to be maintained, beans use session scope. ■ Application (@ApplicationScoped): Application scope persists across all users’ interactions with a web application. For more information on scopes in JavaServer Faces technology, see “Using Managed Bean Scopes” on page 296. Packaging a Web Module A web module must be packaged into a WAR in certain deployment scenarios and whenever you want to distribute the web module. You package a web module into a WAR by executing the jar command in a directory laid out in the format of a web module, by using the Ant utility, or by using the IDE tool of your choice. This tutorial shows you how to use NetBeans IDE or Ant to build, package, and deploy the hello1 sample application. 88 The Java EE 6 Tutorial • January 2013 Web Modules: The hello1 Example ▼ To Set the Context Root A context root identifies a web application in a Java EE server. A context root must start with a forward slash (/) and end with a string. In a packaged web module for deployment on the GlassFish Server, the context root is stored in glassfish-web.xml. 1 2 3 4 To view or edit the context root, follow these steps. Expand the Web Pages and WEB-INF nodes of the hello1 project. Double-click glassfish-web.xml. In the General tab, observe that the Context Root field is set to /hello1. If you needed to edit this value, you could do so here. When you create a new application, you type the context root here. (Optional) Click the XML tab. Observe that the context root value /hello1 is enclosed by the context-root element. You could also edit the value here. ▼ To Build and Package the hello1 Web Module Using NetBeans IDE 1 2 3 4 5 6 From the File menu, choose Open Project. In the Open Project dialog, navigate to: tut-install/examples/web/ Select the hello1 folder. Select the Open as Main Project check box. Click Open Project. In the Projects tab, right-click the hello1 project and select Build. ▼ To Build and Package the hello1 Web Module Using Ant 1 2 In a terminal window, go to: tut-install/examples/web/hello1/ Type the following command: ant Chapter 3 • Getting Started with Web Applications 89 Web Modules: The hello1 Example This command spawns any necessary compilations, copies files to the directory tut-install/examples/web/hello1/build/, creates the WAR file, and copies it to the directory tut-install/examples/web/hello1/dist/. Deploying a Web Module You can deploy a WAR file to the GlassFish Server by ■ Using NetBeans IDE ■ Using the Ant utility ■ Using the asadmin command ■ Using the Administration Console ■ Copying the WAR file into the domain-dir/autodeploy/ directory Throughout the tutorial, you will use NetBeans IDE or Ant for packaging and deploying. ▼ To Deploy the hello1 Web Module Using NetBeans IDE ● Right-click the hello1 project and select Deploy. ▼ To Deploy the hello1 Web Module Using Ant 1 2 In a terminal window, go to: tut-install/examples/web/hello1/ Type the following command: ant deploy Running a Deployed Web Module Now that the web module is deployed, you can view it by opening the application in a web browser. By default, the application is deployed to host localhost on port 8080. The context root of the web application is hello1. ▼ To Run a Deployed Web Module 1 2 3 Open a web browser. Type the following URL: http://localhost:8080/hello1/ Type your name and click Submit. The response page displays the name you submitted. Click the Back button to try again. 90 The Java EE 6 Tutorial • January 2013 Web Modules: The hello1 Example Listing Deployed Web Modules The GlassFish Server provides two ways to view the deployed web modules: the Administration Console and the asadmin command. ▼ To List Deployed Web Modules Using the Administration Console 1 2 Open the URL http://localhost:4848/ in a browser. Select the Applications node. The deployed web modules appear in the Deployed Applications table. ▼ To List Deployed Web Modules Using the asadmin Command ● Type the following command: asadmin list-applications Updating a Web Module A typical iterative development cycle involves deploying a web module and then making changes to the application components. To update a deployed web module, follow these steps. ▼ To Update a Deployed Web Module 1 2 3 Recompile any modified classes. Redeploy the module. Reload the URL in the client. Dynamic Reloading If dynamic reloading is enabled, you do not have to redeploy an application or module when you change its code or deployment descriptors. All you have to do is copy the changed pages or class files into the deployment directory for the application or module. The deployment directory for a web module named context-root is domain-dir/applications/context-root. The server checks for changes periodically and redeploys the application, automatically and dynamically, with the changes. Chapter 3 • Getting Started with Web Applications 91 Web Modules: The hello1 Example This capability is useful in a development environment because it allows code changes to be tested quickly. Dynamic reloading is not recommended for a production environment, however, because it may degrade performance. In addition, whenever a reload is done, the sessions at that time become invalid, and the client must restart the session. In the GlassFish Server, dynamic reloading is enabled by default. ▼ To Disable or Modify Dynamic Reloading If for some reason you do not want the default dynamic reloading behavior, follow these steps in the Administration Console. 1 2 3 4 5 Open the URL http://localhost:4848/ in a browser. Select the GlassFish Server node. Select the Advanced tab. To disable dynamic reloading, deselect the Reload Enabled check box. To change the interval at which applications and modules are checked for code changes and dynamically reloaded, type a number of seconds in the Reload Poll Interval field. The default value is 2 seconds. 6 Click the Save button. Undeploying Web Modules You can undeploy web modules and other types of enterprise applications by using either NetBeans IDE or the Ant tool. ▼ To Undeploy the hello1 Web Module Using NetBeans IDE 1 2 3 4 Ensure that the GlassFish Server is running. In the Services window, expand the Servers node, GlassFish Server instance, and the Applications node. Right-click the hello1 module and choose Undeploy. To delete the class files and other build artifacts, right-click the project and choose Clean. 92 The Java EE 6 Tutorial • January 2013 ▼ To Undeploy the hello1 Web Module Using Ant Configuring Web Applications: The hello2 Example 1 2 3 In a terminal window, go to: tut-install/examples/web/hello1/ Type the following command: ant undeploy To delete the class files and other build artifacts, type the following command: ant clean Configuring Web Applications: The hello2 Example Web applications are configured by means of annotations or by elements contained in the web application deployment descriptor. The following sections give a brief introduction to the web application features you will usually want to configure. Examples demonstrate procedures for configuring the Hello, World application. Mapping URLs to Web Components When it receives a request, the web container must determine which web component should handle the request. The web container does so by mapping the URL path contained in the request to a web application and a web component. A URL path contains the context root and, optionally, a URL pattern: http://host:port/context-root[/url-pattern] You set the URL pattern for a servlet by using the @WebServlet annotation in the servlet source file. For example, the GreetingServlet.java file in the hello2 application contains the following annotation, specifying the URL pattern as /greeting: @WebServlet("/greeting") public class GreetingServlet extends HttpServlet { ... This annotation indicates that the URL pattern /greeting follows the context root. Therefore, when the servlet is deployed locally, it is accessed with the following URL: http://localhost:8080/hello2/greeting To access the servlet by using only the context root, specify "/" as the URL pattern. Chapter 3 • Getting Started with Web Applications 93 Configuring Web Applications: The hello2 Example Examining the hello2 Web Module The hello2 application behaves almost identically to the hello1 application, but it is implemented using Java Servlet technology instead of JavaServer Faces technology. You can use a text editor to view the application files, or you can use NetBeans IDE. ▼ To View the hello2 Web Module Using NetBeans IDE 1 2 3 4 5 6 From the File menu, choose Open Project. In the Open Project dialog, navigate to: tut-install/examples/web/ Select the hello2 folder. Select the Open as Main Project check box. Expand the Source Packages node, then the servlets node. Double-click the GreetingServlet.java file to view it. This servlet overrides the doGet method, implementing the GET method of HTTP. The servlet displays a simple HTML greeting form whose Submit button, like that of hello1, specifies a response page for its action. The following excerpt begins with the @WebServlet annotation that specifies the URL pattern, relative to the context root: @WebServlet("/greeting") public class GreetingServlet extends HttpServlet { @Override public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html"); response.setBufferSize(8192); PrintWriter out = response.getWriter(); // then write the data of the response out.println("" + "Servlet Hello"); // then write the data of the response out.println("" + "\"Duke" + "
" + "

Hello, my name is Duke. What’s yours?

" + "" + "

" + "" 94 The Java EE 6 Tutorial • January 2013 Configuring Web Applications: The hello2 Example + "" + "
"); String username = request.getParameter("username"); if (username != null && username.length() > 0) { RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/response"); if (dispatcher != null) { dispatcher.include(request, response); } } out.println(""); out.close(); } ... 7 Double-click the ResponseServlet.java file to view it. This servlet also overrides the doGet method, displaying only the response. The following excerpt begins with the @WebServlet annotation, which specifies the URL pattern, relative to the context root: @WebServlet("/response") public class ResponseServlet extends HttpServlet { @Override public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { PrintWriter out = response.getWriter(); // then write the data of the response String username = request.getParameter("username"); if (username != null && username.length() > 0) { out.println("

Hello, " + username + "!

"); } } ... 8 Under the Web Pages node, expand the WEB-INF node and double-click the glassfish-web.xml file to view it. In the General tab, observe that the Context Root field is set to /hello2. For this simple servlet application, a web.xml file is not required. Running the hello2 Example You can use either NetBeans IDE or Ant to build, package, deploy, and run the hello2 example. Chapter 3 • Getting Started with Web Applications 95 Configuring Web Applications: The hello2 Example ▼ To Run the hello2 Example Using NetBeans IDE 1 2 3 4 5 6 7 8 From the File menu, choose Open Project. In the Open Project dialog, navigate to: tut-install/examples/web/ Select the hello2 folder. Select the Open as Main Project check box. Click Open Project. In the Projects tab, right-click the hello2 project and select Build. Right-click the project and select Deploy. In a web browser, open the URL http://localhost:8080/hello2/greeting. The URL specifies the context root, followed by the URL pattern. The application looks much like the hello1 application. The major difference is that after you click the Submit button, the response appears below the greeting, not on a separate page. ▼ To Run the hello2 Example Using Ant 1 In a terminal window, go to: tut-install/examples/web/hello2/ 2 Type the following command: ant This target builds the WAR file and copies it to the tut-install/examples/web/hello2/dist/ directory. 3 Type ant deploy. Ignore the URL shown in the deploy target output. 4 In a web browser, open the URL http://localhost:8080/hello2/greeting. The URL specifies the context root, followed by the URL pattern. The application looks much like the hello1 application. The major difference is that after you click the Submit button, the response appears below the greeting, not on a separate page. 96 The Java EE 6 Tutorial • January 2013 Configuring Web Applications: The hello2 Example Declaring Welcome Files The welcome files mechanism allows you to specify a list of files that the web container will use for appending to a request for a URL (called a valid partial request) that is not mapped to a web component. For example, suppose that you define a welcome file welcome.html. When a client requests a URL such as host:port/webapp/directory, where directory is not mapped to a servlet or XHTML page, the file host:port/webapp/directory/welcome.html is returned to the client. If a web container receives a valid partial request, the web container examines the welcome file list and appends to the partial request each welcome file in the order specified and checks whether a static resource or servlet in the WAR is mapped to that request URL. The web container then sends the request to the first resource that matches in the WAR. If no welcome file is specified, the GlassFish Server will use a file named index.html as the default welcome file. If there is no welcome file and no file named index.html, the GlassFish Server returns a directory listing. By convention, you specify the welcome file for a JavaServer Faces application as faces/file-name.xhtml. Setting Context Parameters The web components in a web module share an object that represents their application context. You can pass context parameters to the context, or initialization parameters to a servlet. Context parameters are available to the entire web application. For information on initialization parameters, see “Creating and Initializing a Servlet” on page 331. ▼ To Add a Context Parameter Using NetBeans IDE These steps apply generally to web applications, but do not apply specifically to the examples in this chapter. 1 2 3 4 5 6 Open the project. Expand the project’s node in the Projects pane. Expand the Web Pages node and then the WEB-INF node. Double-click web.xml. If the project does not have a web.xml file, follow the steps in “To Create a web.xml File Using NetBeans IDE” on page 98. Click General at the top of the editor pane. Expand the Context Parameters node. Chapter 3 • Getting Started with Web Applications 97 Configuring Web Applications: The hello2 Example 7 Click Add. An Add Context Parameter dialog opens. 8 9 In the Parameter Name field, type the name that specifies the context object. In the Parameter Value field, type the parameter to pass to the context object. 10 Click OK. ▼ To Create a web.xml File Using NetBeans IDE 1 2 3 4 From the File menu, choose New File. In the New File wizard, select the Web category, then select Standard Deployment Descriptor under File Types. Click Next. Click Finish. A basic web.xml file appears in web/WEB-INF/. Mapping Errors to Error Screens When an error occurs during execution of a web application, you can have the application display a specific error screen according to the type of error. In particular, you can specify a mapping between the status code returned in an HTTP response or a Java programming language exception returned by any web component and any type of error screen. You can have multiple error-page elements in your deployment descriptor. Each element identifies a different error that causes an error page to open. This error page can be the same for any number of error-page elements. ▼ To Set Up Error Mapping Using NetBeans IDE These steps apply generally to web applications, but do not apply specifically to the examples in this chapter. 1 2 3 Open the project. Expand the project’s node in the Projects pane. Expand the Web Pages node and then the WEB-INF node. 98 The Java EE 6 Tutorial • January 2013 4 5 6 7 8 9 Configuring Web Applications: The hello2 Example Double-click web.xml. If the project does not have a web.xml file, follow the steps in “To Create a web.xml File Using NetBeans IDE” on page 98. Click Pages at the top of the editor pane. Expand the Error Pages node. Click Add. The Add Error Page dialog opens. Click Browse to locate the page that you want to act as the error page. Specify either an error code or an exception type: ■ To specify an error code, in the Error Code field, type the HTTP status code that will cause the error page to be opened, or leave the field blank to include all error codes. ■ To specify an exception type, in the Exception Type field, type the exception that will cause the error page to load. To specify all throwable errors and exceptions, type java.lang.Throwable. 10 Click OK. Declaring Resource References If your web component uses such objects as enterprise beans, data sources, or web services, you use Java EE annotations to inject these resources into your application. Annotations eliminate a lot of the boilerplate lookup code and configuration elements that previous versions of Java EE required. Although resource injection using annotations can be more convenient for the developer, there are some restrictions on using it in web applications. First, you can inject resources only into container-managed objects, since a container must have control over the creation of a component so that it can perform the injection into a component. As a result, you cannot inject resources into such objects as simple JavaBeans components. However, JavaServer Faces managed beans and CDI managed beans are managed by the container; therefore, they can accept resource injections. Components that can accept resource injections are listed in Table 3–1. This section explains how to use a couple of the annotations supported by a web container to inject resources. Chapter 33, “Running the Persistence Examples,” explains how web applications use annotations supported by the Java Persistence API. Chapter 40, “Getting Chapter 3 • Getting Started with Web Applications 99 Configuring Web Applications: The hello2 Example Started Securing Web Applications,” explains how to use annotations to specify information about securing web applications. See Chapter 45, “Resources and Resource Adapters,” for more information on resources. TABLE 3–1 Web Components That Accept Resource Injections Component Interface/Class Servlets javax.servlet.Servlet Servlet filters javax.servlet.ServletFilter Event listeners javax.servlet.ServletContextListener javax.servlet.ServletContextAttributeListener javax.servlet.ServletRequestListener javax.servlet.ServletRequestAttributeListener javax.servlet.http.HttpSessionListener javax.servlet.http.HttpSessionAttributeListener javax.servlet.http.HttpSessionBindingListener Managed beans Plain Old Java Objects Declaring a Reference to a Resource The @Resource annotation is used to declare a reference to a resource, such as a data source, an enterprise bean, or an environment entry. The @Resource annotation is specified on a class, a method, or a field. The container is responsible for injecting references to resources declared by the @Resource annotation and mapping it to the proper JNDI resources. In the following example, the @Resource annotation is used to inject a data source into a component that needs to make a connection to the data source, as is done when using JDBC technology to access a relational database: @Resource javax.sql.DataSource catalogDS; public getProductsByCategory() { // get a connection and execute the query Connection conn = catalogDS.getConnection(); ... } The container injects this data source prior to the component’s being made available to the application. The data source JNDI mapping is inferred from the field name catalogDS and the type, javax.sql.DataSource. If you have multiple resources that you need to inject into one component, you need to use the @Resources annotation to contain them, as shown by the following example: 100 The Java EE 6 Tutorial • January 2013 Further Information about Web Applications @Resources ({ }) @Resource (name="myDB" type=java.sql.DataSource), @Resource(name="myMQ" type=javax.jms.ConnectionFactory) The web application examples in this tutorial use the Java Persistence API to access relational databases. This API does not require you to explicitly create a connection to a data source. Therefore, the examples do not use the @Resource annotation to inject a data source. However, this API supports the @PersistenceUnit and @PersistenceContext annotations for injecting EntityManagerFactory and EntityManager instances, respectively. Chapter 33, “Running the Persistence Examples,” describes these annotations and the use of the Java Persistence API in web applications. Declaring a Reference to a Web Service The @WebServiceRef annotation provides a reference to a web service. The following example shows uses the @WebServiceRef annotation to declare a reference to a web service. WebServiceRef uses the wsdlLocation element to specify the URI of the deployed service’s WSDL file: ... import javax.xml.ws.WebServiceRef; ... public class ResponseServlet extends HTTPServlet { @WebServiceRef(wsdlLocation= "http://localhost:8080/helloservice/hello?wsdl") static HelloService service; Further Information about Web Applications For more information on web applications, see ■ ■ ■ ■ JavaServer Faces 2.0 specification: http://jcp.org/en/jsr/detail?id=314 JavaServer Faces technology web site: http://www.oracle.com/technetwork/java/javaee/javaserverfaces-139869.html Java Servlet 3.0 specification: http://jcp.org/en/jsr/detail?id=315 Java Servlet web site: http://www.oracle.com/technetwork/java/index-jsp-135475.html Chapter 3 • Getting Started with Web Applications 101 102 4C H A P T E R 4 JavaServer Faces Technology JavaServer Faces technology is a server-side component framework for building Java technology-based web applications. JavaServer Faces technology consists of the following: ■ An API for representing components and managing their state; handling events, server-side validation, and data conversion; defining page navigation; supporting internationalization and accessibility; and providing extensibility for all these features ■ Tag libraries for adding components to web pages and for connecting components to server-side objects JavaServer Faces technology provides a well-defined programming model and various tag libraries. The tag libraries contain tag handlers that implement the component tags. These features significantly ease the burden of building and maintaining web applications with server-side user interfaces (UIs). With minimal effort, you can complete the following tasks. ■ Create a web page. ■ Drop components onto a web page by adding component tags. ■ Bind components on a page to server-side data. ■ Wire component-generated events to server-side application code. Save and restore application state beyond the life of server requests. ■ ■ Reuse and extend components through customization. This chapter provides an overview of JavaServer Faces technology. After explaining what a JavaServer Faces application is and reviewing some of the primary benefits of using JavaServer Faces technology, this chapter describes the process of creating a simple JavaServer Faces application. This chapter also introduces the JavaServer Faces lifecycle by describing the example JavaServer Faces application progressing through the lifecycle stages. The following topics are addressed here: ■ “What Is a JavaServer Faces Application?” on page 104 ■ “JavaServer Faces Technology Benefits” on page 105 103 What Is a JavaServer Faces Application? ■ “Creating a Simple JavaServer Faces Application” on page 106 ■ “Further Information about JavaServer Faces Technology” on page 110 What Is a JavaServer Faces Application? The functionality provided by a JavaServer Faces application is similar to that of any other Java web application. A typical JavaServer Faces application includes the following parts: ■ A set of web pages in which components are laid out ■ A set of tags to add components to the web page ■ A set of managed beans, which are lightweight container-managed objects (POJOs) with minimal requirements. They support a small set of basic services, such as resource injection, lifecycle callbacks and interceptors. ■ A web deployment descriptor (web.xml file) ■ Optionally, one or more application configuration resource files, such as a faces-config.xml file, which can be used to define page navigation rules and configure beans and other custom objects, such as custom components ■ Optionally, a set of custom objects, which can include custom components, validators, converters, or listeners, created by the application developer ■ Optionally, a set of custom tags for representing custom objects on the page Figure 4–1 shows the interaction between client and server in a typical JavaServer Faces application. In response to a client request, a web page is rendered by the web container that implements JavaServer Faces technology. FIGURE 4–1 Responding to a Client Request for a JavaServer Faces Page Access page HTTP Request Browser Web Container myfacelet.xhtml Renders HTML HTTP Response myUI 104 The Java EE 6 Tutorial • January 2013 JavaServer Faces Technology Benefits The web page, myfacelet.xhtml, is built using JavaServer Faces component tags. Component tags are used to add components to the view (represented by myUI in the diagram), which is the server-side representation of the page. In addition to components, the web page can also reference objects, such as the following: ■ Any event listeners, validators, and converters that are registered on the components ■ The JavaBeans components that capture the data and process the application-specific functionality of the components On request from the client, the view is rendered as a response. Rendering is the process whereby, based on the server-side view, the web container generates output, such as HTML or XHTML, that can be read by the client, such as a browser. JavaServer Faces Technology Benefits One of the greatest advantages of JavaServer Faces technology is that it offers a clean separation between behavior and presentation for web applications. A JavaServer Faces application can map HTTP requests to component-specific event handling and manage components as stateful objects on the server. JavaServer Faces technology allows you to build web applications that implement the finer-grained separation of behavior and presentation that is traditionally offered by client-side UI architectures. The separation of logic from presentation also allows each member of a web application development team to focus on a single piece of the development process and provides a simple programming model to link the pieces. For example, page authors with no programming expertise can use JavaServer Faces technology tags in a web page to link to server-side objects without writing any scripts. Another important goal of JavaServer Faces technology is to leverage familiar component and web-tier concepts without limiting you to a particular scripting technology or markup language. JavaServer Faces technology APIs are layered directly on top of the Servlet API, as shown in Figure 4–2. FIGURE 4–2 Java Web Application Technologies JavaServer Faces Java Servlet JavaServer Pages Standard Tag Library JavaServer Pages Chapter 4 • JavaServer Faces Technology 105 Creating a Simple JavaServer Faces Application This layering of APIs enables several important application use cases, such as using different presentation technologies, creating your own custom components directly from the component classes, and generating output for various client devices. Facelets technology, available as part of JavaServer Faces 2.0, is now the preferred presentation technology for building JavaServer Faces technology-based web applications. For more information on Facelets technology features, see Chapter 5, “Introduction to Facelets.” Facelets technology offers several advantages. ■ Code can be reused and extended for components through the templating and composite component features. ■ When you use the JavaServer Faces Annotations feature, you can automatically register the managed bean as a resource available for JavaServer Faces applications. In addition, implicit navigation rules allow developers to quickly configure page navigation. These features reduce the manual configuration process for applications. ■ Most important, JavaServer Faces technology provides a rich architecture for managing component state, processing component data, validating user input, and handling events. Creating a Simple JavaServer Faces Application JavaServer Faces technology provides an easy and user-friendly process for creating web applications. Developing a simple JavaServer Faces application typically requires the following tasks: ■ Developing managed beans ■ Creating web pages using component tags ■ Mapping the javax.faces.webapp.FacesServlet instance This section describes those tasks through the process of creating a simple JavaServer Faces Facelets application. The example is a Hello application that includes a managed bean and a web page. When accessed by a client, the web page prints out a Hello World message. The example application is located in the tut-install/examples/web/hello/ directory. The tasks involved in developing this application can be examined by looking at the application components in detail. Developing the Managed Bean As mentioned earlier in this chapter, a managed bean is a lightweight container-managed object. Components in a page are associated with managed beans that provide application logic. The example managed bean, Hello.java, contains the following code: 106 The Java EE 6 Tutorial • January 2013 Creating a Simple JavaServer Faces Application package hello; import javax.faces.bean.ManagedBean; @ManagedBean public class Hello { final String world = "Hello World!"; public String getworld() { return world; } } The example managed bean sets the value of the variable world with the string "Hello World!". The @ManagedBean annotation registers the managed bean as a resource with the JavaServer Faces implementation. For more information on managed beans and annotations, see Chapter 9, “Developing with JavaServer Faces Technology.” Creating the Web Page In a typical Facelets application, web pages are created in XHTML. The example web page, beanhello.xhtml, is a simple XHTML page. It has the following content: xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html"> Facelets Hello World #{hello.world} A Facelets XHTML web page can also contain several other elements, which are covered later in this tutorial. The web page connects to the managed bean through the Expression Language (EL) value expression #{hello.world}, which retrieves the value of the world property from the managed bean Hello. Note the use of hello to reference the managed bean Hello. If no name is specified in the @ManagedBean annotation, the managed bean is always accessed with the first letter of the class name in lowercase. For more information on using EL expressions, see Chapter 6, “Expression Language.” For more information about Facelets technology, see Chapter 5, “Introduction to Facelets.” For more information about the JavaServer Faces programming model and building web pages using JavaServer Faces technology, see Chapter 7, “Using JavaServer Faces Technology in Web Pages.” Chapter 4 • JavaServer Faces Technology 107 Creating a Simple JavaServer Faces Application Mapping the FacesServlet Instance The final task requires mapping the FacesServlet, which is done through the web deployment descriptor (web.xml). A typical mapping of FacesServlet is as follows: Faces Servlet javax.faces.webapp.FacesServlet 1 Faces Servlet /faces/* The preceding file segment represents part of a typical JavaServer Faces web deployment descriptor. The web deployment descriptor can also contain other content relevant to a JavaServer Faces application configuration, but that information is not covered here. Mapping the FacesServlet is automatically done for you if you are using an IDE such as NetBeans IDE. The Lifecycle of the hello Application Every web application has a lifecycle. Common tasks, such as handling incoming requests, decoding parameters, modifying and saving state, and rendering web pages to the browser, are all performed during a web application lifecycle. Some web application frameworks hide the details of the lifecycle from you, whereas others require you to manage them manually. By default, JavaServer Faces automatically handles most of the lifecycle actions for you. However, it also exposes the various stages of the request lifecycle, so that you can modify or perform different actions if your application requirements warrant it. It is not necessary for the beginning user to understand the lifecycle of a JavaServer Faces application, but the information can be useful for creating more complex applications. The lifecycle of a JavaServer Faces application starts and ends with the following activity: The client makes a request for the web page, and the server responds with the page. The lifecycle consists of two main phases: execute and render. During the execute phase, several actions can take place: ■ The application view is built or restored. ■ The request parameter values are applied. ■ Conversions and validations are performed for component values. ■ Managed beans are updated with component values. ■ Application logic is invoked. 108 The Java EE 6 Tutorial • January 2013 Creating a Simple JavaServer Faces Application For a first (initial) request, only the view is built. For subsequent (postback) requests, some or all of the other actions can take place. In the render phase, the requested view is rendered as a response to the client. Rendering is typically the process of generating output, such as HTML or XHTML, that can be read by the client, usually a browser. The following short description of the example JavaServer Faces application passing through its lifecycle summarizes the activity that takes place behind the scenes. The hello example application goes through the following stages when it is deployed on the GlassFish Server. 1. When the hello application is built and deployed on the GlassFish Server, the application is in an uninitiated state. 2. When a client makes an initial request for the beanhello.xhtml web page, the hello Facelets application is compiled. 3. The compiled Facelets application is executed, and a new component tree is constructed for the hello application and is placed in a javax.faces.context.FacesContext. 4. The component tree is populated with the component and the managed bean property associated with it, represented by the EL expression hello.world. 5. A new view is built, based on the component tree. 6. The view is rendered to the requesting client as a response. 7. The component tree is destroyed automatically. 8. On subsequent (postback) requests, the component tree is rebuilt, and the saved state is applied. For more detailed information on the JavaServer Faces lifecycle, see Chapter 10, “JavaServer Faces Technology: Advanced Concepts.” Running the hello Application You can use either NetBeans IDE or Ant to build, package, deploy, and run the hello example. ▼ To Run the hello Application in NetBeans IDE 1 2 3 From the File menu, choose Open Project. In the Open Project dialog box, navigate to: tut-install/examples/web Select the hello folder. Chapter 4 • JavaServer Faces Technology 109 Further Information about JavaServer Faces Technology 4 5 6 Select the Open as Main Project check box. Click Open Project. In the Projects tab, right-click the hello project and select Run. This step compiles, assembles, and deploys the application and then brings up a web browser window displaying the following URL: http://localhost:8080/hello The output looks like this: Hello World! ▼ To Run the hello Example Using Ant 1 2 3 4 In a terminal window, go to: tut-install/examples/web/hello/ Type the following command: ant This target builds the WAR file and copies it to the tut-install/examples/web/hello/dist/ directory. Type ant deploy. In a web browser, type the following URL: http://localhost:8080/hello/ The output looks like this: Hello World! Further Information about JavaServer Faces Technology For more information on JavaServer Faces technology, see ■ ■ JavaServer Faces 2.0 specification: http://jcp.org/en/jsr/detail?id=314 JavaServer Faces project web site: http://javaserverfaces.java.net/ ■ Mojarra (JavaServer Faces 2.0 implementation) Release Notes: http://javaserverfaces.java.net/nonav/rlnotes/2.1.4/ 110 The Java EE 6 Tutorial • January 2013 5C H A P T E R 5 Introduction to Facelets The term Facelets refers to the view declaration language for JavaServer Faces technology. JavaServer Pages (JSP) technology, previously used as the presentation technology for JavaServer Faces, does not support all the new features available in JavaServer Faces in the Java EE 6 platform. JSP technology is considered to be a deprecated presentation technology for JavaServer Faces. Facelets is a part of the JavaServer Faces specification and also the preferred presentation technology for building JavaServer Faces technology-based applications. The following topics are addressed here: ■ “What Is Facelets?” on page 111 ■ “Developing a Simple Facelets Application” on page 113 ■ “Using Facelets Templates” on page 119 ■ “Composite Components” on page 121 ■ “Web Resources” on page 123 What Is Facelets? Facelets is a powerful but lightweight page declaration language that is used to build JavaServer Faces views using HTML style templates and to build component trees. Facelets features include the following: ■ Use of XHTML for creating web pages ■ ■ Support for Facelets tag libraries in addition to JavaServer Faces and JSTL tag libraries Support for the Expression Language (EL) ■ Templating for components and pages Advantages of Facelets for large-scale development projects include the following: ■ Support for code reuse through templating and composite components ■ Functional extensibility of components and other server-side objects through customization 111 What Is Facelets? ■ Faster compilation time ■ Compile-time EL validation ■ High-performance rendering In short, the use of Facelets reduces the time and effort that needs to be spent on development and deployment. Facelets views are usually created as XHTML pages. JavaServer Faces implementations support XHTML pages created in conformance with the XHTML Transitional Document Type Definition (DTD), as listed at http://www.w3.org/TR/xhtml1/ #a_dtd_XHTML-1.0-Transitional. By convention, web pages built with XHTML have an .xhtml extension. JavaServer Faces technology supports various tag libraries to add components to a web page. To support the JavaServer Faces tag library mechanism, Facelets uses XML namespace declarations. Table 5–1 lists the tag libraries supported by Facelets. TABLE 5–1 Tag Libraries Supported by Facelets Tag Library URI Prefix Example Contents JavaServer Faces Facelets Tag Library JavaServer Faces HTML Tag Library JavaServer Faces Core Tag Library http://java.sun.com/jsf/facelets ui: ui:component ui:insert http://java.sun.com/jsf/html h: h:head h:body h:outputText h:inputText http://java.sun.com/jsf/core f: f:actionListener f:attribute JSTL Core Tag Library JSTL Functions Tag Library http://java.sun.com/jsp/jstl/core c: c:forEach http://java.sun.com/jsp/jstl/ functions c:catch fn: fn:toUpperCase fn:toLowerCase 112 The Java EE 6 Tutorial • January 2013 Tags for templating JavaServer Faces component tags for all UIComponent objects Tags for JavaServer Faces custom actions that are independent of any particular render kit JSTL 1.2 Core Tags JSTL 1.2 Functions Tags Developing a Simple Facelets Application In addition, Facelets supports tags for composite components, for which you can declare custom prefixes. For more information on composite components, see “Composite Components” on page 121. Based on the JavaServer Faces support for Expression Language (EL) syntax, Facelets uses EL expressions to reference properties and methods of managed beans. EL expressions can be used to bind component objects or values to methods or properties of managed beans. For more information on using EL expressions, see “Using the EL to Reference Managed Beans” on page 191. Developing a Simple Facelets Application This section describes the general steps involved in developing a JavaServer Faces application. The following tasks are usually required: ■ Developing the managed beans ■ Creating the pages using the component tags ■ Defining page navigation ■ Mapping the javax.faces.webapp.FacesServlet instance ■ Adding managed bean declarations Creating a Facelets Application The example used in this tutorial is the guessnumber application. The application presents you with a page that asks you to guess a number between 0 and 10, validates your input against a random number, and responds with another page that informs you whether you guessed the number correctly or incorrectly. Developing a Managed Bean In a typical JavaServer Faces application, each page of the application connects to a managed bean. The managed bean defines the methods and properties that are associated with the components. In this example, both pages use the same managed bean. The following managed bean class, UserNumberBean.java, generates a random number from 0 to 10: package guessNumber; import java.io.Serializable; import java.util.Random; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; @ManagedBean Chapter 5 • Introduction to Facelets 113 Developing a Simple Facelets Application @SessionScoped public class UserNumberBean implements Serializable { private static final long serialVersionUID = 5443351151396868724L; Integer randomInt = null; Integer userNumber = null; String response = null; private long maximum=10; private long minimum=0; public UserNumberBean() { Random randomGR = new Random(); randomInt = new Integer(randomGR.nextInt(10)); System.out.println("Duke’s number: " + randomInt); public void setUserNumber(Integer user_number) { userNumber = user_number; public Integer getUserNumber() { return userNumber; public String getResponse() { return "Yay! You got it!"; } else { if ((userNumber != null) && (userNumber.compareTo(randomInt) == 0)) { return "Sorry, " + userNumber + " is incorrect."; } } } } } public long getMaximum() { return (this.maximum); } public void setMaximum(long maximum) { this.maximum = maximum; } public long getMinimum() { return (this.minimum); } public void setMinimum(long minimum) { this.minimum = minimum; } } Note the use of the @ManagedBean annotation, which registers the managed bean as a resource with the JavaServer Faces implementation. The @SessionScoped annotation registers the bean scope as session. Creating Facelets Views To create a page or view, you add components to the pages, wire the components to managed bean values and properties, and register converters, validators, or listeners on the components. 114 The Java EE 6 Tutorial • January 2013 Developing a Simple Facelets Application For the example application, XHTML web pages serve as the front end. The first page of the example application is a page called greeting.xhtml. A closer look at various sections of this web page provides more information. The first section of the web page declares the content type for the page, which is XHTML: The next section specifies the language of the XHTML page, then declares the XML namespace for the tag libraries that are used in the web page: The next section uses various tags to insert components into the web page: Guess Number Facelets Application

Hi, my name is Duke. I am thinking of a number from #{userNumberBean.minimum} to #{userNumberBean.maximum}. Can you guess it?

Chapter 5 • Introduction to Facelets 115 Developing a Simple Facelets Application Note the use of the following tags: ■ Facelets HTML tags (those beginning with h:) to add components ■ The Facelets core tag f:validateLongRange to validate the user input An h:inputText tag accepts user input and sets the value of the managed bean property userNumber through the EL expression #{userNumberBean.userNumber}. The input value is validated for value range by the JavaServer Faces standard validator tag f:validateLongRange. The image file, wave.med.gif, is added to the page as a resource; so is the style sheet. For more details about the resources facility, see “Web Resources” on page 123. An h:commandButton tag with the ID submit starts validation of the input data when a user clicks the button. Using implicit navigation, the tag redirects the client to another page, response.xhtml, which shows the response to your input. The page specifies only response, which by default causes the server to look for response.xhtml. You can now create the second page, response.xhtml, with the following content: Guess Number Facelets Application

Configuring the Application Configuring a JavaServer Faces application involves mapping the Faces Servlet in the web deployment descriptor file, such as a web.xml file, and possibly adding managed bean declarations, navigation rules, and resource bundle declarations to the application configuration resource file, faces-config.xml. 116 The Java EE 6 Tutorial • January 2013 Developing a Simple Facelets Application If you are using NetBeans IDE, a web deployment descriptor file is automatically created for you. In such an IDE-created web.xml file, change the default greeting page, which is index.xhtml, to greeting.xhtml. Here is an example web.xml file, showing this change in bold. javax.faces.PROJECT_STAGE Development Faces Servlet javax.faces.webapp.FacesServlet 1 Faces Servlet /faces/* 30 faces/greeting.xhtml Note the use of the context parameter PROJECT_STAGE. This parameter identifies the status of a JavaServer Faces application in the software lifecycle. The stage of an application can affect the behavior of the application. For example, if the project stage is defined as Development, debugging information is automatically generated for the user. If not defined by the user, the default project stage is Production. Running the guessnumber Facelets Example You can use either NetBeans IDE or Ant to build, package, deploy, and run the guessnumber example. The source code for this example is available in the tut-install/examples/web/guessnumber/ directory. Chapter 5 • Introduction to Facelets 117 Developing a Simple Facelets Application ▼ To Build, Package, and Deploy the guessnumber Example Using NetBeans IDE From the File menu, choose Open Project. In the Open Project dialog, navigate to: tut-install/examples/web/ Select the guessnumber folder. Select the Open as Main Project check box. Click Open Project. In the Projects tab, right-click the guessnumber project and select Deploy. This option builds and deploys the example application to your GlassFish Server instance. 1 2 3 4 5 6 ▼ To Build, Package, and Deploy the guessnumber Example Using Ant 1 In a terminal window, go to: tut-install/examples/web/guessnumber/ 2 Type the following command: ant This command calls the default target, which builds and packages the application into a WAR file, guessnumber.war, that is located in the dist directory. 3 4 Make sure that the GlassFish Server is started. To deploy the application, type the following command: ant deploy ▼ To Run the guessnumber Example 1 2 Open a web browser. Type the following URL in your web browser: http://localhost:8080/guessnumber A web page opens. 118 The Java EE 6 Tutorial • January 2013 Using Facelets Templates 3 In the text field, type a number from 0 to 10 and click Submit. Another page appears, reporting whether your guess is correct or incorrect. 4 If you guessed incorrectly, click the Back button to return to the main page. You can continue to guess until you get the correct answer. Using Facelets Templates JavaServer Faces technology provides the tools to implement user interfaces that are easy to extend and reuse. Templating is a useful Facelets feature that allows you to create a page that will act as the base, or template, for the other pages in an application. By using templates, you can reuse code and avoid recreating similarly constructed pages. Templating also helps in maintaining a standard look and feel in an application with a large number of pages. Table 5–2 lists Facelets tags that are used for templating and their respective functionality. TABLE 5–2 Facelets Templating Tags Tag Function ui:component Defines a component that is created and added to the component tree. ui:composition Defines a page composition that optionally uses a template. Content outside of this tag is ignored. ui:debug ui:decorate ui:define ui:fragment ui:include ui:insert ui:param ui:repeat ui:remove Defines a debug component that is created and added to the component tree. Similar to the composition tag but does not disregard content outside this tag. Defines content that is inserted into a page by a template. Similar to the component tag but does not disregard content outside this tag. Encapsulate and reuse content for multiple pages. Inserts content into a template. Used to pass parameters to an included file. Used as an alternative for loop tags, such as c:forEach or h:dataTable. Removes content from a page. For more information on Facelets templating tags, see the documentation at http://docs.oracle.com/javaee/6/javaserverfaces/2.1/docs/vdldocs/facelets/. The Facelets tag library includes the main templating tag ui:insert. A template page that is created with this tag allows you to define a default structure for a page. A template page is used as a template for other pages, usually referred to as client pages. Chapter 5 • Introduction to Facelets 119 Using Facelets Templates Here is an example of a template saved as template.xhtml: Facelets Template
Top Section
Left Section
Main Content The example page defines an XHTML page that is divided into three sections: a top section, a left section, and a main section. The sections have style sheets associated with them. The same structure can be reused for the other pages of the application. The client page invokes the template by using the ui:composition tag. In the following example, a client page named templateclient.xhtml invokes the template page named template.xhtml from the preceding example. A client page allows content to be inserted with the help of the ui:define tag. Welcome to Template Client Page 120 The Java EE 6 Tutorial • January 2013 Composite Components You can use NetBeans IDE to create Facelets template and client pages. For more information on creating these pages, see http://netbeans.org/kb/docs/web/jsf20-intro.html. Composite Components JavaServer Faces technology offers the concept of composite components with Facelets. A composite component is a special type of template that acts as a component. Any component is essentially a piece of reusable code that behaves in a particular way. For example, an input component accepts user input. A component can also have validators, converters, and listeners attached to it to perform certain defined actions. A composite component consists of a collection of markup tags and other existing components. This reusable, user-created component has a customized, defined functionality and can have validators, converters, and listeners attached to it like any other component. With Facelets, any XHTML page that contains markup tags and other components can be converted into a composite component. Using the resources facility, the composite component can be stored in a library that is available to the application from the defined resources location. Table 5–3 lists the most commonly used composite tags and their functions. TABLE 5–3 Composite Component Tags Tag Function composite:interface composite:implementation composite:attribute composite:insertChildren Declares the usage contract for a composite component. The composite component can be used as a single component whose feature set is the union of the features declared in the usage contract. Defines the implementation of the composite component. If a composite:interface element appears, there must be a corresponding composite:implementation. Declares an attribute that may be given to an instance of the composite component in which this tag is declared. Any child components or template text within the composite component tag in the using page will be reparented into the composite component at the point indicated by this tag’s placement within the composite:implementation section. Chapter 5 • Introduction to Facelets 121 Composite Components TABLE 5–3 Composite Component Tags Tag (Continued) Function composite:valueHolder composite:editableValueHolder composite:actionSource Declares that the composite component whose contract is declared by the composite:interface in which this element is nested exposes an implementation of javax.faces.component.ValueHolder suitable for use as the target of attached objects in the using page. Declares that the composite component whose contract is declared by the composite:interface in which this element is nested exposes an implementation of javax.faces.component.EditableValueHolder suitable for use as the target of attached objects in the using page. Declares that the composite component whose contract is declared by the composite:interface in which this element is nested exposes an implementation of javax.faces.component.ActionSource2 suitable for use as the target of attached objects in the using page. For more information and a complete list of Facelets composite tags, see the documentation at http://docs.oracle.com/javaee/6/javaserverfaces/2.1/docs/vdldocs/facelets/. The following example shows a composite component that accepts an email address as input: This content will not be displayed Note the use of cc.attrs.value when defining the value of the inputText component. The word cc in JavaServer Faces is a reserved word for composite components. The #{cc.attrs.attribute-name} expression is used to access the attributes defined for the composite component’s interface, which in this case happens to be value. The preceding example content is stored as a file named email.xhtml in a folder named resources/emcomp, under the application web root directory. This directory is considered a 122 The Java EE 6 Tutorial • January 2013 Web Resources library by JavaServer Faces, and a component can be accessed from such a library. For more information on resources, see “Web Resources” on page 123. The web page that uses this composite component is generally called a using page. The using page includes a reference to the composite component, in the xml namespace declarations: Using a sample composite component The local composite component library is defined in the xmlns namespace with the declaration xmlns:em="http://java.sun.com/jsf/composite/emcomp/". The component itself is accessed through the em:email tag. The preceding example content can be stored as a web page named emuserpage.xhtml under the web root directory. When compiled and deployed on a server, it can be accessed with the following URL: http://localhost:8080/application-name/faces/emuserpage.xhtml Web Resources Web resources are any software artifacts that the web application requires for proper rendering, including images, script files, and any user-created component libraries. Resources must be collected in a standard location, which can be one of the following. ■ A resource packaged in the web application root must be in a subdirectory of a resources directory at the web application root: resources/resource-identifier. ■ A resource packaged in the web application’s classpath must be in a subdirectory of the META-INF/resources directory within a web application: META-INF/resources/resource-identifier. You can use this file structure to package resources in a JAR file bundled in the web application. See Chapter 53, “Duke’s Forest Case Study Example,” for an application that uses this mechanism. The JavaServer Faces runtime will look for the resources in the preceding listed locations, in that order. Resource identifiers are unique strings that conform to the following format: Chapter 5 • Introduction to Facelets 123 Web Resources [locale-prefix/][library-name/][library-version/]resource-name[/resource-version] Elements of the resource identifier in brackets ([]) are optional, indicating that only a resource-name, which is usually a file name, is a required element. For example, the most common way to specify a style sheet, image, or script is to use the library and name attributes, as in the following tag from the guessnumber example: This tag specifies that the default.css style sheet is in the directory web/resources/css. You can also specify the location of an image using the following syntax, also from the guessnumber example: This tag specifies that the image named wave.med.gif is in the directory web/resources/images. Resources can be considered as a library location. Any artifact, such as a composite component or a template that is stored in the resources directory, becomes accessible to the other application components, which can use it to create a resource instance. 124 The Java EE 6 Tutorial • January 2013 6C H A P T E R 6 Expression Language This chapter introduces the Expression Language (also referred to as the EL), which provides an important mechanism for enabling the presentation layer (web pages) to communicate with the application logic (managed beans). The EL is used by both JavaServer Faces technology and JavaServer Pages (JSP) technology. The EL represents a union of the expression languages offered by JavaServer Faces technology and JSP technology. The following topics are addressed here: ■ “Overview of the EL” on page 125 ■ “Immediate and Deferred Evaluation Syntax” on page 126 ■ “Value and Method Expressions” on page 128 ■ “Defining a Tag Attribute Type” on page 134 ■ “Literal Expressions” on page 135 ■ “Operators” on page 136 ■ “Reserved Words” on page 136 ■ “Examples of EL Expressions” on page 137 Overview of the EL The EL allows page authors to use simple expressions to dynamically access data from JavaBeans components. For example, the test attribute of the following conditional tag is supplied with an EL expression that compares 0 with the number of items in the session-scoped bean named cart. ... JavaServer Faces technology uses the EL for the following functions: ■ Deferred and immediate evaluation of expressions ■ The ability to set as well as get data 125 Immediate and Deferred Evaluation Syntax ■ The ability to invoke methods See “Using the EL to Reference Managed Beans” on page 191 for more information on how to use the EL in JavaServer Faces applications. To summarize, the EL provides a way to use simple expressions to perform the following tasks: ■ Dynamically read application data stored in JavaBeans components, various data structures, and implicit objects ■ Dynamically write data, such as user input into forms, to JavaBeans components ■ Invoke arbitrary static and public methods ■ Dynamically perform arithmetic operations The EL is also used to specify the following kinds of expressions that a custom tag attribute will accept: ■ Immediate evaluation expressions or deferred evaluation expressions. An immediate evaluation expression is evaluated at once by the underlying technology, such as JavaServer Faces. A deferred evaluation expression can be evaluated later by the underlying technology using the EL. ■ Value expression or method expression. A value expression references data, whereas a method expression invokes a method. ■ Rvalue expression or lvalue expression. An rvalue expression can only read a value, whereas an lvalue expression can both read and write that value to an external object. Finally, the EL provides a pluggable API for resolving expressions so custom resolvers that can handle expressions not already supported by the EL can be implemented. Immediate and Deferred Evaluation Syntax The EL supports both immediate and deferred evaluation of expressions. Immediate evaluation means that the expression is evaluated and the result returned as soon as the page is first rendered. Deferred evaluation means that the technology using the expression language can use its own machinery to evaluate the expression sometime later during the page’s lifecycle, whenever it is appropriate to do so. Those expressions that are evaluated immediately use the ${} syntax. Expressions whose evaluation is deferred use the #{} syntax. Because of its multiphase lifecycle, JavaServer Faces technology uses mostly deferred evaluation expressions. During the lifecycle, component events are handled, data is validated, and other tasks are performed in a particular order. Therefore, a JavaServer Faces implementation must defer evaluation of expressions until the appropriate point in the lifecycle. Other technologies using the EL might have different reasons for using deferred expressions. 126 The Java EE 6 Tutorial • January 2013 Immediate and Deferred Evaluation Syntax Immediate Evaluation All expressions using the ${} syntax are evaluated immediately. These expressions can be used only within template text or as the value of a tag attribute that can accept runtime expressions. The following example shows a tag whose value attribute references an immediate evaluation expression that gets the total price from the session-scoped bean named cart: The JavaServer Faces implementation evaluates the expression ${sessionScope.cart.total}, converts it, and passes the returned value to the tag handler. Immediate evaluation expressions are always read-only value expressions. The preceding example expression cannot set the total price, but instead can only get the total price from the cart bean. Deferred Evaluation Deferred evaluation expressions take the form #{expr} and can be evaluated at other phases of a page lifecycle as defined by whatever technology is using the expression. In the case of JavaServer Faces technology, its controller can evaluate the expression at different phases of the lifecycle, depending on how the expression is being used in the page. The following example shows a JavaServer Faces h:inputText tag, which represents a text field component into which a user enters a value. The h:inputText tag’s value attribute references a deferred evaluation expression that points to the name property of the customer bean: For an initial request of the page containing this tag, the JavaServer Faces implementation evaluates the #{customer.name} expression during the render-response phase of the lifecycle. During this phase, the expression merely accesses the value of name from the customer bean, as is done in immediate evaluation. For a postback request, the JavaServer Faces implementation evaluates the expression at different phases of the lifecycle, during which the value is retrieved from the request, validated, and propagated to the customer bean. As shown in this example, deferred evaluation expressions can be ■ Value expressions that can be used to both read and write data ■ Method expressions Value expressions (both immediate and deferred) and method expressions are explained in the next section. Chapter 6 • Expression Language 127 Value and Method Expressions Value and Method Expressions The EL defines two kinds of expressions: value expressions and method expressions. Value expressions can either yield a value or set a value. Method expressions reference methods that can be invoked and can return a value. Value Expressions Value expressions can be further categorized into rvalue and lvalue expressions. Rvalue expressions can read data but cannot write it. Lvalue expressions can both read and write data. All expressions that are evaluated immediately use the ${} delimiters and are always rvalue expressions. Expressions whose evaluation can be deferred use the #{} delimiters and can act as both rvalue and lvalue expressions. Consider the following two value expressions: ${customer.name} #{customer.name} The former uses immediate evaluation syntax, whereas the latter uses deferred evaluation syntax. The first expression accesses the name property, gets its value, adds the value to the response, and gets rendered on the page. The same can happen with the second expression. However, the tag handler can defer the evaluation of this expression to a later time in the page lifecycle, if the technology using this tag allows. In the case of JavaServer Faces technology, the latter tag’s expression is evaluated immediately during an initial request for the page. In this case, this expression acts as an rvalue expression. During a postback request, this expression can be used to set the value of the name property with user input. In this case, the expression acts as an lvalue expression. Referencing Objects Using Value Expressions Both rvalue and lvalue expressions can refer to the following objects and their properties or attributes: ■ JavaBeans components ■ Collections ■ Java SE enumerated types Implicit objects ■ To refer to these objects, you write an expression using a variable that is the name of the object. The following expression references a managed bean called customer: ${customer} 128 The Java EE 6 Tutorial • January 2013 Value and Method Expressions The web container evaluates the variable that appears in an expression by looking up its value according to the behavior of PageContext.findAttribute(String), where the String argument is the name of the variable. For example, when evaluating the expression ${customer}, the container will look for customer in the page, request, session, and application scopes and will return its value. If customer is not found, a null value is returned. You can use a custom EL resolver to alter the way variables are resolved. For instance, you can provide an EL resolver that intercepts objects with the name customer, so that ${customer} returns a value in the EL resolver instead. To reference an enum constant with an expression, use a String literal. For example, consider this Enum class: public enum Suit {hearts, spades, diamonds, clubs} To refer to the Suit constant Suit.hearts with an expression, use the String literal "hearts". Depending on the context, the String literal is converted to the enum constant automatically. For example, in the following expression in which mySuit is an instance of Suit, "hearts" is first converted to Suit.hearts before it is compared to the instance: ${mySuit == "hearts"} Referring to Object Properties Using Value Expressions To refer to properties of a bean or an enum instance, items of a collection, or attributes of an implicit object, you use the . or [] notation. To reference the name property of the customer bean, use either the expression ${customer.name} or the expression ${customer["name"]}. The part inside the brackets is a String literal that is the name of the property to reference. You can use double or single quotes for the String literal. You can also combine the [] and . notations, as shown here: ${customer.address["street"]} Properties of an enum constant can also be referenced in this way. However, as with JavaBeans component properties, the properties of an Enum class must follow JavaBeans component conventions. This means that a property must at least have an accessor method called getProperty, where Property is the name of the property that can be referenced by an expression. For example, consider an Enum class that encapsulates the names of the planets of our galaxy and includes a method to get the mass of a planet. You can use the following expression to reference the method getMass of the Enum class Planet: ${myPlanet.mass} Chapter 6 • Expression Language 129 Value and Method Expressions If you are accessing an item in an array or list, you must use either a literal value that can be converted to int or the [] notation with an int and without quotes. The following examples could resolve to the same item in a list or array, assuming that socks can be converted to int: ■ ■ ${customer.orders[1]} ${customer.orders.socks} In contrast, an item in a Map can be accessed using a string literal key; no coercion is required: ${customer.orders["socks"]} An rvalue expression also refers directly to values that are not objects, such as the result of arithmetic operations and literal values, as shown by these examples: ■ ■ ■ ■ ${"literal"} ${customer.age + 20} ${true} ${57} The EL defines the following literals: ■ Boolean: true and false ■ Integer: as in Java ■ Floating-point: as in Java ■ String: with single and double quotes; " is escaped as \", ’ is escaped as \’, and \ is escaped as \\ ■ Null: null You can also write expressions that perform operations on an enum constant. For example, consider the following Enum class: public enum Suit {club, diamond, heart, spade} After declaring an enum constant called mySuit, you can write the following expression to test whether mySuit is spade: ${mySuit == "spade"} When it resolves this expression, the EL resolving mechanism will invoke the valueOf method of the Enum class with the Suit class and the spade type, as shown here: mySuit.valueOf(Suit.class, "spade"} 130 The Java EE 6 Tutorial • January 2013 Value and Method Expressions Where Value Expressions Can Be Used Value expressions using the ${} delimiters can be used in ■ Static text ■ Any standard or custom tag attribute that can accept an expression The value of an expression in static text is computed and inserted into the current output. Here is an example of an expression embedded in static text: some text ${expr} some text If the static text appears in a tag body, note that an expression will not be evaluated if the body is declared to be tagdependent. Lvalue expressions can be used only in tag attributes that can accept lvalue expressions. A tag attribute value using either an rvalue or lvalue expression can be set in the following ways: ■ With a single expression construct: These expressions are evaluated, and the result is converted to the attribute’s expected type. ■ With one or more expressions separated or surrounded by text: These kinds of expression, called composite expressions, are evaluated from left to right. Each expression embedded in the composite expression is converted to a String and then concatenated with any intervening text. The resulting String is then converted to the attribute’s expected type. ■ With text only: This expression is called a literal expression. In this case, the attribute’s String value is converted to the attribute’s expected type. Literal value expressions have special syntax rules. See “Literal Expressions” on page 135 for more information. When a tag attribute has an enum type, the expression that the attribute uses must be a literal expression. For example, the tag attribute can use the expression "hearts" to mean Suit.hearts. The literal is converted to Suit, and the attribute gets the value Suit.hearts. All expressions used to set attribute values are evaluated in the context of an expected type. If the result of the expression evaluation does not match the expected type exactly, a type conversion will be performed. For example, the expression ${1.2E4} provided as the value of an attribute of type float will result in the following conversion: Chapter 6 • Expression Language 131 Value and Method Expressions Float.valueOf("1.2E4").floatValue() See Section 1.18 of the JavaServer Pages 2.2 Expression Language specification (available from http://jcp.org/aboutJava/communityprocess/final/jsr245/) for the complete type conversion rules. Method Expressions Another feature of the EL is its support of deferred method expressions. A method expression is used to invoke an arbitrary public method of a bean, which can return a result. In JavaServer Faces technology, a component tag represents a component on a page. The component tag uses method expressions to invoke methods that perform some processing for the component. These methods are necessary for handling events that the components generate and for validating component data, as shown in this example: The h:inputText tag displays as a text field. The validator attribute of this h:inputText tag references a method, called validateName, in the bean, called customer. Because a method can be invoked during different phases of the lifecycle, method expressions must always use the deferred evaluation syntax. Like lvalue expressions, method expressions can use the . and the [] operators. For example, #{object.method} is equivalent to #{object["method"]}. The literal inside the [] is converted to String and is used to find the name of the method that matches it. Once the method is found, it is invoked, or information about the method is returned. Method expressions can be used only in tag attributes and only in the following ways: ■ With a single expression construct, where bean refers to a JavaBeans component and method refers to a method of the JavaBeans component: The expression is evaluated to a method expression, which is passed to the tag handler. The method represented by the method expression can then be invoked later. ■ With text only: 132 The Java EE 6 Tutorial • January 2013 Value and Method Expressions Method expressions support literals primarily to support action attributes in JavaServer Faces technology. When the method referenced by this method expression is invoked, the method returns the String literal, which is then converted to the expected return type, as defined in the tag’s tag library descriptor. Parameterized Method Calls The EL offers support for parameterized method calls. Method calls can use parameters without having to use static EL functions. Both the . and [] operators can be used for invoking method calls with parameters, as shown in the following expression syntax: ■ ■ expr-a[expr-b](parameters) expr-a.identifier-b(parameters) In the first expression syntax, expr-a is evaluated to represent a bean object. The expression expr-b is evaluated and cast to a string that represents a method in the bean represented by expr-a. In the second expression syntax, expr-a is evaluated to represent a bean object, and identifier-b is a string that represents a method in the bean object. The parameters in parentheses are the arguments for the method invocation. Parameters can be zero or more values or expressions, separated by commas. Parameters are supported for both value expressions and method expressions. In the following example, which is a modified tag from the guessnumber application, a random number is provided as an argument rather than from user input to the method call: The preceding example uses a value expression. Consider the following example of a JavaServer Faces component tag that uses a method expression: The EL expression trader.buy calls the trader bean’s buy method. You can modify the tag to pass on a parameter. Here is the revised tag where a parameter is passed: In the preceding example, you are passing the string ’SOMESTOCK’ (a stock symbol) as a parameter to the buy method. For more information on the updated EL, see http://uel.java.net/. Chapter 6 • Expression Language 133 Defining a Tag Attribute Type Defining a Tag Attribute Type As explained in the previous section, all kinds of expressions can be used in tag attributes. Which kind of expression and how it is evaluated, whether immediately or deferred, are determined by the type attribute of the tag’s definition in the View Description Language (VDL) that defines the tag. If you plan to create custom tags, for each tag in the VDL, you need to specify what kind of expression to accept. Table 6–1 shows the kinds of tag attributes that accept EL expressions, gives examples of expressions they accept, and provides the type definitions of the attributes that must be added to the VDL. You cannot use #{} syntax for a dynamic attribute, meaning an attribute that accepts dynamically calculated values at runtime. Similarly, you also cannot use the ${} syntax for a deferred attribute. TABLE 6–1 Definitions of Tag Attributes That Accept EL Expressions Attribute Type Example Expression Type Attribute Definition Dynamic Dynamic "literal" ${literal} true true Deferred value "literal" java.lang.String Deferred value #{customer.age} Deferred method "literal" int java.lang.String submit() Deferred method #{customer.calcTotal} double calcTotal(int, double) In addition to the tag attribute types shown in Table 6–1, you can define an attribute to accept both dynamic and deferred expressions. In this case, the tag attribute definition contains both an rtexprvalue definition set to true and either a deferred-value or deferred-method definition. 134 The Java EE 6 Tutorial • January 2013 Literal Expressions Literal Expressions A literal expression is evaluated to the text of the expression, which is of type String. A literal expression does not use the ${} or #{} delimiters. If you have a literal expression that includes the reserved ${} or #{} syntax, you need to escape these characters as follows: ■ By creating a composite expression as shown here: ${’${’}exprA} #{’#{’}exprB} The resulting values would then be the strings ${exprA} and #{exprB}. ■ By using the escape characters \$ and \# to escape what would otherwise be treated as an eval-expression: \${exprA} \#{exprB} The resulting values would again be the strings ${exprA} and #{exprB}. When a literal expression is evaluated, it can be converted to another type. Table 6–2 shows examples of various literal expressions and their expected types and resulting values. TABLE 6–2 Literal Expressions Expression Expected Type Hi true 42 String Boolean int Result Hi Boolean.TRUE 42 Literal expressions can be evaluated immediately or deferred and can be either value or method expressions. At what point a literal expression is evaluated depends on where it is being used. If the tag attribute that uses the literal expression is defined to accept a deferred value expression, when referencing a value, the literal expression is evaluated at a point in the lifecycle that is determined by other factors, such as where the expression is being used and to what it is referring. In the case of a method expression, the method that is referenced is invoked and returns the specified String literal. For example, the h:commandButton tag of the guessnumber application uses a literal method expression as a logical outcome to tell the JavaServer Faces navigation system which page to display next. Chapter 6 • Expression Language 135 Operators Operators In addition to the . and [] operators discussed in “Value and Method Expressions” on page 128, the EL provides the following operators, which can be used in rvalue expressions only: ■ Arithmetic: +, - (binary), *, / and div, % and mod, - (unary) ■ Logical: and, &&, or, ||, not, ! ■ Relational: ==, eq, !=, ne, <, lt, >, gt, <=, ge, >=, le. Comparisons can be made against other values or against Boolean, string, integer, or floating-point literals. ■ Empty: The empty operator is a prefix operation that can be used to determine whether a value is null or empty. ■ Conditional: A ? B : C. Evaluate B or C, depending on the result of the evaluation of A. The precedence of operators highest to lowest, left to right is as follows: ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ [] . () (used to change the precedence of operators) - (unary) not ! empty * / div % mod + - (binary) < > <= >= lt gt le ge == != eq ne && and || or ? : Reserved Words The following words are reserved for the EL and should not be used as identifiers: and ne ge instanceof or lt true empty not gt false div eq le null mod 136 The Java EE 6 Tutorial • January 2013 Examples of EL Expressions Table 6–3 contains example EL expressions and the result of evaluating them. TABLE 6–3 Example Expressions Examples of EL Expressions EL Expression ${1 > (4/2)} ${4.0 >= 3} ${100.0 == 100} ${(10*10) ne 100} ${’a’ < ’b’} ${’hip’ gt ’hit’} ${4 > 3} ${1.2E4 + 1.4} ${3 div 4} ${10 mod 4} ${!empty param.Add} Result false true true false true false true 12001.4 0.75 2 False if the request parameter named Add is null or an empty string. ${pageContext.request.contextPath} The context path. ${sessionScope.cart.numberOfItems} ${param[’mycom.productId’]} The value of the numberOfItems property of the session-scoped attribute named cart. The value of the request parameter named mycom.productId. ${header["host"]} The host. ${departments[deptName]} The value of the entry named deptName in the departments map. ${requestScope[’javax.servlet.forward. servlet_path’]} The value of the request-scoped attribute named javax.servlet.forward.servlet_path. #{customer.lName} #{customer.calcTotal} Gets the value of the property lName from the customer bean during an initial request. Sets the value of lName during a postback. The return value of the method calcTotal of the customer bean. Chapter 6 • Expression Language 137 138 7C H A P T E R 7 Using JavaServer Faces Technology in Web Pages Web pages represent the presentation layer for web applications. The process of creating web pages for a JavaServer Faces application includes adding components to the page and wiring them to managed beans, validators, listeners, converters, and other server-side objects that are associated with the page. This chapter explains how to create web pages using various types of component and core tags. In the next chapter, you will learn about adding converters, validators, and listeners to component tags to provide additional functionality to components. Many of the examples in this chapter are taken from Chapter 51, “Duke’s Bookstore Case Study Example.” The following topics are addressed here: ■ “Setting Up a Page” on page 139 ■ “Adding Components to a Page Using HTML Tags” on page 140 ■ “Using Core Tags” on page 171 Setting Up a Page A typical JavaServer Faces web page includes the following elements: ■ A set of namespace declarations that declare the JavaServer Faces tag libraries ■ Optionally, the HTML head (h:head) and body (h:body) tags ■ A form tag (h:form) that represents the user input components To add the JavaServer Faces components to your web page, you need to provide the page access to the two standard tag libraries: the JavaServer Faces HTML render kit tag library and the JavaServer Faces core tag library. The JavaServer Faces standard HTML tag library defines tags that represent common HTML user interface components. This library is linked to the HTML 139 Adding Components to a Page Using HTML Tags render kit at http://docs.oracle.com/javaee/6/javaserverfaces/2.1/docs/ renderkitdocs/. The JavaServer Faces core tag library defines tags that perform core actions and are independent of a particular render kit. For a complete list of JavaServer Faces Facelets tags and their attributes, refer to the documentation at http://docs.oracle.com/javaee/6/javaserverfaces/2.1/docs/ vdldocs/facelets/. To use any of the JavaServer Faces tags, you need to include appropriate directives at the top of each page specifying the tag libraries. For Facelets applications, the XML namespace directives uniquely identify the tag library URI and the tag prefix. For example, when you create a Facelets XHTML page, include namespace directives as follows: The XML namespace URI identifies the tag library location, and the prefix value is used to distinguish the tags belonging to that specific tag library. You can also use other prefixes instead of the standard h or f. However, when including the tag in the page, you must use the prefix that you have chosen for the tag library. For example, in the following web page, the form tag must be referenced using the h prefix because the preceding tag library directive uses the h prefix to distinguish the tags defined in HTML tag library: The sections “Adding Components to a Page Using HTML Tags” on page 140 and “Using Core Tags” on page 171 describe how to use the component tags from the JavaServer Faces standard HTML tag library and the core tags from the JavaServer Faces core tag library. Adding Components to a Page Using HTML Tags The tags defined by the JavaServer Faces standard HTML tag library represent HTML form components and other basic HTML elements. These components display data or accept data from the user. This data is collected as part of a form and is submitted to the server, usually when the user clicks a button. This section explains how to use each of the component tags shown in Table 7–1. 140 The Java EE 6 Tutorial • January 2013 Adding Components to a Page Using HTML Tags TABLE 7–1 The Component Tags Tag h:column Functions Rendered as Appearance Represents a column of data in a data component A column of data in an HTML table A column in a table h:commandButton Submits a form to the application A button An HTML element, where the type value can be "submit", "reset", or "image" h:commandLink Links to another page or location on a page An HTML element A hyperlink h:dataTable Represents a data wrapper h:form Represents an input form (inner tags of the form receive the data that will be submitted with the form) An HTML element A table that can be updated dynamically An HTML element No appearance h:graphicImage Displays an image An HTML element An image h:inputHidden h:inputSecret Allows a page author to include a hidden variable in a page An HTML element No appearance Allows a user to input a string without the actual string appearing in the field An HTML element A text field, which displays a row of characters instead of the actual string entered h:inputText Allows a user to input a string An HTML element h:inputTextarea Allows a user to enter a multiline string An HTML