could not persist data of format map<string,Arraylist> in jdo
问题 iam trying to persist a Hashmap data in JDO. initially i created a Hashmap like Map<Integer,String> dat=new HashMap<Integer,String>(); and this worked perfectly and i was able to save data., but when i tried Map<Integer, ArrayList<String>> dat=new HashMap<Integer,ArrayList<String>>(); i got an error like this data: java.util.ArrayList is not a supported property type. am i using a non supported data type ?? is there a better alternative ?? i am just doing this for learning purpose ...so your