• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Tuning JSP

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How do i tune large jsp s in Weblogic 7 .... ??
Weblogic documentation doesnot spk much abt it .... is redirection from one jsp to another before a EJB call costly if yes please explain how?? and why
 
Author
Posts: 65
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm not sure there's a clear answer to your question. Whether the time taken to redirect to another JSP is relevant probably depends on what else is going on in the same request. My guess would be that if there are internet clients, EJB calls, and database access going on, there's probably enough overhead already that another JSP call wouldn't be a huge hit. But it depends on a number of factors, including (to name a few) the load on the server, the arrangement of app server(s) and database on the network, whether the clients are on a LAN or crossing the internet, and so on. I'd try it both ways, run a couple test, and see if you see a noticeable difference.
 
reply
    Bookmark Topic Watch Topic
  • New Topic