Robospice storing object that extends ArrayList in database via Ormlite
问题 Background I have been trying to modify the Robospice Ormlite example code, which I have been successful to run. The only changes I have made is that I have a JSON response that contains an array of objects. I created 2 classes: public class Foos extends ArrayList<Foo> public class Foo I had initial problems, as my JSON response is a pure array with no outer container. I read via google groups that the way to solve this is to create a "fake" class (Foos) that extends an ArrayList. This