This Week in Spring - September 16th, 2025
Hi, Spring fans! Welcome to another extra special installment of This Week in Spring, wherein we celebrate a very auspicious day indeed: the release of Java 25 and GraalVM 25! That's right: an incredible new iteration of the JVM has just dropped and with it come a ton of features! Let's go through some of my favorites.
One nicety is the new Module import declarations - import all the packages in a given module with a new import
variant. (Does not require importer be in a module). So now you could do: import module java.base;
to get most of the core JDK types in your program in a single line…