Running multiple JVMs

后端 未结 9 1191
渐次进展
渐次进展 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条回答
  •  猫巷女王i
    2020-12-05 16:39

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

    RMI is how this is generally done. I also want to do the same thing but with out RMI. Easy way to get past the 1.5g ceiling on 32bit JVM's which on windows are the only ones that can play video (JMF + Fobs, VLCJ, GStreamer all fail with Oracles 64bit JVM, Harmony isnt ready yet, gave it a shot, wasn't pretty). Figured the video could run in another JVM and somehow share the objects probably via some JNI.

提交回复
热议问题