pabhb
pabhb

Reputation: 49

How to set JVM parameter

Can somebody please let me know how do I set a JVM parameter in linux?

I need to set this one:

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

Thanks!

Upvotes: 3

Views: 884

Answers (1)

Adam
Adam

Reputation: 36703

Just at the beginning of the java line.

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

Upvotes: 2

Related Questions