struts中Beanutils的三个方法运用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts中Beanutils的三个方法运用相关的知识,希望对你有一定的参考价值。
Beanutils.descible();Beanutils.populate();Beanutils.copyproperties();里放具体放的什么参数,什么情况用哪种,越详细越好
参考技术A BeanUtils的copyProperties方法用来将orig中的成员变量的值复制给dest 。public void copyProperties(Object dest, Object orig)
BeanUtils的populate方法用来将Map<Key,value>中的以值(String或String[])转换到目标bean对应的属性中,Map中的Key是目标bean的属性名。
public static void populate(Object bean, Map properties)
describe(bean)就是把一个对象bean转换成HashMap,键是属性名,值是属性值 .这个与populate方法基本上是相反的过程
以上是关于struts中Beanutils的三个方法运用的主要内容,如果未能解决你的问题,请参考以下文章
The Struts dispatcher cannot be found异常的解决方法