Re: Wicket 7 - OutOfMemory PermGen

2015-11-18 Thread Francois Meillet
and the abcUserSearchTO ? François Le 18 nov. 2015 à 17:40, Mihir Chhaya a écrit : > Here is SearchDealerPage. > > package gov.xyz.abc.view.asm; > > import gov.xyz.abc.business.AsmAdminService; > import gov.xyz.abc.common.AppSession; > import

Re: Wicket 7 - OutOfMemory PermGen

2015-11-18 Thread Mihir Chhaya
Here is SearchDealerPage. package gov.xyz.abc.view.asm; import gov.xyz.abc.business.AsmAdminService; import gov.xyz.abc.common.AppSession; import gov.xyz.abc.common.AuthenticatedPage; import gov.xyz.abc.common.DealerDetails; import gov.xyz.abc.common.abcException; import

Re: Wicket 7 - OutOfMemory PermGen

2015-11-18 Thread Mihir Chhaya
Following are AbcUserSearchTO and AbcUser classes with DomainObject implementation. public interface DomainObject extends Serializable { Long getId(); } public class AbcUserSearchTO implements DomainObject { /** * */ private static final long serialVersionUID = 1L; /* (non-Javadoc) * @see

Re: Wicket 7 - OutOfMemory PermGen

2015-11-18 Thread Martin Grigorov
Hi, Do you use 7.0.0? Because there was a problem - https://issues.apache.org/jira/browse/WICKET-5978 It is fixed in 7.1.0 Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Nov 18, 2015 at 5:25 PM, Mihir Chhaya wrote: > Hello, > > I

Re: Wicket 7 - OutOfMemory PermGen

2015-11-18 Thread Mihir Chhaya
First, Thanks Francois for your quick looking into this. The SearchDealerPage is created as below. The link is menu option. BookmarkablePageLink dealerInquiryLink = new BookmarkablePageLink("dealerInquiryLink", SearchDealerPage.class, searchPageParameters); Thanks, -Mihir. On Wed, Nov 18,

Re: Wicket 7 - OutOfMemory PermGen

2015-11-18 Thread Mihir Chhaya
Martin, Yes. I am using Wicket 7.00. On Wed, Nov 18, 2015 at 11:55 AM, Mihir Chhaya wrote: > First, Thanks Francois for your quick looking into this. > > The SearchDealerPage is created as below. The link is menu option. > > BookmarkablePageLink dealerInquiryLink = new >

Re: Wicket 7 - OutOfMemory PermGen

2015-11-18 Thread Francois Meillet
Sorry, it's seems that there is a problem when you instanciate the SearchDealerPage instance How you instanciate it ? François Le 18 nov. 2015 à 17:46, Mihir Chhaya a écrit : > Following are AbcUserSearchTO and AbcUser classes with DomainObject >

Re: Wicket 7 - OutOfMemory PermGen

2015-11-18 Thread Christos Stieglitz
Just in case: i recently had exactly the same problem. It turned out that it is not related to Wicket at all. Do you use a Java8 JDK? Do you compile for Java7? The PermGen Exception happens at random times [*], always at the same line in the code. Hence you assume you have some faulty code

Wicket 7 - OutOfMemory PermGen

2015-11-18 Thread Mihir Chhaya
Hello, I am using Wicket 7 + Spring 4.x + Hibernate 4.x (recently migrated from Wicket 1.4). Since deployment of the app on JBOSS, the application is crashing with OutOfMemory error for PermGen. We are at the point of rolling back to 1.4 as application was working fine without such issue;

Re: Wicket 7 - OutOfMemory PermGen

2015-11-18 Thread Francois Meillet
Could you show us the SearchDealerPage code François Le 18 nov. 2015 à 17:25, Mihir Chhaya a écrit : > Hello, > > I am using Wicket 7 + Spring 4.x + Hibernate 4.x (recently migrated from > Wicket 1.4). > > Since deployment of the app on JBOSS, the application

Re: Wicket 7 - OutOfMemory PermGen

2015-11-18 Thread Mihir Chhaya
Thanks, Christos. That is not the case though; we have Java 7 JDE from IDE to Application server. On Wed, Nov 18, 2015 at 12:43 PM, Christos Stieglitz wrote: > Just in case: > i recently had exactly the same problem. It turned out that it is not > related to Wicket at all. >