Use conflict-free entity names for entities added by the database-polling coordination strategy

Description

Names such as Agent will pollute the entity name namespace of user applications, potentially creating conflicts with user entities.

We need to use prefixes for entity names, not just table names.

The problem is, setting <class entity-name="foo" ...> in hbm.xml will change the native (non-JPA) entity name, after which all entity operations (persist, load, …) must pass the entity name explicitly, because Hibernate ORM can no longer guess it from the class name. That may be easy, though; we just have to try.

I started a branch here:

Activity

Show:

Yoann RodièreOctober 29, 2021 at 12:36 PM

One idea would be to set the entity name explicitly to… the class name. That would override the JPA entity name, which is our main concern in this case, while leaving the native entity name identical, in which case hopefully all entity operations (persist, load, …) will still work the same.

Fixed

Details

Assignee

Reporter

Components

Sprint

Fix versions

Priority

Created October 29, 2021 at 12:28 PM
Updated July 22, 2022 at 6:33 AM
Resolved November 15, 2021 at 9:59 AM