'Can I view the mapping for a GORM Entity programatically?
I'm using reflection to see the database tables/columns and want to compare them to the GORM entities to make sure entities are in sync with the db tables. Some of the entity property names are not the same as their corresponding db columns (see code below), and are mapped using the static mapping attributes. Is there a way to view these column names using the entity class object or through Groovy reflection?
@Entity
class MyEntity implements GormEntity<MyEntity>, MultiTenant<MyEntity> {
Long id
Long otherEntityId
OtherEntity otherEntity
Integer version
static graphql = true
static mapping = {
otherEntityId column: 'cur_ent_id', fetch: 'join'
otherEntity column: 'cur_ent_id', insertable:false, updateable:false
}
}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|