I'm running my Java app through command line without passing in any JVM settings (i.e. java -cp some.jar).
VisualVM shows the Java app allocated ~740M of Heap space.
Since I didn't pass in any JVM settings, how can I view what JVM settings my app is using?
jps -lvmonly shows explicit parameters being passed in. It's not showing whatXmxthe JVM has for the app.Xmxwhen launching my java app, is there a limit to how much heap the JVM will allocate?