如何从struts form beans创建值对象?
我需要从 struts form beans 创建值对象。 使用 Bean Utils 或手动创建 VO 是个好主意吗?
有人遇到过 bean utils 的问题吗?
I need to create value objects from struts form beans. Is it a good idea to use Bean Utils or create the VO manually?
Anyone faced any isues with bean utils?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
value对象不是由开发人员创建的,而是由struts框架软件自动创建的,其中form bean类扮演创建它的角色。
****定义:**** 当大量数据从一层传输到另一层时,可以将 whaen 作为多个编号的单独值进行传输。 次。 建议将所有这些值组合成一个值对象,然后转移到另一层,该单个对象的可以存储多个值的特殊类称为值对象
value object is not created by developer side but it is automatically created by struts framework software in which form bean class plays role to create it.
****Definition:**** when the huge data transfering from one layer to another layer which can be transfering whaen as individual value for multiple no. of times. it is recomended to combined all these values into a single value object and then transfer to another layer the special class of that single object which can store multiple values is calles values object
我在使用 BeanUtils 时从未遇到过任何问题。 使用 BeanUtils 来完成这项工作总是一个好主意,因为我们可以避免为此重写代码。
I have never faced any issues in using BeanUtils. It is always a good idea to use BeanUtils to get this job done as we can avoid rewriting code for this.