| By Mike Keith, Rod Johnson | Article Rating: |
|
| April 30, 2007 02:00 PM EDT | Reads: |
61,079 |
Using Spring, the transaction can be started and committed (or rolled back) at method entry and exit. All that needs to be done to achieve this is to declaratively state that the automatic transaction demarcation should happen. In Spring 2.0 the easiest way to do this is by annotating the bean class or method with the @Transactional annotation, although it's also possible to use XML metadata that doesn't require annotating Java code. The type of transaction that's started depends on the type of transaction manager that's configured in the Spring application context; knowledge of the underlying transaction infrastructure is completely abstracted from the Java code.
An example of a Spring bean that's transactional and uses an entity manager to perform JPA operations is the BookInventorySystem class shown below.
package org.bookguru;
import javax.persistence.*;
import org.springframework.transaction.annotation.Transactional;
@Transactional
public class BookInventorySystem {
@PersistenceContext(unitName="BIS")
EntityManager em;
public void addBook(int isbn, String title, String author, Genre genre) {
Book book = new Book(isbn, title, author, genre);
em.persist(book);
}
}
This class looks fairly ordinary except that the presence of two additional annotations, @Transactional and @PersistenceContext, provides us with a great deal more functionality. The @Transactional annotation causes all the methods in the class to get an automatic transaction, so a transaction will be provided whenever a caller invokes the addBook() method. We could just as easily have annotated the method directly to get this behavior, but the likelihood of adding more methods that also need a transaction is quite high, so the class is the best place for it.
The em field will get injected with an instance of EntityManager. The entity manager injected will be configured according to the named persistence unit referred to in the unitName attribute of the @PersistenceContext annotation. Named persistence units are defined and configured in the JPA persistence.xml configuration file and in the Spring application context as part of the entity manager factory bean (see Configuring the Application Context later in this article).
Despite the sparseness of the operations (we could fill it in with more operations and queries, but it's sufficient for purposes of illustration), we have a functional system, and we can now turn to the configuration.
Configuring persistence.xml
The standard JPA configuration file is an XML file called persistence.xml, and it's placed in the META-INF
directory of the jar archive or on the classpath. When using JPA in
most runtime environments, this file will contain most of the runtime
configuration information (except O-R mapping). However, when using JPA
in Spring, this file contains only the definition of the persistence
unit and sometimes a list of the entity classes (if not running in a
server deployment environment). An example of a persistence.xml file for us is shown below.
<persistence xmlns="http://java.sun.com/xml/ns/persistence" version="1.0">
<persistence-unit name="BIS" transaction-type="RESOURCE_LOCAL">
<class>org.bookguru.Book</class>
</persistence-unit>
</persistence>
The type of transaction also depends on the deployment environment. In this example, we're running in a simple Java SE virtual machine (VM) and don't have access to a JTA transaction manager, so we set the transaction type to RESOURCE_LOCAL.
Configuring the Application Context
Every Spring
application must eventually construct an application context - a set of
bean definitions that specify the dependencies that a bean has on
others. A Spring "bean" is a component in the application; it's
configured by Spring and eligible to benefit from the services Spring
provides. The application context determines how the beans fit together
at runtime and provides the flexibility to rewire parts of an
application in different ways without having to change the application
Java code.
Configuring the Entity Manager Factory Bean
As
part of its support for JPA, Spring 2.0 provides several JPA-related
classes intended to be used as Spring beans. The most important of
these is the entity manager factory bean, which makes a JPA entity
manager factory available to the application. This bean has
dependencies that determine the parameters of JPA execution in Spring,
and although many of these settings can be defined in the JPA persistence.xml
file, the Spring application context can provide additional flexibility
and configur-ability. It also provides a configuration style and
experience that's consistent with what Spring users are accustomed to.
Configuring the entity manager factory bean involves configuring three main dependencies: the persistence unit name, the data source, and the load time weaver. This is done as follows:
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="persistenceUnitName" value="BIS"/>
<property name="dataSource" ref="dataSource"/>
<property name="loadTimeWeaver"
class="org.springframework.instrument.classloading.InstrumentationLoadTimeWeaver"/>
<property name="jpaVendorAdapter" ref="vendorAdapter"/>
</bean>
The type of component created by this bean definition is EntityManagerFactory, which is the starting point for JPA usage.
Published April 30, 2007 Reads 61,079
Copyright © 2007 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Mike Keith
Mike Keith has more than 15 years of teaching, research and practical experience in object-oriented and distributed systems, specializing in object persistence. He was the co-specification lead for EJB 3.0 (JSR 220), a member of the Java EE 5 expert group (JSR 244) and co-authored the premier JPA reference book Pro EJB 3: Java Persistence API. Mike is currently a persistence architect for Oracle and a popular speaker at numerous conferences and events around the world.
More Stories By Rod Johnson
Rod Johnson is the CEO of Interface21 and an authority on Java and J2EE development. He is a best-selling author, experienced consultant, and open source developer, as well as a popular conference speaker. Rod is the founder of the Spring Framework, which began from code published with Expert One-on-One J2EE Design and Development.
![]() |
GIUSEPPE SCHIAVO 11/09/07 05:04:51 PM EST | |||
Very disappointing. I though Rod Johnson would have done much better than this. |
||||
![]() |
Rob Bygrave 04/29/07 06:56:41 AM EDT | |||
In regards this point: (and would make using JPA outside a container much simpler) |
||||
- Kindle 2 vs Nook
- Why IBM’s Server Chief Got Busted
- Is Cloud Computing Like Teenage Sex?
- Industry Experts Discuss the State of Cloud Computing
- Performance Tuning Essentials for Java
- Confessions of a Ulitzer Addict
- Tactical Cloud Computing Panel at 1st Annual GovIT Expo
- It's the Java vs. C++ Shootout Revisited!
- Cloud Computing Can Revitalize Your Career as Software Developer
- IBM Could "Reinvent" Java: Mills
- Oracle & Cloud Computing: Exclusive Q&A with SVP Richard Sarwal
- A Brief History of Cloud Computing
- Kindle 2 vs Nook
- Cloud CEOs, CTOs & SVPs to Speak at 4th International Cloud Computing Expo
- Why IBM’s Server Chief Got Busted
- Is Cloud Computing Like Teenage Sex?
- Industry Experts Discuss the State of Cloud Computing
- Performance Tuning Essentials for Java
- The Difference Between Web Hosting and Cloud Computing
- Cloud Computing Expo: Exclusive Q&A with Yahoo! SVP Cloud Computing
- Ajax in RichFaces 3.3, JSF 2 and RichFaces 4
- Confessions of a Ulitzer Addict
- My Thoughts on Ulitzer
- Tactical Cloud Computing Panel at 1st Annual GovIT Expo
- A Cup of AJAX? Nay, Just Regular Java Please
- Java Developer's Journal Exclusive: 2006 "JDJ Editors' Choice" Awards
- The i-Technology Right Stuff
- JavaServer Faces (JSF) vs Struts
- Rich Internet Applications with Adobe Flex 2 and Java
- Java vs C++ "Shootout" Revisited
- Bean-Managed Persistence Using a Proxy List
- Reporting Made Easy with JasperReports and Hibernate
- Creating a Pet Store Application with JavaServer Faces, Spring, and Hibernate
- What's New in Eclipse?
- Why Do 'Cool Kids' Choose Ruby or PHP to Build Websites Instead of Java?
- i-Technology Predictions for 2007: Where's It All Headed?









































