• 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:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Cluster environment

 
Ranch Hand
Posts: 580
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All

Is struts suitable for Cluster environemnt??

Is there any disadvantage for using struts in cluster environment??

Comments and good links if any are welcome....
 
Ranch Hand
Posts: 4864
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A Struts application is really nothing more than a framework or utility for creating J2EE web applications. Once the application has been created, it is no different than any other J2EE web application, and can be used in a clustered environment no differently than any other J2EE web application. The information you read in any documents about J2EE applications in a clustered environment including advantages, disadvantages, tricks, and traps will apply without modification to Struts applications.
[ September 01, 2006: Message edited by: Merrill Higginson ]
 
author and cow tipper
Posts: 5009
1
Hibernate Spring Tomcat Server
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The strength of your cluster will depend upon the implementation of your server, not your Struts application.

Sometimes, when developing locally, people write info to file on the local system, which can get out of sync in a cluster, but that's not a Struts specific issue.

Certainly, Struts will not have a negative effect on HttpSession management or Servlet request failover. There are plenty of Struts applications running in clustered WebSphere environments, that I can assure you.

Regards,

-Cameron
 
vidya sagar
Ranch Hand
Posts: 580
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Merrill and Kameron
reply
    Bookmark Topic Watch Topic
  • New Topic