I'm working on an application that can be instanciated several times in the same computer, at the same time. Each JVM loads the applications classes in their own memory unnecessarely, since the classes are the same for all the applications.
I read about CDS here and here, but it seems to be valid only to the JDK classes.
How can I share my application classes' data between the JVMs?