Hi Friends, I am bit confuse about the JVM. First I want to know that Is each java programme (process) run in separate JVM or in the same JVM
e.g I am running two projects called ABC and DEF and both of them are starting with their own main method. First project have the class Test1(main Class) and the second project have the Test2(main class). Now I am trying to access some information of First project by starting the second project say Hashtable size, but when I am querying the size of Hashtable(of First project) in second project then its size is showing zero though before starting the first project I have added four element to the Hashtable. Can any one describe me why it is happening. What I am thinking that all the java process runs in their own JVM. Am I right! If Yes then how can I run two different java process into the same JVM. Thanks in anticipation.