If I pass an object of type HibernateProxy to the Session for saving. Will it be able to save the object to database.
Will HibernateProxy be helpful for me. If so please let me know, how I need to use it. Is there a demo project using this?
[color=blue]I am using proxy objects, dynamic proxy objects, maps in my project. Does hibernate provide any API to persist these in the DB tables
Say for example
The proxy object has two fields, userID and userName. I need to persist these two in the User table which has exactly 2 columns userID and userName.
Or instead I have a map that has these two values. Can I persist the map directly to the user table in database using Hibernate API.
I don
|