さまざまなフィールドがどのように処理されるかを例を挙げて説明します。次のGame.java
POJOクラスは、game
へのオブジェクトマッピングを表します コレクションドキュメント。
public class Game {
String name;
List<Actions> actions;
public Game(String name, List<Actions> actions) {
this.name = name;
this.actions = actions;
}
public String getName() {
return name;
}
public List<Actions> getActions() {
return actions;
}
// other get/set methods, override, etc..
public static class Actions {
Integer id;
String type;
public Actions() {
}
public Actions(Integer id) {
this.id = id;
}
public Actions(Integer id, String type) {
this.id = id;
this.type = type;
}
public Integer getId() {
return id;
}
public String getType() {
return type;
}
// other methods
}
}
Actions
の場合 可能な組み合わせをコンストラクターに提供する必要があるクラス。 id
で適切なコンストラクターを使用します 、type
、など。たとえば、Game
を作成します。 オブジェクトを作成してデータベースに保存します:
Game.Actions actions= new Game.Actions(new Integer(1000));
Game g1 = new Game("G-1", Arrays.asList(actions));
repo.save(g1);
これはデータベースコレクションgame
に保存されます 次のように(mongo
からクエリ シェル):
{
"_id" : ObjectId("5eeafe2043f875621d1e447b"),
"name" : "G-1",
"actions" : [
{
"_id" : 1000
}
],
"_class" : "com.example.demo.Game"
}
Actions
に注意してください 配列。 id
のみを保存していたので Game.Actions
のフィールド オブジェクト、そのフィールドのみが保存されます。クラス内のすべてのフィールドを指定しても、値が指定されたフィールドのみが保持されます。
これらは、Game.Actions
を含むさらに2つのドキュメントです。 type
で作成 id + type
のみ 適切なコンストラクターの使用:
{
"_id" : ObjectId("5eeb02fe5b86147de7dd7484"),
"name" : "G-9",
"actions" : [
{
"type" : "type-x"
}
],
"_class" : "com.example.demo.Game"
}
{
"_id" : ObjectId("5eeb034d70a4b6360d5398cc"),
"name" : "G-11",
"actions" : [
{
"_id" : 2,
"type" : "type-y"
}
],
"_class" : "com.example.demo.Game"
}