この質問は不完全なようです。
また、あなたの質問に対する答えは、MorphiaQuickStartページ にあるようです。 。次のように単純なようです。
Datastore ds = morphia.createDatastore("testDB");
String hotelId = ...; // the ID of the hotel we want to load
// and then map it to our Hotel object
Hotel hotel = ds.get(Hotel.class, hotelId);
したがって、間違いなく詳細が必要になります。