I have posted earilier about my legacy reverse-engineering project. There is no need to refer to that, because this question stands unto itself.
How does one ask the reverse-engineering engine to name classes/entities that are associated with a table other than a_bcd_ef -> aBcdEf?? I am not referring to changing the convention/strategy/method, but simply a renaming.
The goal is to rename VideoFeed to VideoFeedLegacy.
I tried adding the 'class' attribute with VideoFeedLegacy as the value.
Code:
<hibernate-reverse-engineering>
<table-filter match-name="video_feed"/>
<table name="video_feed">
</table>
</hibernate-reverse-engineering>
-H