Maurice Marrink wrote:
I believe refreshingview has better support for reusing items but in
our apps we hardly ever use refreshingview. both are suitable for use
with hibernate.

Maurice

On Thu, Mar 13, 2008 at 4:35 PM, carloc <[EMAIL PROTECTED]> wrote:
 What should I use when I am accessing hibernate?
 Should I use a ListView or should I use a refreshing view?\
 In the api it says to use refreshingview instead of using listview when
 using database collections
 what is better to use?



 carloc wrote:
 >
 > Hi everyone,
 >
 > I have been reading wicket in action recently and I have seen pitfalls of
 > hibernate section.
 > I was wondering about the stuff about hibernate and memory leaks due to
 > hibernate proxy objects maintaining a reference to the session with
 > them....
 >
 >
 > Am I doing this wrong then?
 > @SpringBean
 > private UserService userService;
 >
 > add(new ListView("user", userService.findUsers() {
 > })
 >
 > is this wrong? I'm using it directly meaning it will be stored in the page
 > store right?
 >
 > should i be doing this instead?
 >
 > LoadableDetachableModel model = new LoadableDetachablemodel() {
 >     Object load() {
 >        return usrService.findUsers()
 >    }
 >
 > }

please mind that you shouldn't create anonymous model classes as they keep the reference to the page/panel and you will fall into other memory issues.


--
Leszek Gawron                         http://www.mobilebox.pl/krs.html
CTO at MobileBox Ltd.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to