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

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

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

CO Java EE 6: Develop Database Applications with JPA

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

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

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

Java Persistence API (JPA)

JPA The New Enterprise Persistence Standard

Lightweight J2EE Framework

Enterprise JavaBeans, Version 3 (EJB3) Programming

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

Fast Track to EJB 3.0 and the JPA Using JBoss

EJB 3 Entity Relationships

The Good, the Bad and the Ugly

EJB 3 Entity Relationships

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

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

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

object/relational persistence What is persistence? 5

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

Web Application Development Using Spring, Hibernate and JPA

Web Application Development Using Spring, Hibernate and JPA

Web Application Development Using JEE, Enterprise JavaBeans and JPA

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

Developing Applications with Java EE 6 on WebLogic Server 12c

Web Application Development Using Spring, Hibernate and JPA

Web Application Development Using JEE, Enterprise JavaBeans and JPA

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

Introduction to JPA. Fabio Falcinelli

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

Module 8 The Java Persistence API

TopLink Grid: Scaling JPA applications with Coherence

JPA. Java Persistence API

Building Java Persistence API Applications with Dali 1.0 Shaun Smith

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

Topics in Enterprise Information Management


ADVANCED JAVA TRAINING IN BANGALORE

Java EE 7: Back-End Server Application Development

Java SE7 Fundamentals

Java Enterprise Edition

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

"Web Age Speaks!" Webinar Series

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

Java Persistence API (JPA) Entities

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

Java Persistence Advanced Concepts

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

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

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

JPA and CDI JPA and EJB

Introduction to Java Enterprise Edition For Database Application Developer

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

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

TOPLink for WebLogic. Whitepaper. The Challenge: The Solution:

CHAPTER 3 ENTITY MANAGERS

Object-relational mapping EJB and Hibernate

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

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

Object-Relational Mapping Tools let s talk to each other!

Lightweight J2EE Framework

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

JPA. Java persistence API

Integrating Oracle Coherence 12c (12.2.1)

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

Java Persistence Query Language (JPQL)

Developing Java EE 5 Applications from Scratch

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

Course Description. Learn To: : Intro to JAVA SE7 and Programming using JAVA SE7. Course Outline ::

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

Extracts from Intro to Db - Jdbc - JPA SpringData

Enterprise JavaBeans 3.1

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

Object-relational mapping tools and Hibernate

Skyway Builder 6.3 Reference

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

Introducing EclipseLink: The Eclipse Persistence Services Project

ADF Mobile Code Corner

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

Deployment. See Packaging and deployment processes

Courses For Event Java Advanced Summer Training 2018

Java SE 8 Programming

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

Supports 1-1, 1-many, and many to many relationships between objects

Holon Platform JPA Datastore Module - Reference manual. Version 5.2.1

Java SE 7 Programming

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

Produced by. Design Patterns. MSc Computer Science. Eamonn de Leastar

Leverage Rational Application Developer v8 to develop Java EE6 application and test with WebSphere Application Server v8

Exam Questions 1Z0-895

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

CO Java EE 7: Back-End Server Application Development

1Z Oracle. Java Enterprise Edition 5 Business Component Developer Certified Professional Upgrade

/ / JAVA TRAINING

High-Performance Hibernate VLAD MIHALCEA

Java SE 8 Programming

Efficient Object-Relational Mapping for JAVA and J2EE Applications or the impact of J2EE on RDB. Marc Stampfli Oracle Software (Switzerland) Ltd.

Apache OpenJPA User's Guide

Apache OpenJPA User's Guide

Object Persistence Design Guidelines

Transcription:

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

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

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(57)

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(57)

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(57)

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(57)

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(57)

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(57)

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(57)

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(57)

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

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(57)

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(57)

JPA: Java Persistence API Tutorial: https://docs.oracle.com/javaee/7/tutorial/doc/partpersist.htm#bnbpy Java EE architecture, part three 14(57)

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(57)

The first example (1/2) The @Entity and @Id annotations are all that is needed to turn a plain Java object into an entity managed by JPA. package account; import javax.persistence.entity; import javax.persistence.id; @Entity public class Account { @Id private int acctno; private String firstname; private String lastname; private int balance; Lecture 9: JDBC and Lecture 9: JDBC and JPA 16

The first example (2/2) 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; Lecture 9: JDBC and // More business methods. Lecture 9: JDBC and JPA 17

Main JPA Concepts Entity A persistent abstraction. Represented as Java class in the program and (typically but not necessarily) as table in the database. An entity instance is a Java object in the program and a row in the database table(s). Either fields or properties (JavaBeans style) are persisted. If fields or properties are persisted is decided by the location of annotations (close to fields or close to properties). Must have no-argument public or protected constructor. Fields may not be public and may nor be accessed by other objects than the entity instance itself. Must have the @Entity annotation. Object/Relational (O/R) mapping with annotations to map objects to underlying relational data store. Lecture 9: JDBC and JPA 18 and

Main JPA Concepts (cont) Primary key Context Identifies an entity instance, must be unique for each instance. 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. A composite primary keys must correspond to a set of persistent properties or fields in a primary key class. It is defined using the @javax.persistence.embeddedid and @javax.persistence.idclass annotations. A set of managed entity instances that exist in a particular data store. The scope under which entity instances exist. Lecture 9: JDBC and JPA 19 and

Main JPA Concepts (cont) Entity manager An interface that defines the methods used to interact with the context, for example create, remove and find. Each EntityManager instance is associated with a Persistence unit single context. Defines the entities that are managed by an entity manager. Defines where to store the entities persistently. Lecture 9: JDBC and JPA 20 and

Main JPA Concepts (cont) Relation Query Transaction A relation between entity instances that is persisted together with the entity instances. The data store can be searched for entity instances using the find method in EntityManager or using the JPA Query Language (JPQL). JPA is transaction aware. Transaction can be either container-managed or application-managed. Lecture 9: JDBC and JPA 21 and

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. Lecture 9: JDBC and JPA 22 and

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. Lecture 9: JDBC and JPA 23 and

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. Lecture 9: JDBC and JPA 24 and

How to Create a New Entity @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. Lecture 9: JDBC and JPA 25 and

How to Find and Remove an Existing Entity 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. Lecture 9: JDBC and JPA 26 and

Container-Managed Transactions 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. Lecture 9: JDBC and Lecture 9: JDBC and JPA 27

Application-Managed Transactions The only choice when there is no transaction aware container. This is the case with plain Java SE applications. Transaction must be started and stopped programmatically through the EntityTransaction interface. Easy to make mistakes! Lecture 9: JDBC and Lecture 9: JDBC and JPA 28

Application-Managed Transaction Example EntityManager em = emfactory.createentitymanager(); EntityTransaction transaction = em.gettransaction(); transaction.begin(); // Update entities here. em.gettransaction().commit(); Lecture 9: JDBC and Lecture 9: JDBC and JPA 29

Synchronization With Database 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 before transaction commit, invoke the flush method of the EntityManager. Lecture 9: JDBC and Lecture 9: JDBC and JPA 30

Relationships Relationships are persisted by JPA and recreated when an entity instance is read from the database. Can be unidirectional or bidirectional. Can be one-to-one, one-to-many, many-to-one or many-to-many Entity updates (adding/removing entities or changing entity state) can cascade along relations when synchronizing with the database. Lecture 9: JDBC and JPA 31 and

Relationship 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; }... } Lecture 9: JDBC and JPA 32 and

Relationship Direction Unidirectional relationships can only be navigated in one direction. Have relationship annotation only on one side. Bidirectional relationships can be navigated in both directions. 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="assignedCubicle") Lecture 9: JDBC and JPA 33 and

Persisting Relationships The relationship is persisted based on the owning side. The owning side has the foreign key. Lecture 9: JDBC and JPA 34 and

Relationship Multiplicities The following annotations exist: OneToOne OneToMany ManyToOne ManyToMany For OneToOne and ManyToMany relationships, any side may be the owning side. For OneToMany and ManyToOne relationships, the many side must be the owning side. Lecture 9: JDBC and JPA 35 and

OneToMany/ManyToOne Example (1/2) @Entity public class Employee { private Department department; @ManyToOne public Department getdepartment() { return department; } { } public void setdepartment(department department) }... this.department = department; Lecture 9: JDBC and JPA 36 and

OneToMany/ManyToOne Example (2/2) @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; }... Lecture 9: JDBC and Lecture 9: JDBC and JPA 37

Cascading Updates Updates to the database may cascade along relationships. Specified by the cascade element of the relationships annotations. The following cascade types can be specified: ALL, Cascade all operations MERGE, Cascade merge operation PERSIST, Cascade persist operation REFRESH, Cascade refresh operation REMOVE, Cascade remove operation Lecture 9: JDBC and JPA 38 and

Cascading Updates Example @OneToMany(cascade=ALL, mappedby="customer") public Set<Order> getorders() { return orders; } Lecture 9: JDBC and JPA 39 and

Queries Query methods are in the EntityManager. The find method can be used to find instances by primary key: em.find(order.class, orderid); Lecture 9: JDBC and Lecture 9: JDBC and JPA 40

Java Persistence Query Language, JPQL JPQL is a language with many similarities to SQL. JPQL is used to create, search, update or delete JPA entities. Has object-like syntax, the query below declares the variable c, which has the type Customer (must be an entity). Then searches for all instances of Customer that has the property name equal to the parameter custname. The custname parameter must be assigned a value before the query is executed. SELECT c FROM Customer c WHERE c.name LIKE :custname Lecture 9: JDBC and Lecture 9: JDBC and JPA 41

JPQL Example 1 The createquery method is used to create dynamic queries, queries that are defined directly within an application's business logic. 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(); Lecture 9: JDBC and Lecture 9: JDBC and JPA 42

JPQL Example 2 The createnamedquery method is used to create static queries, queries that are defined in meta data using the NamedQuery annotation. @NamedQuery( name="findcustomersbyname", query="select c FROM Customer c WHERE c.name LIKE :custname" ) public EntityManager em; public List findwithname(string name) { Query query = em.createnamedquery("findcustomersbyname"); query.setparameter("custname", name); return query.getresultlist(); } Lecture 9: JDBC and Lecture 9: JDBC and JPA 43

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. The Criteria API is not part of this course. Lecture 9: JDBC and JPA 44 and

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 45(57)

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 46(57)

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 47(57)

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 48(57)

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 49(57)

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 50(57)

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 51(57)

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

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 53(57)

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 54(57)

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 55(57)

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 56(57)

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 57(57)