Java.security.properties in JNLP

I know that you will specify a file that will override java.security f

java -Djava.security.properties=myProperties 

How to set this parameter in a JNLP file?

+1
source share
1 answer

Properties in the JNLP file that you can set using this tag:

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

But you cannot install java.security.properties in JNLP. Not all properties are allowed to be installed in jnlp. For more information see here .

Why do you need to change this property?

0
source

All Articles