This tag can be used to mark question where user want some clarifications/explanation on java options like system variable or other java options.
Questions tagged [javaoptions]
25 questions
0
votes
0 answers
Is there a replacement for deprecated options -Xverify:none and -noverify that were deprecated in JDK 13?
The project I'm working on creates .class files that are not exactly the same as what produces JDK compiler. In particular, there's a part of the project that allows to programmatically create a .class file, and for testing, I take as input a…

Sybuser
- 735
- 10
- 27
0
votes
1 answer
how can JAVA_OPTIONS added in deployconfig in OpenshiftContainer
I am trying to add below JAVA_OPTIONS in deployconfig in OpenshiftContainer but is throwing syntax error .Could anyone help me how to add parameters in OpenshiftContainer…

Rose
- 89
- 5
- 18
0
votes
1 answer
AWS EBS Java Options update
How can I update default JVM options for AWS ElasticBeanstalk application (Spring Boot app)?
I have tried doing it with .ebextensions folder, however "JVM Options" parameter is "unrecognised" by the platform.
Another attempt I have tried was to use…

SergeZ
- 298
- 1
- 5
- 18
0
votes
4 answers
Android Studio error: Consider deleting _JAVA_OPTIONS
I am working on Kali Linux and wanted to get started with Android development and Flutter but I am getting this error after installing Android Studio:
The use of Java options environment variables detected. Such variables override IDE configuration…

Death111
- 33
- 1
- 5
0
votes
1 answer
Picked up _JAVA_OPTIONS: -Djava.net.preferIPv4Stack=true in NetBeans
Why always show,
Picked up _JAVA_OPTIONS: -Djava.net.preferIPv4Stack=true
Red colored line when I run every code in NetBeans.
How can I fix this issue?

Viraj Madhushan
- 69
- 2
- 11
0
votes
0 answers
Run java process to read/write only to one folder
How to run a java process to read/write only to one folder? Has the VM any option to do that?

beub
- 43
- 11
0
votes
0 answers
Remove option from JAVA_OPTIONS using sh script
So, I have some scripts that are used when I start my server.
I can access and edit some, but there are others that I can't access nor edit.
In my last script, I have the following lines :
JAVA_OPTIONS="${JAVA_OPTIONS} -Denv.name=DEV…

Ellone
- 3,644
- 12
- 40
- 72
0
votes
3 answers
Is this Good Code and Use of Java Option
Is this good code style and good use of Option?
This doesn't seem right because the method returns a Generics but the body does not make use of a Generics return. Also, 'smells' a bit bad because of the IF statement.
public Optional…

Adam Davies
- 2,742
- 4
- 33
- 52
0
votes
1 answer
Spark 2.1 with cluster mode ignores extraJavaOptions
We are running a HortonWorks Spark Distribution 2.1. We noticed that when we run Spark with yarn-cluster as master, whatever we pass as executors.extraJavaOptions is completely ignored, and the job maintains the default values in the executors (as…

Y.K.
- 397
- 3
- 16
-1
votes
2 answers
Is JAVA_OPTIONS boolean case sensitive?
I am trying to set JAVA_OPTIONS to my application
-Djava.net.preferIPv4Stack=true
Can I also set it as -Djava.net.preferIPv4Stack=True with the capital T? Does the case matter?

c_anirudh
- 375
- 1
- 22