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