Home > Store

Java EE 6 Tutorial, The: Basic Concepts, 4th Edition

Register your product to gain access to bonus material or receive a coupon.

Java EE 6 Tutorial, The: Basic Concepts, 4th Edition

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2011
  • Dimensions: 7" x 9"
  • Edition: 4th
  • Book
  • ISBN-10: 0-13-708185-5
  • ISBN-13: 978-0-13-708185-1

The Java EE 6 Tutorial: Basic Concepts, Fourth Edition, is a task-oriented, example-driven guide to developing enterprise applications for the Java Platform, Enterprise Edition 6 (Java EE 6). Written by members of the Java EE 6 documentation team at Oracle, this book provides new and intermediate Java programmers with a deep understanding of the platform.


Starting with expert guidance on web tier technologies, including JavaServer Faces and Facelets, this book also covers building web services using JAX-WS and JAX-RS, developing business logic with Enterprise JavaBeans components, accessing databases using the Java Persistence API, securing web and enterprise applications, and using Contexts and Dependency Injection for the Java EE platform.


This edition contains extensive new material throughout, including detailed introductions to the latest APIs and platform features, and instructions for using the latest versions of GlassFish Server Open Source Edition and NetBeans IDE. Key platform features covered include

  • Convention over configuration, so developers need specify only those aspects of an application that vary from the convention
  • Annotated POJOs (Plain Old Java Objects) with optional XML configuration
  • Simplified but more flexible packaging
  • Lightweight Web Profile that is ideal for developing web applications

The Java Series…from the Source

 Since 1996, when Addison-Wesley published the first edition of The Java Programming Language by Ken Arnold and James Gosling, this series has been the place to go for complete, expert, and definitive information on Java technology. The books in this series provide the detailed information developers need to build effective, robust, and portable applications and are an indispensable resource for anyone using the Java platform.

Sample Content

Online Sample Chapter

Introduction to Java Facelets

Sample Pages

Download the sample pages (includes Chapter 5 and Index)

Table of Contents

Preface         xxi

Part I: Introduction          1

Chapter 1: Overview         3

Java EE 6 Platform Highlights    4

Java EE Application Model    5

Distributed Multitiered Applications    6

Java EE Containers    13

Web Services Support    15

Java EE Application Assembly and Deployment    17

Packaging Applications    17

Development Roles    19

Java EE 6 APIs    22

Java EE 6 APIs in the Java Platform, Standard Edition 6.0    31

GlassFish Server Tools    34

Chapter 2: Using the Tutorial Examples         37

Required Software    37

Starting and Stopping the GlassFish Server    41

Starting the Administration Console    42

Starting and Stopping the Java DB Server    43

Building the Examples    44

Tutorial Example Directory Structure    44

Getting the Latest Updates to the Tutorial    44

Debugging Java EE Applications    45

Part II: The Web Tier         47

Chapter 3: Getting Started with Web Applications         49

Web Applications    50

Web Application Lifecycle    51

Web Modules: The hello1 Example    53

Configuring Web Applications: The hello2 Example    62

Further Information about Web Applications    71

Chapter 4: JavaServer Faces Technology          73

What Is a JavaServer Faces Application?    74

JavaServer Faces Technology Benefits    75

Creating a Simple JavaServer Faces Application    77

Further Information about JavaServer Faces Technology    81

Chapter 5: Introduction to Facelets         83

What Is Facelets?    83

Developing a Simple Facelets Application    85

Templating    91

Composite Components    94

Resources    96

Chapter 6: Expression Language         99

Overview of the EL    99

Immediate and Deferred Evaluation Syntax    100

Value and Method Expressions    102

Defining a Tag Attribute Type    108

Literal Expressions    109

Operators    111

Reserved Words    111

Examples of EL Expressions    112

Chapter 7: Using JavaServer Faces Technology in Web Pages          113

Setting Up a Page    113

Adding Components to a Page Using HTML Tags    114

Using Core Tags          143

Chapter 8: Using Converters, Listeners, and Validators          145

Using the Standard Converters    145

Registering Listeners on Components    151

Using the Standard Validators    152

Referencing a Backing Bean Method    154

Chapter 9: Developing with JavaServer Faces Technology          159

Backing Beans    159

Writing Bean Properties    162

Writing Backing Bean Methods    170

Using Bean Validation    174

Chapter 10: Java Servlet Technology         179

What Is a Servlet?    180

Servlet Lifecycle    180

Sharing Information    182

Creating and Initializing a Servlet    183

Writing Service Methods    184

Filtering Requests and Responses    187

Invoking Other Web Resources    191

Accessing the Web Context    193

Maintaining Client State    193

Finalizing a Servlet    195

The mood Example Application    198

Further Information about Java Servlet Technology     200

Part III: Web Services         201

Chapter 11: Introduction to Web Services    203

What Are Web Services?    203

Types of Web Services    203

Deciding Which Type of Web Service to Use    206

Chapter 12: Building Web Services with JAX-WS         207

Creating a Simple Web Service and Clients with JAX-WS    208

Types Supported by JAX-WS    217

Web Services Interoperability and JAX-WS    217

Further Information about JAX-WS    217

Chapter 13: Building RESTful Web Services with JAX-RS         219

What Are RESTful Web Services?    219

Creating a RESTful Root Resource Class    220

Example Applications for JAX-RS    235

Further Information about JAX-RS    240

Part IV: Enterprise Beans          243

Chapter 14: Enterprise Beans         245

What Is an Enterprise Bean?    245

What Is a Session Bean?    247

What Is a Message-Driven Bean?    249

Accessing Enterprise Beans    251

The Contents of an Enterprise Bean    258

Naming Conventions for Enterprise Beans    260

The Lifecycles of Enterprise Beans    261

Further Information about Enterprise Beans    264

Chapter 15: Getting Started with Enterprise Beans         265

Creating the Enterprise Bean    265

Modifying the Java EE Application    269

Chapter 16: Running the Enterprise Bean Examples          271

The cart Example    271

A Singleton Session Bean Example: counter    278

A Web Service Example: helloservice    286

Using the Timer Service    290

Handling Exceptions    300

Part V: Contexts and Dependency Injection for the Java EE Platform         303

Chapter 17: Introduction to Contexts and Dependency Injection for the Java EE Platform          305

Overview of CDI    306

About Beans    307

About Managed Beans    307

Beans as Injectable Objects    308

Using Qualifiers    309

Injecting Beans    310

Using Scopes    310

Giving Beans EL Names    312

Adding Setter and Getter Methods    312

Using a Managed Bean in a Facelets Page    313

Injecting Objects by Using Producer Methods    314

Configuring a CDI Application    315

Further Information about CDI    315

Chapter 18: Running the Basic Contexts and Dependency Injection Examples         317

The simplegreeting CDI Example    317

The guessnumber CDI Example    322

Part VI: Persistence         331

Chapter 19: Introduction to the Java Persistence API         333

Entities    333

Entity Inheritance    345

Managing Entities    349

Querying Entities    355

Further Information about Persistence    355

Chapter 20: Running the Persistence Examples         357

The order Application    357

The roster Application    369

The address-book Application    376

Chapter 21: The Java Persistence Query Language         381

Query Language Terminology    382

Creating Queries Using the Java Persistence Query Language    382

Simplified Query Language Syntax    384

Example Queries     385

Full Query Language Syntax    390

Chapter 22: Using the Criteria API to Create Queries         415

Overview of the Criteria and Metamodel APIs    415

Using the Metamodel API to Model Entity Classes    417

Using the Criteria API and Metamodel API to Create Basic Typesafe Queries    418

Part VII: Security         427

Chapter 23: Introduction to Security in the Java EE Platform         429

Overview of Java EE Security    430

Security Mechanisms    435

Securing Containers    439

Securing the GlassFish Server    440

Working with Realms, Users, Groups, and Roles    441

Establishing a Secure Connection Using SSL    449

Further Information about Security    454

Chapter 24: Getting Started Securing Web Applications         455

Overview of Web Application Security    455

Securing Web Applications    457

Using Programmatic Security with Web Applications     469

Examples: Securing Web Applications    474

Chapter 25: Getting Started Securing Enterprise Applications          485

Securing Enterprise Beans    486

Examples: Securing Enterprise Beans     496

Securing Application Clients    504

Securing Enterprise Information Systems Applications    506

Part VIII: Java EE Supporting Technologies          511

Chapter 26: Introduction to Java EE Supporting Technologies          513

Transactions    513

Resources     514

Chapter 27: Transactions         517

What Is a Transaction?    517

Container-Managed Transactions     518

Bean-Managed Transactions    524

Transaction Timeouts    525

Updating Multiple Databases    526

Transactions in Web Components    528

Further Information about Transactions    528

Chapter 28: Resource Connections         529

Resources and JNDI Naming    529

DataSource Objects and Connection Pools    530

Resource Injection    531

Resource Adapters and Contracts    534

Metadata Annotations    538

Common Client Interface    540

Further Information about Resources    541

Index         543

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020