First, I have a form, that's for editing a persisted dataset.
I have a hidden field, that holds the id of the dataset, to be edited. When i submit the form, I get a NoSucheMethodException, because Struts wants to have a method setId(String), but my bean only has a setId(long).
I don't really want to create another method, to convert from String to long. Is there any way, to make Struts parse this value to long, on its own?