java.security.properties in JNLP

自作多情 提交于 2019-12-24 14:52:27

问题


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:


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?



来源:https://stackoverflow.com/questions/34998336/java-security-properties-in-jnlp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!