this post was submitted on 11 Jun 2024
333 points (99.1% liked)

Programming

16769 readers
108 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 0 points 2 months ago (1 children)

OpenJDK misses some parts that are in the Oracle JVM

[–] atzanteol 4 points 2 months ago (1 children)

OpenJDK is the reference implementation now. Biggest differences I've seen are in the default list of trusted CAs.

[–] [email protected] 1 points 2 months ago (1 children)

What about JavaFX? It's included in the Oracle JVM but not in the others afaik.

[–] atzanteol 3 points 2 months ago

JavaFX was removed from the main Java spec in Java 11. Even the Oracle Java distribution. It's a separate project now and is pretty easy to include as as jar if needed. In fact there are non-Oracle builds of the JVM that do add it (there are Zulu builds that put it back in). Because Java is now GPL. Anyone can create a build and include what they want.