Obiekty osadzone MongoDB nie mają identyfikatora (wartość null)

Mam pytanie dotyczące MongoDB z Spring Data. Mam następujące klasy domen:

@Document
public class Deal  {
    @Id
    private ObjectId _id;
    private Location location;
    private User user;
    private String description;
    private String title;
    private String price;
    private boolean approved;
    private Date expirationDate;
    private Date publishedDate;
}

@Document
public class Location {
    @Id
    private ObjectId _id;
    private Double latitude;
    private Double longitude;
    private String country;
    private String street;
    private String zip;
}

@Document
public class User {
    @Id
    private ObjectId _id;
    private String email;
    private String password;
    private String profile_image_url;
    private Collection<Deal> deals = new ArrayList<Deal>();
}

Dzięki tym domenom mogę z powodzeniem CRUD. Jest tylko jeden problem. Podczas zapisywania użytkownika z ofertami, oferty i lokalizacja otrzymują _id ustawione na null podczas zapisywania ich w MongoDB. Dlaczego MongoDB nie może generować unikalnych identyfikatorów dla obiektów osadzonych?

Wynik po zapisaniu użytkownika za pomocą jednej transakcji:

{ "_id" : ObjectId( "4fed0591d17011868cf9c982" ),
  "_class" : "User",
  "email" : "[email protected]",
  "password" : "mimi",
  "deals" : [ 
    { "_id" : null,
      "location" : { "_id" : null,
        "latitude" : 2.22,
        "longitude" : 3.23445,
        "country" : "Denmark",
        "street" : "Denmark road 77",
        "zip" : "2933" },
      "description" : "The new Nexus 7 Tablet. A 7 inch tablet from Google.",
      "title" : "Nexus 7",
      "price" : "1300",
      "approved" : false,
      "expirationDate" : Date( 1343512800000 ),
      "publishedDate" : Date( 1340933521374 ) } ] }

Jak widać z wyniku, ID transakcji i lokalizacji jest ustawiony na NULL.

questionAnswers(4)

yourAnswerToTheQuestion