Skip to Content
Harnessing Hibernate
book

Harnessing Hibernate

by James Elliott, Timothy M. O'Brien, Ryan Fowler
April 2008
Intermediate to advanced
380 pages
11h 26m
English
O'Reilly Media, Inc.
Content preview from Harnessing Hibernate

Appendix D. Spring Transaction Support

Using the Spring Framework’s Transactional Annotation

You can put the Transactional annotation on either concrete classes or interfaces, and it can be placed on a class or a method. If a class is annotated with Transactional, the settings apply to every method defined in that class. If a method is annotated with Transactional, the transaction settings apply to a single method. If the Transactional annotation is present on both a class and a method, the settings from the method annotation take precedence over the class annotation.

From the Transactional annotation you can control the isolation level of a transaction, the timeout, the propagation setting, and an array of exceptions which should cause the transaction to roll back.

Note

If these terms are unfamiliar, the tables might help explain them.

For example, if we wanted to always create a new transaction with a serializable isolation level that would time out if not completed in one minute and would roll back on a NumberFormatException, we’d write code like Example D-1.

Example D-1. More control of transaction configuration
@Transactional(readOnly=false,
   propagation=Propagation.REQUIRES_NEW,
   isolation=Isolation.SERIALIZABLE,
   rollbackFor={NumberFormatException.class},
   timeout=60)
public abstract void run();

Warning

If you use the Transactional annotation, you need to be careful where you put the annotation. If you start using proxies in Spring, or if you start to delve into Spring’s compelling support ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Beginning Hibernate: For Hibernate 5

Beginning Hibernate: For Hibernate 5

Joseph B. Ottinger, Jeff Linwood, Dave Minter
Just Hibernate

Just Hibernate

Madhusudhan Konda
Beginning Hibernate, Third Edition

Beginning Hibernate, Third Edition

Joseph B. Ottinger, Dave Minter, Jeff Linwood

Publisher Resources

ISBN: 9780596517724Errata Page