How to set JVM parameter

Can someone please let me know how to set the JVM option in Linux?

I need to install this:

"- Dsun.security.ssl.allowUnsafeRenegotiation = true"

Thank!

+3


source to share


1 answer


Only at the beginning of the line java.



java -Dsun.security.ssl.allowUnsafeRenegotiation=true -cp foo.jar:bar.jar arg1 arg2

      

+2


source







All Articles