Hi, What happen if you re-access the first page after and repress the button? Furthermore, are you using Facelets or JSP? I can see many reasons:
1. First access mean JSP compilation, so 5 seconds would be understandable on first access 2. What is the action doing in 3 lines of code? If it access the database (it's possible in 3 lines after all) you may have an overhaul there as well. 3. What is the scope of the managed bean and are you injecting anything in it? Regards, ~ Simon On Tue, Sep 23, 2008 at 10:27 AM, jhomuth <[EMAIL PROTECTED]>wrote: > Hi List, > > if started two weeks ago developing with MyFaces and Apache Tiles. > Furthermore I use the Tomahawk UI Library. I was wondering about the > performance of my web-app. It is really really slow. > I develop on an Quad Core Pc with 4GB RAM and I think thats not the reason > why it is so slow. > > A little example of one of requests. > > 1. User selects something in a "selectOneMenu" > 2. After that the user pushes a "GO" Button which calls an Action in a > managed bean. > 3. The Code in that action method will be called. (only 3 Lines of Code) > 4. The outcome String will be returned from that method and the other view > is renderd. > > And that takes over 5 seconds (sometimes little bit quicker) > > Do anyone know about big performance issues and if how i can fix that? > > Thx for suggestions > >

