I've got a application which provides access via java Apis. I wan't to map theses api to sorte of tables so I can use Hibernate. Is that possible ?
details :
I've got one database i can access whith jdbc, so with hibernate too, and elsewhere another database with a front end which I can access only by java apis ( no sql).
For any business transaction, I must write or read to both databases and synchronize the commits. I would like to map my first app to sort of tables, so that when I insert, delete or do whatever in these tables, hibernate calls the java apis underneath.
Does hibernate allows to do that ? If no, what other tools can I use ?
Thanks a lot
|