• 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

Validator with Struts 1.0

 
Ranch Hand
Posts: 180
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi All,

I have an application which was coded in Struts 1.0 and no validator framework was used then.Now its been asked to use validator in the application.I dont have much knowledge on how Validator was used with Struts 1.0.Forward upgradation is not possible to 1.1 is not possible.Please help as how validator is supposed to be used with 1.0
 
Ranch Hand
Posts: 948
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am pretty sure that the Validator framework was added to Struts with the 1.1 release. If that is the case then you could try to integrate the framework yourself, but it seems easier to just implement validation in the validate method on the forms. You can create validation methods in a utility class. In some ways I find this much easier than the Validator framework. Do you need client-side validation?

- Brent
reply
    Bookmark Topic Watch Topic
  • New Topic