The default MappingMongoConverter adds a custom type key ("_class") to each object in the database. So, if I create a Person:

package my.dto;
public class Person {
    String name;
    public Person(String name) {
        this.name = name; 
    }
}

and save it to the db:

MongoOperations ops = new MongoTemplate(new Mongo(), "users");
ops.insert(new Person("Joe"));

the resulting object in the mongo will be:

{ "_id" : ObjectId("4e2ca049744e664eba9d1e11"), "_class" : "my.dto.Person", "name" : "Joe" }

Questions:

  1. What are the implications of moving the Person class into a different namespace?

  2. Is it possible not to pollute the object with the "_class" key; without writing a unique converter just for the Person class?

link|improve this question

So what is the story with this? Is there no way to prevent the "_class" field from getting stored in MongoDB? – hodgesz Oct 29 '11 at 17:32
feedback

2 Answers

up vote 1 down vote accepted

So here's the story: we add the type by default as some kind of hint what class to instantiate actually. As you have to pipe in a type to read the document into via MongoTemplate anyway there are two possible options:

  1. You hand in a type the actual stored type can be assigned to. In that case we consider the stored type, use that for object creation. Classical example here is doing polymorphic queries. Suppose you have an abstract class Contact and your Person. You could then query for Contacts and we essentially have to determine a type to instantiate.
  2. If you - on the other hand - pass in a completely different type we'd simply marshal into that given type, not into the one stored in the document actually. That would cover your question what happens if you move the type.

You might be interested in watching this ticket which covers some kind of pluggable type mapping strategy to turn the type information into an actual type. This can serve simply space saving purposes as you might want to reduce a long qualified class name to a hash of a few letters. It would also allow more complex migration scenarios where you might find completely arbitrary type keys produced by another datastore client and bind those to Java types.

link|improve this answer
thank you for answering. Would it make sense to extract the type to a configuration; instead of keeping it with the object? For example, to provide the mapping in the code: (converter.configure(Contact.class, Person.class)). – Yuriy Nemtsov Jul 26 '11 at 20:02
Oliver, is there simple way to remove _class in 1.0GA? This doesn't work now. The simplest way it seems is: ((MappingMongoConverter)template.getConverter()).setTypeMapper(new DefaultMongoTypeMapper(null));. But it's ugly and wrong... – Shcheklein Jan 27 at 9:19
What do you mean by 'doesn't work'? No need to do the casting job if you configure the MappingMongoConverter correctly upfront through either code or XML configuration. – Oliver Gierke Jan 27 at 14:29
feedback

Oliver Thanks.It's work.Not problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.