Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Ok, I found my fault. Had to put the form attributes into a <s:push value="beanName">. Now it works just as I wanted it. – entek Apr 8 '12 at 18:45
Please close or self answer the question so we can see it resolved. – Quaternion Apr 9 '12 at 4:26

1 Answer

up vote 0 down vote accepted

One has to surround the form with <s:push value="nameOfYourBean">, to make Struts act as I wanted it. Sorry for the unnecessary question...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.