3 Mapping Domain Classes to Mongo Collections - Reference Documentation
Authors: Graeme Rocher, Burt Beckwith
Version: 1.1.0.GA
Table of Contents
3 Mapping Domain Classes to Mongo Collections
Basic Mapping
The way GORM for Mongo works is to map each domain class to a Mongo collection. For example given a domain class such as:class Person {
String firstName
String lastName
static hasMany = [pets:Pet]
}Embedded Documents
It is quite common in Mongo to embed documents within documents (nested documents). This can be done with GORM embedded types:class Person {
String firstName
String lastName
Address address
static embedded = ['address']
}class Person {
String firstName
String lastName
Address address
List otherAddresses
static embedded = ['address', 'otherAddresses']
}Basic Collection Types
You can also map lists and maps of basic types (such as strings) simply by defining the appropriate collection type:class Person {
List<String> friends
Map pets
}...new Person(friends:['Fred', 'Bob'], pets:[chuck:"Dog", eddie:'Parrot']).save(flush:true)Customized Collection and Database Mapping
You may wish to customize how a domain class maps onto aDBCollection. This is possible using the mapping block as follows:class Person {
..
static mapping = {
collection "mycollection"
database "mydb"
}
}Person entity has been mapped to a collection called "mycollection" in a database called "mydb".You can also control how an individual property maps onto a Mongo Document field (the default is to use the property name itself):class Person {
..
static mapping = {
firstName attr:"first_name"
}
}DBRefs.If you prefer not to use DBRefs then you tell GORM to use direct links by using the reference:false mapping:class Person {
..
static mapping = {
address reference:false
}
}3.1 Identity Generation
By default in GORM entities are supplied with an integer-based identifier. So for example the following entity:class Person {}id of type java.lang.Long. In this case GORM for Mongo will generate a sequence based identifier using the technique described in the Mongo documentation on Atomic operations.However, sequence based integer identifiers are not ideal for environments that require sharding (one of the nicer features of Mongo). Hence it is generally advised to use either String based ids:class Person {
String id
}import org.bson.types.ObjectIdclass Person {
ObjectId id
}ObjectId instances are generated in a similar fashion to UUIDs.
3.2 Indexing Queries
Basics
Mongo doesn't require that you specify indices to query, but like a relational database without specifying indices your queries will be significantly slower.With that in mind it is important to specify the properties you plan to query using the mapping block:class Person {
String name
static mapping = {
name index:true
}
}indexAttributes configuration parameter:class Person {
String name
static mapping = {
name index:true, indexAttributes: [unique:true, dropDups:true]
}
}hint argument to any dynamic finder:def people = Person.findByName("Bob", [hint:[name:1]])Person.withCriteria {
eq 'firstName', 'Bob'
arguments hint:["firstName":1]
}Compound Indices
MongoDB supports the notion of compound keys. GORM for MongoDB enables this feature at the mapping level using thecompoundIndex mapping:class Person {
…
static mapping = {
compoundIndex name:1, age:-1
}
}3.3 Customizing the WriteConcern
A feature of Mongo is its ability to customize how important a database write is to the user. The Java client models this as a WriteConcern and there are various options that indicate whether the client cares about server or network errors, or whether the data has been successfully written or not.If you wish to customize theWriteConcern for a domain class you can do so in the mapping block:import com.mongodb.WriteConcernclass Person { String name static mapping = { writeConcern WriteConcern.FSYNC_SAFE } }
3.4 Dynamic Attributes
Unlike a relational database, Mongo allows for "schemaless" persistence where there are no limits to the number of attributes a particular document can have. A GORM domain class on the other hand has a schema in that there are a fixed number of properties. For example consider the following domain class:class Plant {
boolean goesInPatch
String name
}name and goesInPatch, that will be persisted into the Mongo document. Using GORM for Mongo you can however use dynamic properties via the Groovy subscript operator. For example:def p = new Plant(name:"Pineapple") p['color'] = 'Yellow' p['hasLeaves'] = true p.save()p = Plant.findByName("Pineapple")println p['color'] println p['hasLeaves']
DBObject instance that gets persisted to the Mongo allowing for more dynamic domain models.
3.5 Geospacial Querying
It is possible to use Mongo's Geospacial querying capability by mapping a list or map property using thegeoIndex mapping:class Hotel {
String name
List location static mapping = {
location geoIndex:true
}
}indexAttributesclass Hotel {
String name
List location static mapping = {
location geoIndex:true, indexAttributes:[min:-500, max:500]
}
}new Hotel(name:"Hilton", location:[50, 50]).save()
new Hotel(name:"Hilton", location:[lat: 40.739037d, long: 73.992964d]).save()
You must specify whether the number of a floating point or double by adding a 'd' or 'f' at the end of the number eg. 40.739037d. Groovy's default type for decimal numbers is BigDecimal which is not supported by MongoDB.
Once you have your data indexed you can use Mongo specific dynamic finders to find hotels near a given a location:def h = Hotel.findByLocationNear([50, 60]) assert h.name == 'Hilton'
def box = [[40.73083d, -73.99756d], [40.741404d, -73.988135d]] def h = Hotel.findByLocationWithinBox(box)
def center = [50, 50] def radius = 10 def h = Hotel.findByLocationWithinCircle([center, radius])
class Hotel {
String name
List location
int stars static mapping = {
compoundIndex location:"2d", stars:1
}
}Hotel has.
3.6 Custom User Types
GORM for MongoDB will persist all common known Java types like String, Integer, URL etc., however if you want to persist one of your own classes that is not a domain class you can implement a custom user type. For example consider the following class:class Birthday implements Comparable{ Date date Birthday(Date date) { this.date = date } @Override int compareTo(Object t) { date.compareTo(t.date) } }
Custom types should go in src/groovy not grails-app/domainIf you attempt to reference this class from a domain class it will not automatically be persisted for you. However you can create a custom type implementation and register it with Spring. For example:
import com.mongodb.BasicDBObject; import com.mongodb.DBObject; import org.grails.datastore.mapping.engine.types.AbstractMappingAwareCustomTypeMarshaller; import org.grails.datastore.mapping.model.PersistentProperty; import org.grails.datastore.mapping.mongo.query.MongoQuery; import org.grails.datastore.mapping.query.Query;class BirthdayType extends AbstractMappingAwareCustomTypeMarshaller<Birthday, DBObject, DBObject> { BirthdayType() { super(Birthday) } @Override protected Object writeInternal(PersistentProperty property, String key, Birthday value, DBObject nativeTarget) { final converted = value.date.time nativeTarget.put(key, converted) return converted } @Override protected void queryInternal(PersistentProperty property, String key, Query.PropertyCriterion criterion, DBObject nativeQuery) { if(criterion instanceof Between) { def dbo = new BasicDBObject() dbo.put(MongoQuery.MONGO_GTE_OPERATOR, criterion.getFrom().date.time); dbo.put(MongoQuery.MONGO_LTE_OPERATOR, criterion.getTo().date.time); nativeQuery.put(key, dbo) } else { nativeQuery.put(key, criterion.value.date.time) } } @Override protected Birthday readInternal(PersistentProperty property, String key, DBObject nativeSource) { final num = nativeSource.get(key) if(num instanceof Long) { return new Birthday(new Date(num)) } return null } }
BirthdayType class is a custom user type implementation for MongoDB for the Birthday class. It provides implementations for three methods: readInternal, writeInternal and the optional queryInternal. If you do not implement queryInternal your custom type can be persisted but not queried.The writeInternal method gets passed the property, the key to store it under, the value and the native DBObject where the custom type is to be stored:@Override protected Object writeInternal(PersistentProperty property, String key, Birthday value, DBObject nativeTarget) { final converted = value.date.time nativeTarget.put(key, converted) return converted }
DBObject. The readInternal method gets passed the PersistentProperty, the key the user type info is stored under (although you may want to use multiple keys) and the DBObject:@Override protected Birthday readInternal(PersistentProperty property, String key, DBObject nativeSource) { final num = nativeSource.get(key) if(num instanceof Long) { return new Birthday(new Date(num)) } return null }
DBObject. Finally the queryInternal method allows you to handle how a custom type is queried:@Override protected void queryInternal(PersistentProperty property, String key, Query.PropertyCriterion criterion, DBObject nativeQuery) { if(criterion instanceof Between) { def dbo = new BasicDBObject() dbo.put(MongoQuery.MONGO_GTE_OPERATOR, criterion.getFrom().date.time); dbo.put(MongoQuery.MONGO_LTE_OPERATOR, criterion.getTo().date.time); nativeQuery.put(key, dbo) } else if(criterion instanceof Equals){ nativeQuery.put(key, criterion.value.date.time) } else { throw new RuntimeException("unsupported query type for property $property") } }
criterion which is the type of query and depending on the type of query you may handle the query differently. For example the above implementation supports between and equals style queries. So the following 2 queries will work:Person.findByBirthday(new Birthday(new Date()-7)) // find someone who was born 7 days ago Person.findByBirthdayBetween(new Birthday(new Date()-7), new Birthday(new Date())) // find someone who was born in the last 7 days
BirthdayType add the following to grails-app/conf/spring/resources.groovy:import com.example.BirthdayType// Place your Spring DSL code here
beans = {
birthdayType(BirthdayType)
}