I’m trying to create a MongoDB database using Morphia, however when I create the Morphia Datastore, I get the following error: I’ve researched the cause of this exception and I understood that this is an issue concerning arrays, but I’m not using any arrays. This error is happening when I’m creating the Datastore. Here is some of my code. All
Tag: morphia
Can’t modify @Embedded List in Morphia
I have the following Entity: @Entity(“users”) public class UserModel { @Id private ObjectId id; private String userID; private String prefix; private List …