Considering the following command line
java -Xms128m -Xms256m myapp.jar
Which settings will apply for JVM Minimum memory (Xms option) : 128m or 256m ?
|
Considering the following command line
Which settings will apply for JVM Minimum memory (
| |||||
feedback
|
|
Depends on the JVM, perhaps the version...perhaps even how many paper clips you have on your desk at the time. It might not even work. Don't do that. If it's out of your control for some reason, compile and run this the same way you'd run your jar. But be warned, relying on the order of the options is a really bad idea.
| |||
feedback
|
|
The IBM JVM treats the rightmost instance of an argument as the winner. I can't speak to HotSpot, etc.. We do this as there are often deeply nested command lines from batch files where people can only add to the end, and want to make that the winner. | |||
|
feedback
|
|
I bet it's the second one. Arguments are usually processed in the order:
But if I were writing java argument parser, I'd complain on conflicting arguments. | |||
|
feedback
|
|
There is a wrongly typed question java -Xms128m -Xms256m myapp.jar this is supposed to be java -Xms128m -Xmx256m myapp.jar Then the following line explains your query The heap size may be configured with the following VM options:
Which settings will apply for JVM Minimum memory (Xms option) : 128m or 256m ? 256 Mb would be your maximum Memory 128 Mb would be initial set Memory. Along with this, if you want to determine programmatically you can use the following Sample code
| |||||
feedback
|