Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Still on Java 8 at work :-/


Amazon's version or the for a while now EOL Oracle version? Maybe push to upgrade to something supported :)


A mad scramble to switch to OpenJDK before the Oracle license becomes inconvenient.


Eight's JVM still ships with Minecraft, so that's not necessarily a bad thing. It's battle-proven.


8 is still “modern” Java right? 11 didn’t add a ton ton for most developers.


I'd say that now with 15 adding records and instanceof pattern, Java 8 is finally looking pretty dated!

You're also missing out on var and switch expressions, which are very visible features (as are records and instanceof patterns), so the difference should be obvious between a Java 8 codebase and a Java 15 one.


Var and switch were the biggest from Java 11, along with modules and the new GCs?


I very much like text blocks as well. SQL/JSON can be finally understandable without all the "\n" +


For those who have upgraded, I assume Jigsaw is the main concern?


I've been using Maven and Gradle's toolchains functionality to move individual apps to Java >8 without breaking the legacy apps, works pretty well.


Every thread about new Java version has the same comment all the time. Why share it? What kind of response do you seek?


I think it's interesting to discuss how many are stuck on java8. It was a long time many of us were stuck on java6 or 7, and finally got up to java8. But then when 9, 10 and 11 came no one made an effort to upgrade. Why? And now we're at 15 and people are starting to feel the heat.

We only migrated our main service from 8 to 15 a month ago (AWS deprecation), but still have lots of 8 code laying around (luckily some of the container-features were backported)


> I think it's interesting to discuss how many are stuck on java8. [...] But then when 9, 10 and 11 came no one made an effort to upgrade. Why?

A lot of things broke in Java 9, which was short-lived (both it and Java 10 lasted only six months each), and then Java 11 broke many other things (for instance, it removed all of J2EE). As late as last year, I was still seeing changes in libraries to fix issues with Java 9 or later. It's not that no one made an effort to upgrade, it's that it was a lot of effort, and often required upgrading to later versions of libraries, which have their own breaking changes.


In my experience mst of these changes are simple to add to your projects pom or build.gradle. For instance the removal of the jaxb xml runtime is a simple 1 liner to your project:

    runtimeOnly 'org.glassfish.jaxb:jaxb-runtime:2.3.2'


Speaking from personal experience, the creators of most of the recent JDK versions have made very poor efforts to explain the changes, it's mostly just a list of RFC type documents, and who has time?

An example of something that compares favourably would be Go, where they always blog about the changes, and there's easy to find official language documentation (and not just autogenerated API docs).


Have you tried for example the linked article with all the JEPs listed with lengthy descriptions? And with links to relevant mailing lists if it didn’t satisfy your curiosity?


I just yesterday took the time to go and read through them. And I still consider it awful UI.

- A list of links is not a summary. The list is too short, reading every individual linked document is too long. The format of JEPs tends to bury the lede. As such it feels like wading through mud.

- Changes that affect the programmer experience are mixed at random with changes that affect internal details of the implementation.

- Changes that introduce experimental features are mixed at random with changes that are final.


At a bank, and yes, us too!


What’s the reason for that?




Consider applying for YC's Winter 2026 batch! Applications are open till Nov 10

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: