我对Struts中FormBean和DTO的使用感到困惑
正如我所问,我在使用 DTO 时遇到问题,我想从 FormBean 中提取数据并将其放入 DTO 中,反之亦然,但我不知道正确的方法。
请帮助我解决这个问题。
As I asked I am problem with using DTO,I want to extract data from FormBean and put it into DTO and vice versa,but I don't know the correct way to do it.
please help me related to this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的表单和 DTO 的属性具有匹配的名称,那么您会发现这在您的操作中非常有用,也适用于地图支持的表单:
org.apache.commons.beanutils.BeanUtil.copyProperties(Object dest,Object orig)
If the properties of your form and your DTO have matching names then you will find this very useful in you actions, works also for map backed forms:
org.apache.commons.beanutils.BeanUtil.copyProperties(Object dest,Object orig)