Hitachi Consulting IOUG Collaborate ‘08 EJB 3.0 Java Persistence API (JPA) with Oracle TopLink...

51
Hitachi Consulting IOUG Collaborate ‘08 EJB 3.0 Java Persistence API (JPA) with Oracle TopLink Bill Lyons Systems Architect Hitachi Consulting [email protected]

Transcript of Hitachi Consulting IOUG Collaborate ‘08 EJB 3.0 Java Persistence API (JPA) with Oracle TopLink...

Hitachi Consulting

IOUG Collaborate ‘08

EJB 3.0 Java Persistence API (JPA) with Oracle TopLink

Bill Lyons

Systems Architect

Hitachi Consulting

[email protected]

Hitachi Consulting

Inspiring Your Next Success!®

2

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Introduction• Applications using a back end database and a web

front end are the most common development architecture in use today.

• Persistence frameworks provide a clean way to separate presentation logic and business logic from database operations.

• Persistence frameworks help improve database performance through the use of a mid-tier cache.

• The mid-tier improves user experience by caching frequently used data for recall without having to take a trip to the database.

Hitachi Consulting

Inspiring Your Next Success!®

3

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Overview• Examine the development of code that

manages interaction between the database and applications.

• Take a close look at TopLink - an Oracle owned persistence framework.

• Discuss design tradeoffs and common issues associated with using a persistence tier.

Hitachi Consulting

Inspiring Your Next Success!®

4

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

EJB 3.0 Top Link Presentation Goals• Develop a high level understanding of J2EE

design. • Understand how persistence frameworks simplify

development.• Understand persistence tier development choices.• Understand and be able to develop a simple

persistence framework using Oracle TopLink.

Hitachi Consulting

Inspiring Your Next Success!®

5

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

J2EE Overview

Hitachi Consulting

Inspiring Your Next Success!®

6

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Application Layout

Hitachi Consulting

Inspiring Your Next Success!®

7

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Design artifacts in a typical web based J2EE application

We’ll follow the Model-View-Controller OO Design Pattern:

TopLink simplifies the development and maintenance of the ‘Model’ portion of an MVC application.

Hitachi Consulting

Inspiring Your Next Success!®

8

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

The Persistence Management Problem

• Relational Databases and Object Oriented Languages organize data differently.

• This makes it difficult for web developers to store and retrieve data from a database.

• JDBC code provides access to the database, but is difficult to maintain.

• JDBC code can be a significant source of performance problems if not maintained properly.

• Persistence frameworks are designed to improve performance while standardizing and simplifying development.

Hitachi Consulting

Inspiring Your Next Success!®

9

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Competing Technologies that solve the persistence problem• Create your own connection pool and write JDBC

and SQL code – ugly!• Use a persistence framework:

– Hibernate– Spring– JDO– BC4J– TopLink– …and many others…

Hitachi Consulting

Inspiring Your Next Success!®

10

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

TopLink: recommended for new development efforts

• Has the largest installed base• Easy to use and maintain• Rich feature set• Easy for Java developers to learn: very well documented• Easy for DBAs to understand• Supported by Oracle• However, probably not appropriate for Oracle Apps

integration. • Design Limitation/Recommendation: Use Only 1

persistence framework/strategy per database table.

Hitachi Consulting

Inspiring Your Next Success!®

11

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Demo Development Environment

Database Oracle XEIntegrated Development Environment Oracle JDeveloper 10.1.3.3Application Server Oracle 10g Application Server (OC4J) (embedded

in JDeveloper for today’s demo)Development Platform Windows, Unix, Mac

Hitachi Consulting

Inspiring Your Next Success!®

12

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Typical TopLink Project Artifacts

• A JDeveloper Database Connection• TopLink Plain old Java Objects (POJOs) that

represent table metadata and table row instances from an Oracle database

• An EJB session bean that allows users to connect to the persistence tier and perform data operations.

• Developer constructed queries.• Code to test out the persistence implementation

using an EJB test client.

Hitachi Consulting

Inspiring Your Next Success!®

13

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

TopLink Getting Started• Download and install database (or connect to one)• Download and install JDeveloper 10.1.3.3• Build tables, indexes, sequences and constraints on the

database: (We’ll use the Oracle SRDemo today as an example)

• SRDemo Tables, Indexes and Sequences are generated by running the build.sql script bundled with SRDemo

• Be sure to get the SRDemo for TopLink – not ADF/BC or SRDemo for 4GL. There are different versions out there

Hitachi Consulting

Inspiring Your Next Success!®

14

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

TopLink Getting Started (cont.)• Create a Connection from JDeveloper to the Database.• Create a new TopLink project and workspace in

JDeveloper.• Run the TopLink wizard to create EJB 3.0 JPA Entity

Objects and an EJB Session Bean.• Refine the design if necessary.• Deploy to an application server.• Write a test client to test out the implementation.• If everything works, version the source code along with the

database DDL.

Hitachi Consulting

Inspiring Your Next Success!®

15

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

SRDemo Schema

Hitachi Consulting

Inspiring Your Next Success!®

16

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

TopLink My First Persistence Tier

• Start Database

• Start JDeveloper

• Create a Connection to the Database in JDeveloper

• Create an Application and Workspace in JDeveloper

Hitachi Consulting

Inspiring Your Next Success!®

17

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Create a new Application and Workspace in JDeveloper

You can type anything for Application Name and Directory Name. In general, JDeveloper like most Java Development Environments will behave inconsistently with spaces between characters so don’t use them in names or directory paths.

Choose Web Application [JSF, EJB, TopLink] for the Application Template and click OK.

Hitachi Consulting

Inspiring Your Next Success!®

18

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Create EJB 3.0 Entity Objects using TopLink

• A TopLink Entity Object will be created for each table and view referenced

• Entity Objects define database tables and operations that can be performed on entity rows.

• Database views and synonyms are also viable selections for TopLink entities.

• TopLink can reference database sequences or stored procedures to populate columns

Hitachi Consulting

Inspiring Your Next Success!®

19

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Using JDeveloper wizards to create TopLink objects using EJB 3.0 APIs

Be sure to choose EJB and Entities from Tables (JPA/EJB 3.0) when creating the persistence tier

Hitachi Consulting

Inspiring Your Next Success!®

20

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Examining the Generated TopLink Entity Objects

A Java Entity object will be created for every table that is selected in the wizard. It is possible to also select database views and synonyms for generation.

The Entity object contains table metadata, get/set methods for each column and named queries for the Entity.

A separate Java object will be created for querying and enforcing primary key constraints.

Hitachi Consulting

Inspiring Your Next Success!®

21

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Examining the Generated Java Source Code: Table Code

@Entity@NamedQuery( name = "ExpertiseAreas.findAll", query = "select o from ExpertiseAreas o" )@Table( name = "EXPERTISE_AREAS" )@IdClass( ExpertiseAreasPK.class )public class ExpertiseAreas implements Serializable { @Column( name="EXPERTISE_LEVEL", nullable = false ) private String expertiseLevel; private String notes; @Id @Column( name="PROD_ID", nullable = false, insertable = false,

updatable = false ) private Long prodId; @Id @Column( name="USER_ID", nullable = false, insertable = false,

updatable = false ) private Long userId; @ManyToOne @JoinColumn( name = "PROD_ID", referencedColumnName = "PROD_ID" ) private Products products;

Hitachi Consulting

Inspiring Your Next Success!®

22

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Examining the Generated Java Source Code: Column Code

//…public String getExpertiseLevel() { return expertiseLevel;}public void setExpertiseLevel( String expertiseLevel ) { this.expertiseLevel = expertiseLevel;}public String getNotes() { return notes;}

public void setNotes( String notes ) { this.notes = notes;}

public Long getProdId() { return prodId;}

public void setProdId( Long prodId ) { this.prodId = prodId;}

//… and so on…

Hitachi Consulting

Inspiring Your Next Success!®

23

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Create a class diagram from the Entity Objects

From inside of the rmoug Model project right click and choose New…

The New Gallery appears.

Choose Diagrams…

Database Diagram

Name the diagram SRDemo class diagram.

Then drag and drop the Java Beans that we created in the previous step.

Arrange the diagram objects so that all elements are visible.

Hitachi Consulting

Inspiring Your Next Success!®

24

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

JDeveloper class diagram

Hitachi Consulting

Inspiring Your Next Success!®

25

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Build a session bean to expose the Entities and provide session functionality

From the New Gallery choose Business Tier, EJB, Session Bean (EJB 1.1/2.x/3.0)…

Accept all defaults.

Hitachi Consulting

Inspiring Your Next Success!®

26

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Purpose of the Session Bean

• Encapsulates all of the behavior needed by a java service (could be web, swing client, or web service) so that a client can connect and query objects out of the persistence tier.

• Deployed with our POJOs to an EJB container.• We’ll use OC4J: a local application server

embedded in JDeveloper that is fully EJB 3.0 compliant

Hitachi Consulting

Inspiring Your Next Success!®

27

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Examining the Session Bean Generated Source Code

@Stateless( name="SessionEJB" )public class SessionEJBBean implements SessionEJB, SessionEJBLocal { @PersistenceContext( unitName="Model" ) private EntityManager em;

public Object mergeEntity( Object entity ) { return em.merge(entity); }

public Object persistEntity( Object entity ) { em.persist(entity); return entity; }

/** <code>select o from ExpertiseAreas o</code> */ public List<ExpertiseAreas> queryExpertiseAreasFindAll() { return em.createNamedQuery("ExpertiseAreas.findAll").getResultList(); }

public void removeExpertiseAreas( ExpertiseAreas expertiseAreas ) { expertiseAreas = em.find(ExpertiseAreas.class, new

ExpertiseAreasPK(expertiseAreas.getProdId(), expertiseAreas.getUserId())); em.remove(expertiseAreas); }

Hitachi Consulting

Inspiring Your Next Success!®

28

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Build a simple test client

To create a test client right click on the SessionEJBBean.java that we generated earlier in the project and choose New Sample Java Client…

Hitachi Consulting

Inspiring Your Next Success!®

29

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Examine the Generated Code for the Test EJB Client

public class SessionEJBClient { public static void main( String [] args ) { try {

final Context context = getInitialContext(); SessionEJB sessionEJB = (SessionEJB)context.lookup("SessionEJB");

System.out.println( sessionEJB.queryExpertiseAreasFindAll( ) );

// Call other methods of the Remote object to access the EJB // sessionEJB.mergeEntity( expertiseAreas ); // sessionEJB.persistEntity( expertiseAreas );

// sessionEJB.removeExpertiseAreas( expertiseAreas ); } catch ( Exception ex ) { ex.printStackTrace(); } }

Hitachi Consulting

Inspiring Your Next Success!®

30

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Testing it all out• Run the SessionEJBBean

– This deploys the SessionEJBBean, connection and Entity objects to the OC4J container embedded in JDeveloper.

• Run the SessionEJBClient– The client will connect to the Web Application Server, locate the

SessionEJBBean and execute methods on the remote session bean.

• Remember, you must run the SessionEJBBean first to deploy it to the container, otherwise you will get an error!

• As you make changes to your Entities, remember you will have to redeploy (make/rebuild, run) in order to have the changes take effect on the App Server.

Hitachi Consulting

Inspiring Your Next Success!®

31

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

It works! …sort of ;-(• What does this mean?com.rmoug.model.ExpertiseAreas@193c0cf

Hitachi Consulting

Inspiring Your Next Success!®

32

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Refining the generated code• Need a way to query (and see) data

• Need a way to make changes to data

• Need a way to commit work

Hitachi Consulting

Inspiring Your Next Success!®

33

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

TopLink CRUD query methods Match Up Question:

SQL TopLink

SELECT removeEntity()

INSERT queryEntityNameFindAll()

UPDATE persistEntity()

DELETE mergeEntity()

?

Hitachi Consulting

Inspiring Your Next Success!®

34

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

TopLink CRUD query operations Match Up Answer

SQL TopLink

SELECT removeEntity()

INSERT queryEntityNameFindAll()

UPDATE persistEntity()

DELETE mergeEntity()

Hitachi Consulting

Inspiring Your Next Success!®

35

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

TopLink CRUD query operations: ANSWER

SQL TopLink

SELECT queryEntityNameFindAll()

INSERT persistEntity()

UPDATE mergeEntity()

DELETE removeEntityName()

Hitachi Consulting

Inspiring Your Next Success!®

36

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Select All data query

Selecting data using the queryEntityNameFindAll() method:

// Selects and prints out all rows:System.out.println("Products Query Result:");

List<Products> productsList = sessionEJB.queryProductsFindAll(); for ( Products p: productsList ) { System.out.println( "Product ID: " + p.getProdId() ); System.out.println( "Product Name: " + p.getName() ); System.out.println( "Product Description: " + p.getDescription() ); }// end for

We’ll Build a named query with a where clause later in the session…

Hitachi Consulting

Inspiring Your Next Success!®

37

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Inserting Data using the persistEntity() method

// Inserts a row into the products table:

Products p1 = new Products();

p1.setName( “IOUG Washing Machine" );

p1.setDescription( "Having fun at IOUG" );

sessionEJB.persistEntity( p1 );

Hitachi Consulting

Inspiring Your Next Success!®

38

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Updating data using the mergeEntity() method:

// Perform an update:// productsList.size() returns the size of the List// Remember: Java like C/C++ is zero based so we must// subtract 1 to find the last element in the List:

Products p2 = new Products();

p2 = productsList.get( productsList.size() - 1 );

p2.setName( “IOUG iPod" );p2.setDescription( "We updated this row!" );

sessionEJB.mergeEntity( p2 );

Hitachi Consulting

Inspiring Your Next Success!®

39

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Delete data using the removeEntityName() method

// delete a Product from the List

Products p3 = new Products();

p3 = productsList.get( productsList.size() - 1 );

sessionEJB.removeProducts( p3 );

Hitachi Consulting

Inspiring Your Next Success!®

40

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

How do you find an Entity Row by Primary Key?

• Need to create a new Named Query

• Expose the new Query in the Session Bean

• Test it out in the Client Test Harness

Hitachi Consulting

Inspiring Your Next Success!®

41

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Find a row by primary Key: Step 1. Create a Named Query in

Products.java EntityBeanCreating a new Named Query. If you have more than 1 query in a POJO,

you’ll need to wrap the named queries in an @NamedQueries Annotation.

@NamedQueries({

@NamedQuery( name = "Products.findAll", query = "select o from Products o" ) ,

@NamedQuery( name = "Products.findByProdId", query = "select p from Products p where p.prodId = :prodId")

})

Code that we added

Hitachi Consulting

Inspiring Your Next Success!®

42

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Find a row by primary Key: Step 2. Expose the new method

Right click on the SessionEJBBean.java file and then Select Edit Session Façade…

• Expose the findByProdId() method in the Session Bean:

Hitachi Consulting

Inspiring Your Next Success!®

43

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Find a row by primary Key: Step 3.

Check the newly created Products.findByProdId method. This will make it available to clients at runtime.

• Expose/Enable methods in the Session Façade wizard:

Hitachi Consulting

Inspiring Your Next Success!®

44

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Method generated for our new query in the session bean:

/** <code>select p from Products p where p.prodId = :prodId</code> */

public List<Products> queryProductsFindByProdId( Object prodId ) { return em.createNamedQuery( "Products.findByProdId“ ) .setParameter( "prodId", prodId ).getResultList();}

This cryptic little stub performs the following.1. Accepts a prodId parameter.2. Creates an instance of the findByProdId NamedQuery using the Entity

Manager instance em.3. Sets the required prodId parameter to the value passed to this method.4. Returns a java.util.List object that contains all of the objects (rows) that

satisfied this query by invoking the getResultList() method of the NamedQuery.

Hitachi Consulting

Inspiring Your Next Success!®

45

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Test our new query in the EJB test client

System.out.println( "Products by Prod ID Query Result:" );

List<Products> productsList = sessionEJB.queryProductsFindByProdId( 100 );for ( Products p: productsList ) {

System.out.println( "Prod ID: " + p.getProdId() ); System.out.println( "Name: " + p.getName() ); System.out.println( "Description: " +

p.getDescription() );

}

Hitachi Consulting

Inspiring Your Next Success!®

46

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Database Transactions• What if I need a database transaction?• When we accepted the default settings, it set up the Entity

objects to use Container Managed Persistence (CMP) and optimistic locking for row data.

• This means that persistence operations will commit and rollback work automatically.

• To get finer grained control you’ll need to review TopLink’s transaction documentation in the Developer’s Guide.

• TopLink provides support for commit, rollback and two-phase commit as expected.

Hitachi Consulting

Inspiring Your Next Success!®

47

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Handling Schema Design Changes

• Have a look at Offline Database Object Generation/Reconciliation.

Hitachi Consulting

Inspiring Your Next Success!®

48

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Persistence Framework Issues

• Very important to understand the relationship between your persistence framework and the database regarding synchronization.

• Very important to implement and understand a synchronization strategy so that database/mid-tier consistency is maintained.

Hitachi Consulting

Inspiring Your Next Success!®

49

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Recommendations

• Use a persistence framework• Have a data architect role on project that

works closely with the database administrator responsible for the schema administration.

• Watch out for DML that is performed outside of the persistence framework

• Get to know how to tune your persistence framework

• Be on the lookout for rogue developers

Hitachi Consulting

Inspiring Your Next Success!®

50

Hitachi Consulting

IOUG Collaborate ‘08 Bill Lyons EJB 3.0

Helpful information

• EJB 3.0 TopLink Presentation Materials and Source Code– http://www.4shared.com/dir/5686418/9daee38b/RMOUG_2008.html

• Oracle TopLink Homepage– www.oracle.com/technology/products/ias/toplink/index.html

• EJB 3.0 Resources– www.oracle.com/technology/tech/java/ejb30.html

• Oracle JDeveloper Homepage– www.oracle.com/technology/products/jdev/index.html

• EJB 3.0 Specification– java.sun.com/products/ejb/docs.html

• TopLink Cache Invalidation– www.oracle.com/technology/products/ias/toplink/technical/tips/

DbChangeNotification/index.htm• Spy Mid-Tier SQL to Database

– www.p6spy.com/

Hitachi Consulting

IOUG Collaborate ‘08

EJB 3.0 Java Persistence API (JPA) with Oracle TopLink

Bill Lyons

Systems Architect

Hitachi Consulting

[email protected]