Hello,
i've implemented a servlet, that provides an applet with data from a server-side database via hibernate. The data is encapsulated in a bean, that was generated from my database with hibernate tools in eclipse. My problem is, that hibernate's lazy-fetching doesn't work on the applet-side. How can I solve this problem?
1. Do I have to provide the transfered object with all the data, so that lazy-fetching is not necessary?
2. Is there a way to realise lazy-fetching between applet und servlet (hibernate)?
Thanks in advance!
|