Re: Unserializable exceptions on declaring springs org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor

2011-01-04 Thread Roman Ilin
Nobody uses such weird thing? On Tue, Jan 4, 2011 at 12:44 AM, Roman Ilin roman.i...@gmail.com wrote: Sorry, I haven't said that I get unserializable exceptions in Provider for my table - list. public class UserDataProvider extends                CustomerAwareSortableDataProviderUser {  

Re: Unserializable exceptions on declaring springs org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor

2011-01-04 Thread Martin Sachs
hi, are u using Interface oder Class for UserDao i think using Interface could solve this problem. martin Am 04.01.2011 18:53, schrieb Roman Ilin: Nobody uses such weird thing? On Tue, Jan 4, 2011 at 12:44 AM, Roman Ilin roman.i...@gmail.com wrote: Sorry, I haven't said that I get

Re: Unserializable exceptions on declaring springs org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor

2011-01-04 Thread Igor Vaynberg
try launching your app with: -Dsun.io.serialization.extendedDebugInfo=true to see exactly what object is not serializable -igor On Tue, Jan 4, 2011 at 9:53 AM, Roman Ilin roman.i...@gmail.com wrote: Nobody uses such weird thing? On Tue, Jan 4, 2011 at 12:44 AM, Roman Ilin

Re: Unserializable exceptions on declaring springs org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor

2011-01-04 Thread Roman Ilin
@Martin: UserDao is an Interface. @Igor: thank you for good advice, I will use it ofter from now :) but I know that problem is the classes I mentioned erlier, because if I copy them into my project and add Serializable interface to them, exception desappears. But anyway here is error dump:

Re: Unserializable exceptions on declaring springs org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor

2011-01-04 Thread Igor Vaynberg
looks like spring aop is processing the proxy wicket generates? weird. -igor On Tue, Jan 4, 2011 at 10:20 AM, Roman Ilin roman.i...@gmail.com wrote: @Martin: UserDao is an Interface. @Igor: thank you for good advice, I will use it ofter from now :) but I know that problem is the classes I

Re: Unserializable exceptions on declaring springs org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor

2011-01-04 Thread Roman Ilin
Thank you Igor one more time. I found place where I load springs bean without @SpringBean. So exception gone away. No other web framework has such PREMIUM SUPPORT as wicket!!! On Tue, Jan 4, 2011 at 7:20 PM, Roman Ilin roman.i...@gmail.com wrote: @Martin: UserDao is an Interface. @Igor:

Re: Unserializable exceptions on declaring springs org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor

2011-01-03 Thread Jeremy Thomerson
On Mon, Jan 3, 2011 at 4:50 PM, Roman Ilin roman.i...@gmail.com wrote: Hi *, in wicket 1.4.15 spring 3.0.5 hibernate 3.6 application if defined springs PersistenceExceptionTranslationPostProcessor bean I get Unserializable exceptions in different spring classes

Re: Unserializable exceptions on declaring springs org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor

2011-01-03 Thread Roman Ilin
Sorry, I haven't said that I get unserializable exceptions in Provider for my table - list. public class UserDataProvider extends CustomerAwareSortableDataProviderUser { private final User findByExample; @SpringBean private UserDao userDao; public