The conclusions that the article draws in "What does the new release train mean to my company?" are completely wrong.
Starting with Java 11, Oracle JDK is no longer free for commercial use, not even for a single day. However, as long as people are OK with GPL v2 + Classpath Exception (which is more permissive than it sounds) and don't need support from Oracle, they can just move to OpenJDK, which is built from the exact same codebase.
Shoutout to https://adoptopenjdk.net, which plans to ship LTS releases of OpenJDK. I believe this will be crucial for keeping the Java ecosystem healthy.
Where did you get that idea? The differentiation between OpenJDK and Oracle JDK happens of course in the truly important part of the library: font rendering.
From that article: "The JVM - This is where the majority of the OracleJDK-only features are. Oracle is open-sourcing a new GC, performance enhancements, tracing tools and a host of other changes."
If they open-source the performance of the JVM, they have nothing left to sell.
The quote describes the situation before JDK 11. As of 11, performance of Oracle JDK and OpenJDK will be exactly the same. They'll sell support and certified LTS builds.
Oracle stated that their goal was to eliminate any functional differences between these two binaries. This will be complete with the release of JDK 11 in September. To achieve this goal, certain features (such as Flight Recorder and Mission Control) have been contributed to the OpenJDK project, whilst other features (like Java Web Start and JavaFX) are being removed from the Oracle JDK.
I'll make a benchmark when there is some feature that the free forever Java SE JDK 8u181 does not have that I need, until then I'm only using 8u181 (or anything better that comes after that and before Jan 2019)
Yes, in this case it is not the exact same codebase. There are actually a number of ARM backends in OpenJDK. If i recall there is an A ARMv5/6 one from the community and Oracle open sourced one for the same or for v7. And then the modern AArch64 one.
I wonder how this is going to play with JetBrains. If they're going to say F java and focus on a different direction. This is a pretty big deal moving forward. Seems like the community will now need to focus a lot of effort into the open jdk. This effectively happened with mysql & oracle. This company likes acquiring open source tech and then turning it into a commercial tech.
You won't have to pay for using Oracle JDK 8u181 in prod, and you won't have to pay for using OpenJDK 11 and higher in prod.
You will have to pay for using Oracle JDK 11 and higher in prod, which is built from the exact same codebase as OpenJDK 11 but offers commercial support and long-term support (LTS) releases.
You have to pay for Oracle JDK but not for OpenJDK, which is just as good, except for a less business-friendly license, no commercial support, and no LTS builds straight from Oracle (instead you need to put your bets on adoptopenjdk.net).
> Quoting the article: «Oracle JDKs may only be used in production if you buy the commercial support.»
Yes, but the author forgets about this in the "What does the new release train mean to my company?" section and draws completely wrong conclusions.
> The alternative is using OpenJDK in production. We'll have to see how much the Oracle JDK and OpenJDK will diverge.
They will be identical. All of Oracle's JDK work, even LTS related work, will go into the OpenJDK repo.
> How is a license that puts no restrictions on usage "less business-friendly"?
Use of GPL licensed software is heavily restricted in many corporations, whether or not it has the Classpath Exception. Among other things, it's hard to verify/enforce that projects only link against files that have the Classpath Exception.
Starting with Java 11, Oracle JDK is no longer free for commercial use, not even for a single day. However, as long as people are OK with GPL v2 + Classpath Exception (which is more permissive than it sounds) and don't need support from Oracle, they can just move to OpenJDK, which is built from the exact same codebase.
Shoutout to https://adoptopenjdk.net, which plans to ship LTS releases of OpenJDK. I believe this will be crucial for keeping the Java ecosystem healthy.