JDK11 引起的java.specification.version 有关的 NullPointerException

 

郁闷, 莫名其妙就是启动不了了, 之前好好的:


java.lang.NullPointerException: null
at org.apache.commons.lang3.SystemUtils.isJavaVersionAtLeast(SystemUtils.java:1654) ~[commons-lang3-3.7.jar:3.7]
at org.apache.commons.lang3.ClassUtils.isAssignable(ClassUtils.java:760) ~[commons-lang3-3.7.jar:3.7]

查看源码是:

JDK11 引起的java.specification.version 有关的 NullPointerException

 

 

也就是JAVA_SPECIFICATION_VERSION_AS_ENUM  为null, 它来源是:

public static final String JAVA_SPECIFICATION_VERSION = getSystemProperty("java.specification.version");
private static final JavaVersion JAVA_SPECIFICATION_VERSION_AS_ENUM = JavaVersion.get(JAVA_SPECIFICATION_VERSION);

 

感觉跟jdk 版本有关, 可能是 jdk11 默认没有"java.specification.version" 这个参数吧:

JDK11 引起的java.specification.version 有关的 NullPointerException

 

 

果然,改完,立即就没有了那个npe!

 

我去,jdk11 竟然有这么低级的bug

上一篇:Linux下sudo命令无法使用及报sudoers.d下某文件语法错误


下一篇:FIR Compiler IP核 使用教程(源码)