Top "Java-11" questions

Use this tag for questions specific to Java 11, which is version 11 of the Java platform, released on 25 September 2018.

Java 11: Implementation of JAXB-API has not been found on module path or classpath

I have a little project which does throw an exception when i let it run. The problem is here (TestObject.…

java java-11 java-platform-module-system
JavaFX Modular Application, java.lang.module.FindException: Module javafx.controls not found (Java 11, Intellij)

I have a problem with my modular JavaFX application. I created a JavaFX project and added the JavaFX lib and …

java intellij-idea java-11 javafx-11 openjfx
Difference between isEmpty() and isBlank() Method in java 11

Java 11 has added A new instance method isBlank() to java.lang.String class. What's the basic difference between the existing …

java string is-empty java-11
Java 11 On Windows 7 32 bits

I developed an Java application with Jdk 11 embedded. I packaged my application with launch4j and InnoSetup. I would like …

launch4j java-11
Jenkins - add JDK 11 to JDK list

I need to build my application using Java 11. However the dropdown menu stops at Java 9. What do I do? OpenJDK …

java jenkins java-11
Is there a replacement for the garbage collection JVM args in Java 11?

In Java 11 a number of JVM args relating to GC logging are not supported anymore. What, if anything, can they …

java logging garbage-collection java-11
How to install oracle jdk11 in Alpine linux docker image?

My Dockerfile: FROM frolvlad/alpine-glibc:latest ADD jdk-11.0.6_linux-x64_bin.tar.gz /usr/java ENV JAVA_HOME=/usr/java/jdk-11.0.6 …

java docker segmentation-fault java-11 alpine
Can't compile with jdk 11 in IntelliJ, cannot find symbol

I set the JDK 11, it compiles until I use the new method of Java 11 isBlank() of a String when I …

java intellij-idea java-11
Migrate to Java 11 with gradle; UnsupportedOperationException

Trying to switch from jdk 10 to 11 and cannot figure out what library invoke this exception: Caused by: org.gradle.api.…

java gradle java-11
javax.annotation classes and Java 11 JDK

I am migrating from Java 8 to Java 11 and faced the problem. I should use: maven-compiler-plugin 2.5.1 with target 1.8 (compiling WAR in …

java maven java-11 maven-compiler-plugin