java.security.properties 在 JNLP 中

java.security.properties in JNLP

我知道你可以指定一个文件来覆盖 java.security f

java -Djava.security.properties=myProperties

如何在 JNLP 文件中设置此参数?

您可以使用此标签设置的 JNLP 文件中的属性:

<property name="key" value="overwritten"/>

但是你不能在 JNLP 中设置 java.security.properties。并非所有属性都允许在 jnlp 中设置。有关详细信息,请参阅 here

为什么需要更改此 属性?