Hi All,
I am parsing Hibernate/Mapping files say "User.hbm.xml"
I want to get the collections( many-to many or one to many) and also the properties belonging to this domain object.
I am using the Configuration object to get this information.
The code is as follows: -
Configuration cfg = new Configuration();
cfg.configure();
To read the collections, I am using
cfg.getCollectionMappings();
If there is many-to many collection present, I just get the collection table name, but I do not get the columns in the table, i.e I do not get the foreign keys of the table.
Does any one has any idea of how to do it?
Thanks,
Asawari
Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:
Mapping documents:
Code between sessionFactory.openSession() and session.close():
Full stack trace of any exception that occurs:
Name and version of the database you are using:
The generated SQL (show_sql=true):
Debug level Hibernate log excerpt:
Problems with Session and transaction handling?
Read this:
http://hibernate.org/42.html