This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
What is the best way to bind an input form on a web page to a primitive type in an object? Say you have an input form where someone types in an age, and that age is stored as an int in my object. If I type a value in the form field, it binds correctly to the int field in my object.
However, if I leave my form field blank and press submit, it complains that it cannot convert string to int.
Is the way to handle this by providing a custom property editor, or is the preferred way to manually get that form parameter from the HttpServletRequest and populate the object?
Thanks for the help Brian
Ken Krebs
Ranch Hand
Joined: Nov 27, 2002
Posts: 451
posted
0
Brian,
Typically, you would associate an implementaion of the Spring Validator interface with your controller which you can then use to provide a more appropriate error message. Take a look at the Petclinic sample app for an example.
kktec<br />SCJP, SCWCD, SCJD<br />"What we observe is not nature itself, but nature exposed to our method of questioning." - Werner Heisenberg
Brian Nice
Ranch Hand
Joined: Nov 02, 2000
Posts: 195
posted
0
I ended up writing a custom property editor that seems to do the job. It is specific for int fields, it would be nice to extend it to handle any type of primitive. Thanks for the reply Brian