Book Image

EJB 3.0 Database Persistence with Oracle Fusion Middleware 11g

Book Image

EJB 3.0 Database Persistence with Oracle Fusion Middleware 11g

Overview of this book

EJB (Enterprise JavaBeans) 3.0 is a commonly used database persistence technology in Java EE applications. EJB 3.0 has simplified the development of EJBs with an annotations-based API that eliminates the use of remote/local interfaces, home/local home interfaces, and deployment descriptors. A number of other books are available on EJB 3.0, but none covers EJB 3.0 support in Oracle Fusion Middleware 11g, which is one of the leaders in the application server market.This is the first book that covers all aspects of EJB 3.0 database persistence development using Oracle Fusion Middleware technology. It covers all the best practices for database persistence ensuring that your applications are easily maintainable. Leaving theory behind, this book uses real-world examples to guide you in building your own EJB 3.0 applications that are well integrated with commonly used Java EE frameworks.The book gets going by discussing the new features in the EJB 3.0 specification. As some readers may still be using EJB 2.0, the book explains how to convert your EJB 2.0 entity beans to EJB 3.0. It then goes on to discuss using EJB 3.0 database persistence with JDeveloper, WebLogic Server, and Enterprise Pack for Eclipse, the main Java EE components of Oracle Fusion Middleware 11g. The book also covers EJB 3.0 relationships and integrating EJB 3.0 relationships with JSF user interfaces. EJB 3.0 database persistence with some of the commonly used frameworks such as ADF Faces, AJAX, and Web Services is also discussed in the book. It uses the integrated WebLogic Server 11g in some of the chapters and the standalone WebLogic Server in other chapters. While JDeveloper is the primary Java IDE used in the book, one of the chapters is based on the Oracle Enterprise Pack for Eclipse.By the time you reach the end of this book, you will be well-versed with developing EJB 3.0 applications using the different Java EE components of Oracle Fusion Middleware 11g.
Table of Contents (15 chapters)
EJB 3.0 Database Persistence with Oracle Fusion Middleware 11g
Credits
About the Author
About the Reviewers
Preface

Creating an entity bean


Next, we create an EJB 3.0 entity bean from the Oracle database table CATALOG that we created earlier. Here's how to go about it:

  1. 1. Select the EJB3Model project in the Application navigator and select File | New.

  2. 2. In the New Gallery window, select Categories | Business Tier | EJB and Items | Entities from Tables and click on OK.

  3. 3. In the Persistence Unit window, select New to create a new persistence unit. In the New Persistence Unit window, specify a persistence unit name (em).

  4. 4. Specify JTA DataSource Name as jdbc/OracleDBConnectionDS, which is the data source name corresponding to the OracleDBConnection connection.

  5. 5. Select the settings for Toplink; Database Platform as Oracle and Server Platform as WebLogic 10. Click on OK.

  6. 6. The em Persistence Unit gets created. Click on OK in the Persistence Unit window.

  7. 7. Select Type of Connection as Online Database Connection and click on Next.

  8. 8. In the Database Connection Details window, select the OracleDBConnection and...