Java 9 java.lang.Module API 1. Introduction Following A Guide to Java 9 Modularity, in this article, we’re going to explore the java.lang.Module API that was introduced alongside the Java Platform Module System. This API provides a way to access a module programmatically, to retrieve specific information from a module, and generally to work with… Continue Reading java-9-module-api

Handling NoClassDefFoundError for JAXBException in Java 9 1. Introduction For anyone who has tried upgrading to Java 9, they have likely experienced some sort of NoClassDefFoundError when compiling code that previously worked in earlier versions of Java. In this article, we’ll look at a common missing class, JAXBException, and different ways… Continue Reading java-9-jaxbexception