| Hibernate use qualified class name as entity's name. However JPA use unqualified class name as entity's name. Before version 5.2, I can transform them by entity class. From version 5.2, class meta data is deprecated in hibernate, we can only get jpa's meta model which using unqualified class name by public api. However, other hibernate module and hibernate core internal still use old qualified entity name. We are unable to get this qualified entity name from hibernate public api now. But with other hibernate module, we still need them. We need a api to transform the jpa entity name to hibernate entity name. |