Hi there,
I have a pojo annotated like this:
And I am using MongoTemplate to insert into mongo. If I insert without specifying a collection name, everything works fine. However, if I specify a collection name, none of the indexes are created except for the _id one.
I really need to be able to specify the collection name manually because:
Do I have to call ensureIndex() myself manually? If so, is there a way to do it that uses my @Indexed annotations? The actual objects I am trying to save are a lot more complex than 'Car'
I have a pojo annotated like this:
Code:
@Document
class Car {
@Id
String id ;
@Indexed
String manufacturer ;
}
I really need to be able to specify the collection name manually because:
- I need to ensure different subclasses of Car end up in the same collection
- I would like to store each year's worth of Cars in a separate collection
Do I have to call ensureIndex() myself manually? If so, is there a way to do it that uses my @Indexed annotations? The actual objects I am trying to save are a lot more complex than 'Car'