Configuration
Morphia 2.0 introduced a number of new ways to configure its behavior. These values are listed below:
- 
Collection naming 
- 
Property naming 
- 
The discriminator key 
- 
The discriminator value 
Collection and property naming
Traditionally Morphia has used with the class’s "simple name" for the collection name if you choose to not manually map the name of an entity’s collection.
Similarly, an entity’s properties were named after the Java field name unless mapped otherwise with the
@Property annotation.
In 2.0, however, we define naming strategies.
As of 2.0, the naming strategies supported out of the box are:
- 
identityThis is the legacy behavior Morphia has always used.
- 
lowerThis is simply the lower case form of theidentitystrategy.
- 
snakeThis transforms element names in to their snake case versions. For those coming from a Python background or who work with Python developers regularly, this should look familiar.
- 
camelThis transforms element names in to their camel case versions. This is the form most java developers will be familiar with.
- 
kebabThis transforms element names in to their kebab case versions. This looks exactly like thesnake casebut with-instead of_so that it looks like it’s on a kebab skewer.
These strategies can all be access via the NamingStrategy class via their named methods.
In the case where you have a custom naming strategy you’d like to employ, e.g., perhaps some hashing function to obscure element names, you can simply extend NamingStrategy
yourself and implement whatever logic you might need.
Discriminator keys and values
Morphia has long hard coded the choice of how to encode an entity’s type in to the resulting documents in the database using the
className key and the simple name of the class.
As of 2.0, you have a choice to change that if you’d like.
The new default is to use
_t as the discriminator property key.
This was chosen in part because of its use in other systems and also for its brevity.
By default, Morphia 2.0 stores the entity type unless you configure your types otherwise.
Similar to how collections and fields have a naming strategy, we can apply a global function to determine the discriminator values should we choose. The choices here are simpler:
- 
className()/lowerClassName()
- 
simpleName()/lowerSimpleName()These call all be accessed via their named methods on `DiscriminatorFunction` and just like the `NamingStrategy` cases if the provided options are not sufficient, you can implement your own by subclassing `DiscriminatorFunction` and implementing your own function. 
User-defined Codecs
Morphia makes heavy use of the driver’s Codec infrastructure.
All of the persistence of your entities is handled by Morphia-defined and -configured codecs.
Morphia also makes use of driver-defined codecs with a select number of replacements more attuned to Morphia’s needs.
This is typically sufficient for users' needs.
However, there are invariably times when more control is needed.
Starting with 2.3, you can provide your own CodecProvider to customize how Morphia handles the types you’re interested.
It’s not advised to write custom codecs for your entities (why mark them as entities at that point?) but if you’re comfortable taking that on, then it is, of course, your prerogative.
You can register your custom CodecProvider implementation via the
MapperOptions.Builder#codecProvider(org.bson.codecs
.configuration.CodecProvider)
method.
For details on how to write a Codec and a CodecProvider, please consult
the driver’s documentation.
Using your custom CodecProvider, you can supply as many Codec implementations as you need.
Old versus New
Morphia can be configured in one of two ways: the legacy mode and the modern mode.
Legacy
We’ll cover the legacy mode first as it reflects how Morphia worked prior to 2.0.  MapperOptions drives the configuration and so this is where we’ll start.
Prior to 2.0, you could simply create a MapperOptions instance directly.
Starting with 2.0, you will need to use one of the factory methods.
In this instance, you will want the legacy() method.
Among other things, this will configure Morphia to the legacy implementation of the Query class.
The legacy() builder currently configures the following settings:
- 
classNameas the discriminator key
- 
className()as theDiscriminatorFunction
- 
identity()as both the class and field name strategies
- 
Configures the legacy query implementation 
Modern
One of the big goals for 2.0 was to modernize both the API and behavior of Morphia.
As such, the builder() method returns a
Builder that applies some updated defaults:
- 
_tas the new discriminator key (replacingclassName)
- 
simpleName()as the discriminator function used to determine these values
- 
camelCase()is the default collection naming strategy
- 
identity()remains the property naming strategy
- 
A new Queryimplementation is configured enabling the newFiltersbased querying and disabling some older, deprecated methods.