Java EE Architecture, Part Three. Java EE architecture, part three 1(69)

Similar documents
Java EE Architecture, Part Three. Java EE architecture, part three 1(57)

Java EE Architecture, Part Three. Java EE architecture, part three 1(24)

Introduction to JPA. Fabio Falcinelli

EJB 3 Entity Relationships

EJB 3 Entity Relationships

EJB 3 Entities. Course Multi Tier Business Applications with Java EE. Prof. Dr. Eric Dubuis Berner Fachhochschule Biel. Berner Fachhochschule

CO Java EE 6: Develop Database Applications with JPA

Lightweight J2EE Framework

JPA Entities. Course Multi Tier Business Applications with Java EE. Prof. Dr. Eric Dubuis Berner Fachhochschule Biel. Berner Fachhochschule

What data persistence means? We manipulate data (represented as object state) that need to be stored

JPA The New Enterprise Persistence Standard

foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration

Shale and the Java Persistence Architecture. Craig McClanahan Gary Van Matre. ApacheCon US 2006 Austin, TX

Middleware for Heterogeneous and Distributed Information Systems Sample Solution Exercise Sheet 5

Java Persistence API (JPA)

Java EE Architecture, Part Two. Java EE architecture, part two 1

The Good, the Bad and the Ugly

Enterprise JavaBeans, Version 3 (EJB3) Programming

Developing Applications with Java EE 6 on WebLogic Server 12c

Database Connection using JPA. Working with the Java Persistence API (JPA) consists of using the following interfaces:

Topics in Enterprise Information Management

Fast Track to EJB 3.0 and the JPA Using JBoss

Module 8 The Java Persistence API

object/relational persistence What is persistence? 5

Final Release. Sun Microsystems. JSR 220: Enterprise JavaBeans TM,Version 3.0. Java Persistence API. EJB 3.0 Expert Group

Session 13. Reading. A/SettingUpJPA.htm JPA Best Practices

Java Persistence API. Patrick Linskey EJB Team Lead BEA Systems Oracle

5/2/2017. The entity manager. The entity manager. Entities lifecycle and manipulation

find() method, 178 forclass() method, 162 getcurrentsession(), 16 getexecutablecriteria() method, 162 get() method, 17, 177 getreference() method, 178

Java Enterprise Edition

JPA. Java Persistence API

Web Application Development Using Spring, Hibernate and JPA

JPA. Java persistence API

Web Application Development Using JEE, Enterprise JavaBeans and JPA

Index. setmaxresults() method, 169 sorting, 170 SQL DISTINCT query, 171 uniqueresult() method, 169

Web Application Development Using Spring, Hibernate and JPA

Web Application Development Using JEE, Enterprise JavaBeans and JPA

TopLink Grid: Scaling JPA applications with Coherence

Java- EE Web Application Development with Enterprise JavaBeans and Web Services

Web Application Development Using Spring, Hibernate and JPA

JPA and CDI JPA and EJB

Java Persistence API (JPA) Entities

Introduction to Java Enterprise Edition For Database Application Developer

ADVANCED JAVA TRAINING IN BANGALORE

Oracle Exam 1z0-898 Java EE 6 Java Persistence API Developer Certified Expert Exam Version: 8.0 [ Total Questions: 33 ]

"Charting the Course... Mastering EJB 3.0 Applications. Course Summary

Pro JPA 2. Mastering the Java Persistence API. Apress* Mike Keith and Merrick Schnicariol


Entities are classes that need to be persisted, usually in a relational database. In this chapter we cover the following topics:

Apache OpenJPA User's Guide

Java SE7 Fundamentals

Spring & Hibernate. Knowledge of database. And basic Knowledge of web application development. Module 1: Spring Basics

"Web Age Speaks!" Webinar Series

Developing Java EE 5 Applications from Scratch

Deployment. See Packaging and deployment processes

EJB 3.0 Puzzlers. Mike Keith, Oracle Corp. Colorado Software Summit: October 21 26, 2007

Table of Contents EJB 3.1 and JPA 2

Object-Relational Mapping is NOT serialization! You can perform queries on each field!

Building Java Persistence API Applications with Dali 1.0 Shaun Smith

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 13

Enterprise JavaBeans 3.1

Exam Questions 1Z0-895

Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX

Courses For Event Java Advanced Summer Training 2018

Integrating Oracle Coherence 12c (12.2.1)

Practice Test. Oracle 1z Java Enterprise Edition 5 Business Component Developer Certified Professional Upgrade Exam. Version: 14.

Java Persistence Advanced Concepts

Versant JPA Tutorial. V/JPA Step-by-Step

Oracle - Developing Applications for the Java EE 7 Platform Ed 1 (Training On Demand)

Polyglot Persistence. EclipseLink JPA for NoSQL, Relational, and Beyond. Shaun Smith Gunnar Wagenknecht

Spring Persistence. with Hibernate PAUL TEPPER FISHER BRIAN D. MURPHY

Apache OpenJPA User's Guide

CHAPTER 3 ENTITY MANAGERS

SUN Sun Cert Bus Component Developer Java EE Platform 5, Upgrade. Download Full Version :

Migrating a Classic Hibernate Application to Use the WebSphere JPA 2.0 Feature Pack

AP COMPUTER SCIENCE JAVA CONCEPTS IV: RESERVED WORDS

Entity LifeCycle Callback Methods Srikanth Technologies Page : 1

ADF Mobile Code Corner

Object-relational mapping EJB and Hibernate

JVA-117A. Spring-MVC Web Applications

Holon Platform JPA Datastore Module - Reference manual. Version 5.2.1

Java EE 7: Back-End Server Application Development

POJOs in Action DEVELOPING ENTERPRISE APPLICATIONS WITH LIGHTWEIGHT FRAMEWORKS CHRIS RICHARDSON MANNING. Greenwich (74 w. long.)

Java EE Application Assembly & Deployment Packaging Applications, Java EE modules. Model View Controller (MVC)2 Architecture & Packaging EJB Module

Skyway Builder 6.3 Reference

Java J Course Outline

Dali Java Persistence Tools. User Guide Release 2.0 for Eclipse

1 Copyright 2011, Oracle and/or its affiliates. All rights reserved.

Page 1

TP 6 des architectures logicielles Séance 6 : Architecture n-tiers avec du JPA avec plusieurs entités. 1 Préparation de l environnement Eclipse

Hibernate Tips More than 70 solutions to common Hibernate problems. Thorben Janssen

Injection Of Entitymanager

/ / JAVA TRAINING

Module 3 Web Component

Introducing EclipseLink: The Eclipse Persistence Services Project

Extracts from Intro to Db - Jdbc - JPA SpringData

Seam 3. Pete Muir JBoss, a Division of Red Hat

What is a cloud? Monday, January 25, :13 PM

5/2/2017. Querying. Querying. Querying. Entities can be retrieved using EntityManager.find() when the primary key is known

Dali Java Persistence Tools. User Guide Release for Eclipse

Transcription:

Java EE Architecture, Part Three Java EE architecture, part three 1(69)

Content Requirements on the Integration layer The Database Access Object, DAO Pattern Frameworks for the Integration layer Java EE architecture, part three 2(69)

Requirements on the Integration Layer Performance The SQL must make use of stored procedures, prepared statements, indexes and so on. Good knowledge about the database and the DBMS is required. The O/R mapping technology (e.g. JPA) must be configured to use caches, lazy loading etc in an efficient way. DBMS tuning is not included in this course. JPA tuning is mentioned very briefly below. Java EE architecture, part three 3(69)

Requirements on the Integration Layer Concurrency Must behave correct even if the same entity is updated concurrently by different threads. Java EE architecture, part three 4(69)

Requirements on the Integration Layer Low coupling between business and resource The very purpose of the integration layer is to separate business and resource. The definition is adapted to the needs of the business layer and the implementation to the data store. Shall it be possible to change DBMS without updating the business logic? Java EE architecture, part three 5(69)

Requirements on the Integration Layer O/R-mapping Conversion between rows in the database and objects in Java. How are relations, inheritance and other object oriented paradigms mapped to the database? Java EE architecture, part three 6(69)

Requirements on the Integration Layer Primary keys When and by who are they generated? How do we ensure that they are unique? Java EE architecture, part three 7(69)

Requirements on the Integration Layer (cont) What data shall be used for communication with business? Not primitive data since that would lead to very long and complicated method signatures. May the business logic objects themselves be used? Java EE architecture, part three 8(69)

The Database Access Object, DAO Pattern The responsibility of a DAO is to handle database calls. It should have no dependencies on the business layer and should contain no business logic. Its public interface is designed to meet the needs of the business layer. Java EE architecture, part three 9(69)

DAO, an example public class ProductDao { } @PersistenceContext(unitName = "productpu") private EntityManager em; public Collection loadproductsbycategory(string category) { Query query = em.createquery( "from Product as p where p.category = :category"); query.setparameter("category", category); return query.getresultlist(); } //Other database access methods. Java EE architecture, part three 10(69)

Frameworks for the Integration Layer Java Persistence API (JPA) (Sun, part of Java EE) Hibernate (JBoss) Java EE architecture, part three 11(69)

A Comparison JPA and Hibernate have very similar architecture and functionality. Since JPA is part of Java EE and quite easy to use it should be the default choice. Choose Hibernate if there are specific reasons, like existing applications, developer knowledge or some particular feature. Java EE architecture, part three 12(69)

A Comparison (cont) JPA contains only definitions, it does not contain the implementation (provider) that makes the actual database calls. Hibernate contains both definition and implementation. When using JPA a provider is needed. Java EE ships with EclipseLink (Oracle). Another idea is to use Hibernate as provider. Java EE architecture, part three 13(69)

JPA: Java Persistence API JPA Home Page: http://www.oracle.com/technetwork/java/ javaee/tech/persistence-jsp-140049.html Specification: http://www.jcp.org/en/jsr/detail?id=220 Java EE architecture, part three 14(69)

JPA Architecture Configured with annotations Easy to call from both Spring and EJB. Transactions are propagated from calling framework. Entities are plain java objects. Reads entity's byte code and uses post compilation when needed. Java EE architecture, part three 15(69)

Entity Persistent object Typically in the model. Typically (but not necessarily) one entity per table and one instance per row in that table. Either fields or properties (JavaBeans style) are persisted. If fields or properties are persisted is decided either explicitly by the Access annotation or implicitly by the location of other annotations (close to fields or properties). Object/Relational (O/R) mapping with annotations to map objects to underlying relational data store. Java EE architecture, part three 16(69)

Requirements for Entity Classes Annotated with the javax.persistence.entity annotation. public or protected, no-argument constructor. May have other constructors as well. Must not be declared final. Nor methods or persistent instance variables may be declared final. Java EE architecture, part three 17(69)

Requirements for Entity Classes (cont) Persistent instance variables must be declared private, protected, or package-private, and can only be accessed directly by the entity class's methods. Instance variables must not be accessed by clients of the entity. Java EE architecture, part three 18(69)

Requirements for Entity Classes (cont) Persistent fields or properties may be of the following types: Any primitive type Time specification classes, that is java.util.date or java.util.calendar Any Serializable type Enums Any entity type Collections (java.util.collection, java.util.list, java.util.set or java.util.map) of entities. Embeddable classes (explained below). Java EE architecture, part three 19(69)

Persistent Fields Persistence runtime accesses entity class instance variables directly. All fields not declared transient and not annotated Transient will be persisted. Java EE architecture, part three 20(69)

Persistent Properties Persistence runtime accesses entity state via the property accessor methods. All properties not annotated Transient will be persisted. Property accessor methods must be public or protected. Java EE architecture, part three 21(69)

Persistent Properties (cont) The following accessor methods must exist for each property: Type getproperty() void setproperty(type type) Java EE architecture, part three 22(69)

Primary Keys Each entity has a unique object identifier, a primary key. A simple (non-composite) primary key must correspond to a single persistent field or property of the entity class. The Id annotation is used to denote a simple primary key. Java EE architecture, part three 23(69)

Composite Primary Keys Typically used when mapping from databases where the primary key is comprised of several columns. Composite primary keys must be defined in a primary key class. Java EE architecture, part three 24(69)

Composite Primary Keys (cont) Composite primary keys must correspond to either a single persistent property or field, or to a set of single persistent properties or fields in the primary key class. Composite primary keys are defined using the javax.persistence.embeddedid and javax.persistence.idclass annotations. Java EE architecture, part three 25(69)

An example package account; import java.io.serializable; import javax.persistence.entity; import javax.persistence.generatedvalue; import javax.persistence.generationtype; import javax.persistence.id; @Entity public class Account { @Id private int acctno; private String firstname; private String lastname; private int balance; Java EE architecture, part three 26(69)

An example (cont) public Account() { } public Account(int acctno, String firstname, String lastname, int balance) { this.acctno = acctno; this.firstname = firstname; this.lastname = lastname; this.balance = balance; } public int getacctno() { } return acctno; // More business methods. Java EE architecture, part three 27(69)

Context A persistence context is a set of managed entity instances that exist in a particular data store. A context is the scope under which entity instances exist. Java EE architecture, part three 28(69)

EntityManager The EntityManager interface defines the methods that are used to interact with the context, for example create, remove and find. Each EntityManager instance is associated with a single context. Java EE architecture, part three 29(69)

EntityManager (cont) Applications that are container-managed (for example EJB applications) can obtain entity managers with injection: @PersistenceContext EntityManager em; The container will create an entity manager instance and store it in the em field. The container will assure that all entity managers used in the same transaction will handle the same context. Java EE architecture, part three 30(69)

Persistence Unit Applications that are not container-managed (for example servlet application and Java SE applications) must call EntityManagerFactory to have an entity manager created: @PersistenceUnit EntityManagerFactory emf; EntityManager em = emf.createentitymanager(); Java EE architecture, part three 31(69)

Persistence Unit (cont) Persistence Unit Defines the entities that are managed by an entity manager. Defines where to store the entities persistently. Java EE architecture, part three 32(69)

Entity Instance's Life cycle The life cycle of an entity instance is managed by the EntityManager. Entity instances are in one of four states: new, managed, detached, or removed. Java EE architecture, part three 33(69)

Entity Instance's Life cycle (cont) New entity instances have no persistent identity and are not yet associated with a persistence context. Managed entity instances have a persistent identity and are associated with a persistence context. Java EE architecture, part three 34(69)

Entity Instance's Life cycle (cont) Detached entity instances have a persistent identify and are not currently associated with a persistence context. Removed entity instances have a persistent identity, are associated with a persistent context, and are scheduled for removal from the data store. Java EE architecture, part three 35(69)

Entity Instance's Life cycle (cont) @PersistenceContext EntityManager em;... public LineItem createlineitem(order order, Product product, int quantity) { LineItem li = new LineItem(order, product, quantity); // new order.getlineitems().add(li); em.persist(li); // managed } The entity (li) is new after this statement. The entity is managed after this statement. Java EE architecture, part three 36(69)

Entity Instance's Life cycle (cont) public void removeorder(integer orderid) { try { Order order = em.find(order.class, orderid); em.remove(order); } Entities are looked up with the EntityManager method find (more on queries below). Entities are removed with the EntityManager method remove. Java EE architecture, part three 37(69)

Entity Instance's Life cycle (cont) The state of persistent entities is synchronized to the database when the transaction with which the entity is associated commits. To force synchronization of the managed entity to the database, invoke the flush method of the EntityManager. Java EE architecture, part three 38(69)

Transactions Container-managed The preferred way. Can only be used when JPA entities stays in a transaction aware container (e.g EJB or Spring) Transactions propagate from the calling container and are not handled by JPA code. Use declarative transaction demarcation in the container. Java EE architecture, part three 39(69)

Transactions (cont) Application-managed The only choice if JPA is not used inside a transaction aware container. Typically used when JPA is called from a standalone Java program or from a Servlet container. Transaction must be started and stopped programmatically through the EntityTransaction interface. Easy to make mistakes! Java EE architecture, part three 40(69)

Embeddable classes Ordinary java class that is a persistent property or field of an entity. Have no identity and can not be shared between entities. Follow the same rules as entities (no-arg constructor, not final etc) except that they are annotated @Embeddable instead of @Entity. Its persistent fields/properties may be primitive types, other embeddable classes, entities or collections of these three kinds. Java EE architecture, part three 41(69)

Relationships Relationships are persistent. Can be between two entities or between an entity and an embeddable class. Can be unidirectional or bidirectional. Can be one-to-one, one-to-many, many-to-one or many-to-many Changes cascade (if so is specified) when saved to the database. Java EE architecture, part three 42(69)

Relationships, example @Entity public class Employee { private Cubicle assignedcubicle; @OneToOne public Cubicle getassignedcubicle() { return assignedcubicle; } @Entity public class Cubicle { private Employee residentemployee; @OneToOne(mappedBy="assignedCubicle") public Employee getresidentemployee() { return residentemployee; } } public void setassignedcubicle( Cubicle cubicle) { assignedcubicle = cubicle; }... public void setresidentemployee( Employee employee) { residentemployee = employee; }... } Java EE architecture, part three 43(69)

Unidirectional relationships can only be navigated in one way. Cascading updates Searches Relationships, direction Have relationship annotation only on one side. Java EE architecture, part three 44(69)

Relationships, direction (cont) Bidirectional relationships can be navigated in both ways. Have relationship annotations on both sides. Inverse (not owning) side specifies that it is mapped by the property or field on the owning side. @OneToOne(mappedBy="assignedCub icle") Java EE architecture, part three 45(69)

Relationships, direction (cont) The relationship itself is persisted based on the owning side. The owning side has the foreign key. Java EE architecture, part three 46(69)

Relationships, multiplicity The following annotations exist: OneToOne OneToMany ManyToOne ManyToMany For OneToOne and ManyToMany relationships any side may be the owning side. Java EE architecture, part three 47(69)

Relationships, multiplicity (cont) @Entity public class Employee { private Department department; @ManyToOne public Department getdepartment() { return department; } public void setdepartment(department department) { this.department = department; }... } Java EE architecture, part three 48(69)

Relationships, multiplicity (cont) @Entity public class Department { private Collection<Employee> employees = new HashSet(); @OneToMany(mappedBy="department") public Collection<Employee> getemployees() { return employees; } public void setemployees(collection<employee> employees) { this.employees = employees; }... } Java EE architecture, part three 49(69)

Relationships, cascading updates Updates to the database may cascade along relationships. Specified by the cascade element of the relationships annotations. ALL, Cascade all operations MERGE, Cascade merge operation PERSIST, Cascade persist operation REFRESH, Cascade refresh operation REMOVE, Cascade remove operation Java EE architecture, part three 50(69)

Relationships, cascading updates Example: (cont) @OneToMany(cascade=REMOVE, mappedby="customer") public Set<Order> getorders() { return orders; } Java EE architecture, part three 51(69)

Queries Query methods are in EntityManager. The find method can be used to find instances by primary key. em.find(order.class, orderid); Java EE architecture, part three 52(69)

Queries (cont) The createquery method is used to create dynamic queries, queries that are defined directly within an application's business logic. @PersistenceContext public EntityManager em;... public List findwithname(string name) { Query query = em.createquery( "SELECT c FROM Customer c WHERE c.name LIKE :custname"); } query.setparameter("custname", name); return query.getresultlist(); Java EE architecture, part three 53(69)

Queries (cont) The createnamedquery method is used to create static queries, queries that are defined in meta data using the NamedQuery annotation. @NamedQuery( name="findallcustomerswithname", query="select c FROM Customer c WHERE c.name LIKE :custname" ) @PersistenceContext public EntityManager em;... Query query = em.createnamedquery("findallcustomerswithname"); query.setparameter("custname", "Smith"); customers = query.getresultlist(); Java EE architecture, part three 54(69)

Java Persistence Query Language, JPQL The two preceding slides use Java Persistence query language. SQL-like language. See for example the Java EE tutorial or the specification. Java EE architecture, part three 55(69)

Criteria API The criteria API provides a way to generate queries in an object-oriented way with ordinary method calls, as opposed to the string manipulation used by JPQL. The advantage over JPQL is that it is type safe and that it is not required to know field names at compile time. The disadvantage is that notably more code is required to generate queries and that it is harder to read the queries. Java EE architecture, part three 56(69)

Cache The JPA specification includes optional support for caching in the JPA provider (e.g. EclipseLink). EclipseLink provides such a cache. This is called second-level cache, as opposed to the first-level cache which is maintained by the persistence context. Java EE architecture, part three 57(69)

Cache, Cont'd Cache tuning is one of the topics that are important for database performance. Information about JPA and EclipseLink caches can be found at the following URLs. https://blogs.oracle.com/carolmcdonald/ entry/jpa_caching http://wiki.eclipse.org/introduction_to_ Cache_%28ELUG%29 Java EE architecture, part three 58(69)

Locks As can be seen below, multiple transactions might be using the same entity instance in the L1 cache, the L2 cache and the database. Therefore, locking is required. Java EE architecture, part three 59(69)

Locks, Cont'd The most used locking mechanism is optimistic locking. Allows concurrent accesses but detects them. If concurrent access are detected the transaction is rolled back and an exception is thrown. Optimistic locking is the best alternative when conflicts are not so frequent, i.e. when updates are not frequent. Java EE architecture, part three 60(69)

Locks, Cont'd Optimistic locking is implemented using a version number for the data (entity). Whenever an entity instance is read, its current version number is also read. When the instance is stored, the version in the database is compared to the Java object's version. If the version numbers differ it means someone else updated the database and there is a conflict. Java EE architecture, part three 61(69)

Optimistic Lock Example In the entities, add a version field. @Version @Column(name="OPTLOCK") private int versionnum; In the quires, specify that the found entities shall be optimistically locked. @NamedQuery( name = "findaccountwithname", query = "SELECT acct FROM Account acct WHERE acct.owner.name LIKE :ownername", lockmode = LockModeType.OPTIMISTIC_FORCE_INCREMENT) Java EE architecture, part three 62(69)

Optimistic Lock Example, Cont'd Optimistic locking can also be specified in the entity manager using the lock or find methods. Java EE architecture, part three 63(69)

More information on Locking https://blogs.oracle.com/carolmcdonald/ entry/jpa_2_0_concurrency_and Java EE architecture, part three 64(69)

Lazy Loading Say that we have two entities, A and B, and that A has a reference to B. When A is loaded, B will also be loaded and it will be possible to access B writing something similar to a.getb(), provided that a is an instance of A. If entity B is never accessed in the program, then it was a waste of resources to read the B instance from the database. Java EE architecture, part three 65(69)

Lazy Loading, Cont'd To avoid this unnecessary read, we can specify that B should be lazy loaded. This means that the instance of B will not be read from the database when the A instance is read, but when the B instance is accessed, that is when a.getb() is called. The opposite, that the B instance is read from the database when the A instance is read, is called eager loading. Java EE architecture, part three 66(69) 66

Lazy Loading, Cont'd If we always use eager loading we might suffer severe performance penalties by loading (lots of) unused objects. Also lazy loading can bring performance penalties if used the wrong way. Suppose that we load entity A, which has a one to many relation to B. Also suppose that we will iterate through all B instances referenced by the A instance. This means that there will be one separate database call for each instance of B instead of loading them all in the same call, which would be the case if eager load was used for B. Java EE architecture, part three 67(69) 67

Lazy Loading, Cont'd Which loading strategy that is used can be specified in all relationship annotations, i.e OneToOne, OneToMany, ManyToOne and ManyToMany. More information about loading strategies at https://blogs.oracle.com/carolmcdonald /entry/jpa_performance_don_t_ignore Java EE architecture, part three 68(69)

Performance Conclusion As seen from this very brief overview there are lots of properties related to performance of JPA and of the JPA provider. Also the DBMS itself provides caching, locking and lots of other configuration possibilities that are important for performance. The bottom line is that good knowledge about the O/R mapping technology and the DBMS is necessary to be able to write an efficient application. However, this is not a mandatory part of this course. Java EE architecture, part three 69(69)