how do you implement OpenEntityManagerInView for JEE applications?

2009-07-25 Thread Vladimir Kovalyuk
I came to Wicket from JSF where I used Seam for managing persistence contexts. Actually the latest stable version of Seam is incompatible with Wicket 1.4, and I realized that the project uses just three things from Seam. One of the critical things is Seam-managed persistence context. When you

Re: how do you implement OpenEntityManagerInView for JEE applications?

2009-07-25 Thread Martijn Dashorst
two solutions come to mind: 1. openEMinViewFilter (see Spring source for such an implementation) 2. custom requestcycle that does this for you (search the list, the wiki, or see Wicket in Action chapter 13) Martijn On Sat, Jul 25, 2009 at 10:37 AM, Vladimir Kovalyukkoval...@gmail.com wrote: I