Read the rules before posting!
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version: 3.0
Name and version of the database you are using: Oracle 9.2.1
Issue : I have a Database table called User. On the java side I have a user object which maps to this table ( User ) and its attributes.
I also have a UserList object which extends ArrayList and is coded to be a collection of User Objects. I would like to be able to send an instance of UserList object to session.save(instance of userList ) and have hibernate handle the entry of each object into the table.
Just for this very simple scenario, is this at all possible. Currently this is has no constraints applied on it except for its primary key need. I have tried using the User.hbm.xml and tried to use bag, array and set with out success.
UserList object does nto map to any table. Its purely a collection. Any suggestions or pointers would be appreciated.