vladmihalcea / hypersistence-optimizer

Hypersistence Optimizer allows you to get the most out of JPA and Hibernate. By scanning your application configuration and mappings, Hypersistence Optimizer can tell you what changes you need to do to speed up your data access layer.
https://vladmihalcea.com/hypersistence-optimizer/
Apache License 2.0
306 stars 43 forks source link

Remove the entityName attribute from the EntityMappingEvent #151

Closed vladmihalcea closed 3 years ago

vladmihalcea commented 3 years ago

The entityName attribute provided by the Hibernate EntityPersister is basically just the fully-qualified entity class name, and not the JPA entity name provided via the @Entity annotation.

For this reason, the entityClass was added to replace the entityName attribute. This task removes this attribute, and the getter will be removed by #150.

vladmihalcea commented 3 years ago

Fixed.