Every good Java developer (well.. any developer) has his own list of the best books on each technology. Like:

  • Core Java — "Thinking In Java" B. Eckel, "Core Java" K. Horstmann;
  • Advanced Java — "Effective Java", "Java Puzzlers" J. Bloch;
  • Code Style — "Code Complete" S. Mcconnell;
  • Design Patterns — "Design Patterns: Elements of Reusable Object-Oriented Software" GoF;
  • ...
  • and so on.

So I`d like a really good book, the best book on JVM. What is it in your opinion?

link|improve this question

Community wiki – Sauron Sep 15 '09 at 12:22
feedback

closed as not constructive by Jeremy Banks, Jeff Atwood Sep 15 '11 at 7:23

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 for guidance on how to improve it.

8 Answers

up vote 12 down vote accepted

The Java Virtual Machine Specification, available both online and in a dead-tree edition.

link|improve this answer
I am a bit slow :) Great! – Aviator Sep 15 '09 at 12:06
feedback

Inside the Java Virtual Machine

The second edition of Inside the Java Virtual Machine has arrived. This book describes the inner workings of the Java virtual machine, and several Java APIs closely related to the virtual machine.

You can read it free of charge.

link|improve this answer
feedback

I'd have to add Java Concurrency in Practice, as it covers many aspects of the Java memory model and synchronisation which are not very well covered in other books. For example, the The Java Virtual Machine Specification states that a long or double may be copied using two instructions. JCiP will tell you what platforms and/or when this may occur.

alt text

link|improve this answer
feedback

Java Virtual Machine

This book is a comprehensive programming guide for the Java Virtual Machine (JVM). It gives readers a strong overview and reference of the JVM so that they may create their own implementations or write their own compilers that create Java object code.

link|improve this answer
feedback

Herong's Tutorial Notes on JVM

This book is a collection of notes and tutorial codes I wrote while I was trying different implementations of the JVM (Java Virtual Machine).

Topics include: CDS, Class Data Sharing, Garbage collection, GC, HotSpot, JDK 1.3.0, JDK 1.4.0, JDK 1.4.2, JDK 1.5.0, J2SDK, JRockit, Memory, Out of memory, Performance, Stack overflow, String buffer, etc.

link|improve this answer
feedback

That book is a large collection of notes and tutorial codes I wrote while I was trying different implementations of the JVM (Java Virtual Machine).

link|improve this answer
1  
Which one? Link maybe? – folone Aug 19 '10 at 11:55
feedback

Java Expert Solutions

link|improve this answer
Not really about JVM internals, is it? – Peter Štibraný Sep 15 '09 at 12:41
feedback

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