缺少java.compiler系统属性

时间:2017-04-11 14:52:41

标签: java system-properties

我使用的是Java 8. According to the docs,系统属性java.compiler应该存在。然而,当我连基础课都跑步时,它不是。

import java.util.Comparator;
import java.util.Map;

public class SystemPropertiesPrinter {

    public static void main(String[] args) {
        Map<String, String> properties = (Map) System.getProperties(); // It's a pain to sort without this artificial cast
        properties.entrySet().stream()
                .sorted(Comparator.comparing(Map.Entry::getKey))
                .forEach(e -> System.out.printf("%-30s -> %s%n", e.getKey(), e.getValue()));
    }

}

我使用以下命令运行它:

java SystemPropertiesPrinter

结果如下:

awt.toolkit                    -> sun.awt.windows.WToolkit
file.encoding                  -> Cp1252
file.encoding.pkg              -> sun.io
file.separator                 -> \
java.awt.graphicsenv           -> sun.awt.Win32GraphicsEnvironment
java.awt.printerjob            -> sun.awt.windows.WPrinterJob
java.class.path                -> .
java.class.version             -> 52.0
java.endorsed.dirs             -> C:\Program Files\Java\jdk1.8.0_66\jre\lib\endorsed
java.ext.dirs                  -> C:\Program Files\Java\jdk1.8.0_66\jre\lib\ext;C:\Windows\Sun\Java\lib\ext
java.home                      -> C:\Program Files\Java\jdk1.8.0_66\jre
java.io.tmpdir                 -> C:\dev\cygwin64\tmp\
java.library.path              -> <edited out>
java.runtime.name              -> Java(TM) SE Runtime Environment
java.runtime.version           -> 1.8.0_66-b18
java.specification.name        -> Java Platform API Specification
java.specification.vendor      -> Oracle Corporation
java.specification.version     -> 1.8
java.vendor                    -> Oracle Corporation
java.vendor.url                -> http://java.oracle.com/
java.vendor.url.bug            -> http://bugreport.sun.com/bugreport/
java.version                   -> 1.8.0_66
java.vm.info                   -> mixed mode
java.vm.name                   -> Java HotSpot(TM) 64-Bit Server VM
java.vm.specification.name     -> Java Virtual Machine Specification
java.vm.specification.vendor   -> Oracle Corporation
java.vm.specification.version  -> 1.8
java.vm.vendor                 -> Oracle Corporation
java.vm.version                -> 25.66-b18
line.separator                 ->

os.arch                        -> amd64
os.name                        -> Windows 7
os.version                     -> 6.1
path.separator                 -> ;
sun.arch.data.model            -> 64
sun.boot.class.path            -> <edited out>
sun.boot.library.path          -> C:\Program Files\Java\jdk1.8.0_66\jre\bin
sun.cpu.endian                 -> little
sun.cpu.isalist                -> amd64
sun.desktop                    -> windows
sun.io.unicode.encoding        -> UnicodeLittle
sun.java.command               -> SystemPropertiesPrinter
sun.java.launcher              -> SUN_STANDARD
sun.jnu.encoding               -> Cp1252
sun.management.compiler        -> HotSpot 64-Bit Tiered Compilers
sun.os.patch.level             -> Service Pack 1
user.country                   -> GB
user.dir                       -> C:\Users\olivier\tmp
user.home                      -> C:\Users\olivier
user.language                  -> en
user.name                      -> olivier
user.script                    ->
user.timezone                  ->
user.variant                   ->

如您所见,我的列表中没有属性java.compiler。这是正常的吗?如果我们引用文档,那么它不应该存在,特别是因为它没有被标记为&#34; depecrated&#34 ;? This question声明此属性可以具有特定价值,但它没有提及它可能不存在。

4 个答案:

答案 0 :(得分:2)

  

根据文档,系统属性java.compiler应该存在

不,这不是医生所说的。

来自doc:

  

getProperty(String)方法使用的当前系统属性集将作为Properties对象返回。如果没有当前的系统属性集,则首先创建并初始化一组系统属性。这组系统属性始终包含以下键的值 [...]

文档说如果没有定义任何属性集,将生成一个新属性。 生成的将始终具有文档中列出的属性。并非所有集合都具有它们,只有该类生成的集合。如果系统已经设置了属性,则无法保证在其中找到所有这些键。

答案 1 :(得分:1)

我的理解是&#34; java.compiler&#34;是一个属性,您设置为告诉JVM使用特定的JIT编译器。如果未设置,则JVM使用(平台相关的)默认JIT编译器。

答案 2 :(得分:1)

java.compiler属性旨在由JVM的调用者设置以指定JIT实现。

在这里打开JDK谈论弃用此属性: https://bugs.openjdk.java.net/browse/JDK-8041676

API文件: “getProperty(String)方法使用的当前系统属性集将作为Properties对象返回。”

由于在启动JVM时指定NONE,因此它为空。

答案 3 :(得分:0)

如果您使用的是 Oracle 发布的 JVM,则属性键应为 sun.management.compiler。有关 Sun 的系统属性,请参阅 this link。或者您可以通过以下命令打印虚拟机设置

java -server -XshowSettings -version 2>&1   

后者是从 this post 学到的。