• 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

field-validator type="date" works fine but got ognl.MethodFailedException

 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all
i am using field-validator type="date" to validate the birth date field in my form.
in my action, i declared the birthday variable as



and the getter and setter method



everything seems normal and i do it like the many examples of date validator.

the jsp has the s:textfield of birthday

<s:textfield name="birthday" value="" id="birthday"/>

everything works fine. but i always get the exception:



i know that struts 2 parses birthday as a String, but i created birthday as a Date ,which caused this exception.
but i created birthday as a Date for the purpose of using date validator.

how can i get ride of this exception.

Thanks
Heng


 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic