I'm currently stuck with what seems to be a very simple problem, but I just can't seem to find a way around:
I have 2 identical tables:
- tbl_creditcard_approved_txns
- tbl_creditcard_declined_txns
The fields in both are identical, and I have one class - Transaction
that is used to represent all the appropriate fields in the tables.
I'm trying to map two different entities (one for each table) to the above class. In the old world, I'd have created two hbm.xml
files, one for each table and map both of them to Transaction
. I'd then use the entity name during persistence to ensure that the object gets persisted in the correct table, depending on the circumstance.
I am trying to use annotations currently to achieve the same but have had no luck so far in mapping the 2 entities to a single class. Is this possible at all?
I'm currently using a different approach in that I've extracted all the common fields (identical column names) into an @MappedSuperClass
and have created two separate classes (one for each entity) that extend from the super class (these classes just have the same fields with different column names, where applicable).