I am having one thread groups in my j-meter test plan and I want to pre-initialize two map. like
java.util.HashMap myMap1 = new java.util.HashMap();
myMap1.put("foo1","bar1");
myMap1.put("foo2","bar2");
java.util.HashMap myMap2 = new java.util.HashMap();
myMap2.put("mykey",myMap1);
and I have to use it for different threads.Can anyone help me to sort out this problem?