Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
...如果没有等价物,我应该如何在 Morphia 数据存储中组织我的数据?
您可以使用 AdvancedDatastore 界面更改集合的名称。例如:
advancedDatastore.save("collectionNameYouPrefer", yourMorphiaObject);
上面的代码会将您的MorphiaObject 保存到名为“collectionNameYouPrefer”的集合中。
你有你的@Entity类,它定义了你的集合,而实例就是你的文档。
@Entity
还是我误解了你的问题?