java.security.properties in JNLP

2019-08-11 09:10发布

I know you ca specify a file that is going to override the java.security f

java -Djava.security.properties=myProperties

How can I set this parameter in a JNLP file?

1条回答
Explosion°爆炸
2楼-- · 2019-08-11 09:48

Properties in JNLP file you can set using this tag:

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

But you can't set java.security.properties in JNLP. Not all properties are allowed to set in jnlp. For more info see here.

Why do you need to change this property?

查看更多
登录 后发表回答