Running multiple JVMs

后端 未结 9 1195
渐次进展
渐次进展 2020-12-05 16:10

How do you run multiple JVMs on a single machine? How do you call methods in a different JVM?

9条回答
  •  不知归路
    2020-12-05 16:46

    Hey, I think you might be confused with how to run JVM. each execution of java.exe or javaw.exe will create a new instance of JVM for you. if you run two programs using two java.exe commands then you have two JVM's running

提交回复
热议问题