Is it possible to mix orm.xml definitions with annotations when using JPA/hibernate ?
- by hatchetman82
I'm working on an application whihc supports using several DB vendors, with the table definitions being different for each DB type. The trouble is that the column definitions are not what hibernate expects, and so my entities contain a lot of @Column(..columnDefintion="..."...) annotations.
To further complicate the issue, there's no way to…