Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
首先,我有一个表单,用于编辑持久数据集。我有一个隐藏字段,其中包含要编辑的数据集的 id。当我提交表单时,我得到一个NoSucheMethodException,因为 Struts 想要一个方法setId(String),但我的 bean 只有一个setId(long).
NoSucheMethodException
setId(String)
setId(long)
我真的不想创建另一种方法,将 String 转换为 long。有什么方法可以让 Struts 自己解析这个值到 long 吗?
必须用 包围表单<s:push value="nameOfYourBean">,以使 Struts 按我的意愿行事。对不起,不必要的问题...
<s:push value="nameOfYourBean">