Using JDO and Persistence, I'm able to successfully store an ArrayList field and retrieve it from a class later. Unfortunately, arrays like myobject[][][] are not supported, as stated in documentation. I tried ArrayList<ArrayList<myobject>>, but this gives many errors, and careful reading of the documentation would seem to suggest this may not be possible.
Is it possible to persist an array of two or more dimensions? If so, what is the most correct way to do this?