up vote 13 down vote favorite
8
share [g+] share [fb]

Which book or books would you recommend for learning the ins and outs of Java 5's Concurrency and most importantly why?

What I'm looking for exactly is a book which especially goes through the Java 5's new concurrency mechanisms (i.e. java.util.concurrent package) and could also be used to learn most of what there is to learn about concurrency in general. Also feel free to recommend any other book you think could help me in tackling this important topic.

link|improve this question

feedback

closed as not constructive by Jeremy Banks, Kev Sep 17 '11 at 22:44

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

10 Answers

up vote 21 down vote accepted

Java Concurrency in Practice is the best introduction. It describes all the Java 5 concurrency utilities and how to use them. It also covers what the core issues are with concurrent programming in general.

Concurrent Programming in Java by Doug Lea is a good reference. A lot of java.util.concurrent is based on this book.

link|improve this answer
5  
I'd say that JCiP wins over CPiJ, especially since Doug Lea is one of the co-authors. Lea's original book was very helpful in the old days but plenty of that information is overcome by events now. – Bob Cross Aug 6 '09 at 10:24
feedback

I've written a somewhat popular Java concurrency series too, here:

http://tutorials.jenkov.com/java-concurrency/index.html

link|improve this answer
feedback

Java Concurrency in Practice by Brian Goetz with Tim Peierls, Josh Bloch, Doug Lea etc

link|improve this answer
feedback

The Art of Multiprocessor Programming

link|improve this answer
feedback

10 brief laws of Java concurrency with explanations: http://www.javaspecialists.eu/archive/Issue146.html

link|improve this answer
feedback

JCIP as noted is probably the de facto reference. I would however suggest also considering the concurrency chapter in Effective Java 2nd Edition by Joshua Bloch. Beyond just concurrency, there is a wealth of knowledge in that book.

link|improve this answer
feedback

There is also a nice chapter on Java concurrency in "Clean Code" by Robert C. Martin. Of course, one chapter does not justify buying a book. But in this case the other chapters are worth reading, too :-)

link|improve this answer
1  
Clean Code is a great book as is and I've already actually read it :) – Esko Aug 6 '09 at 10:26
feedback

The art of multiprocessor programming definitely helps to understand the working of the concurrent data structures. After reading nuts and bolts from this book, you can go through Java specific tutorials or any available book.

link|improve this answer
feedback

The package summary for java.util.concurrent is often overlooked but very thorough; the section on Memory Consistency Properties is particularly pithy.

link|improve this answer
feedback

Here is an article on basics of Java concurrency which is a must to know before diving into the java.util.concurrent

http://javatip.com/2010/07/core-java/concurrency/thread-safe-without-synchronization

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.