I have recently learned that there are bugs in JDK7 for hotspot compiler optimization. See this thread.

I don't quite understand the details of these bugs, but they seem to be related to loop optimization. Since I'm going to run some large-scale program in the -server mode (which of course contains a lot of loops), I wonder whether it would be safe to use JDK7 or not? Thank you.

link|improve this question
Simple question: Has it been released yet as an official sanctioned version? Until then, I think the answer obvious in any mission-critical code. – Hovercraft Full Of Eels Aug 16 '11 at 3:14
@Hovercraft: sanctioned by who? It has certainly been officially released by Oracle and is the default and featured download at their Java pages. – Thilo Aug 16 '11 at 3:17
@Thilo: that's not the official recommended Java version that I see on their download page. I see "Recommended Version 6 Update 26 (filesize: ~ 11 MB)" – Hovercraft Full Of Eels Aug 16 '11 at 3:38
Interesting. "Why is Java SE 7 not yet available on java.com? The new release of Java is first made available to the developers to ensure no major problems are found before we make it available on the java.com website for end users to download the latest version. If you are interested in trying Java SE 7 it can be downloaded from Oracle.com". – Thilo Aug 16 '11 at 3:42
Oracle obviously wants developers to use it. But it's not yet ready for release. – Hovercraft Full Of Eels Aug 16 '11 at 3:45
feedback

2 Answers

The same bug exists in JDK 6, but since the default optimization are different, it only comes into play when aggressive optimization flags are used.

To disable this optimization for JDK 7 use the -XX:-UseLoopPredicate flag and you will be safe across any version of JDK 7.

link|improve this answer
feedback

You should start testing your code with JDK7 now.

As to whether you want to put it into production, it is probably always safe to wait a while. That does not just apply to the JDK, but to any major upgrade to any major piece of software. Let them do their update1 and update2, and wait what Apache and others have to say for it. You do not need to be in a hurry, right? JDK6 works ...

link|improve this answer
As a developer, you want to start using the new features, though... – Thilo Aug 16 '11 at 3:05
you want to, but whether it is a good idea depends on how long it is before your code needs to go into production. – Stephen C Aug 16 '11 at 3:16
feedback

Your Answer

 
or
required, but never shown

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