DbOomManager
Types registration
Anytime when some types are specified in DbEntityManager
methods, they are examined and parsed and these results are stored internally in DbEntityManager
. This kind of registration is called types registration since only class information is registered. This means that more then one entity types may be mapped to single database table. In other words, this is one way mapping:
Entity → Table, Entity name
Entity registration
To use the full potential of DbOom, all entity classes should be registered as entities in the DbEntityManager
before the usage. Entity registration supersede the type registration: types and tables now becomes mapped in both ways:
Entity ↔ Table, Entity name
Now each table name is also uniquely registered with one and only one entity. While it is still possible to register more types to tables, it is not possible to register one table name to more then one entities. DbOomQuery
will throw exception if that happens.
Automatic registration
Since entities must be registered manually, there is nice way how all annotated classes on class path can be registered automatically. This is done by using AutomagicDbOomConfigurator
. It scans the class path and jar files (or part of it, as specified by user) and finds all classes annotated with @DbTable
. No class is loaded in class loader unless it contains correct bytecode.
AutomagicDbOomConfigurator
offers both way of registration.
Resolving entities
One of the benefits of entity registration is the feature of resolving the entities just from the result set meta data. In all DbOomQuery
examples, each method accepts explicit list of (entity) classes to which the result set will be mapped. Now it is possible to omit the list and let DbOomQuery
resolve classes by itself:
To some this feature is useful, others doesn't use since it is not so visible what is the target entity.
Last updated