• 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
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

ActionForm View ?

 
Ranch Hand
Posts: 392
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ActionForm is a bean along with reset() and validate() methods. Bean is a model but it's mentioned in all the books that ActionForm is a View component ?
 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
A JavaBean class is nothing more than a Java class that follows certain conventions (such as it needs to have a no-argument constructor, properties must be prefixed with get and set, etc). JavaBean classes can act as reusable components in all kinds of situations. For example, in the case of a Struts ActionForm, because the ActionForm is a JavaBean, the inputs in the HTML form can be easily mapped to the properties in the ActionForm.

So while a MVC/Struts model is often a bean, a bean is not necessarily a MVC/Struts model.
[ May 15, 2007: Message edited by: Jaap v Hengstum ]
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic