• 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
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Is struts good or bad?

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have only been working with struts for a couple months, and it does seem useful although some of the implementations of logic seem constricting. Example, why can you only have one form bean for a action? How for instance would you submit one small set of data to a action, and then have that action post to a jsp that gathers different data? I have to have the same FormBean hold the data for both pages even though the data from the first page is not needed after the second page?? One other question.... Does tiles, or struts have any support for framesets, other then what basic HTML gives you?
 
author
Posts: 11962
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, the common way of implementing workflows with Struts is by using a single FormBean for multiple HTML forms.
 
reply
    Bookmark Topic Watch Topic
  • New Topic