- import java.lang.reflect.InvocationTargetException;
- import org.apache.commons.beanutils.BeanUtils;
- import org.junit.Test;
- //使用BeanUtils操作JavaBean的属性
- //在使用之前,先把beanutils.jar和logging.jar加入BuildPath
- public class Test10 {
-
- @Test
- public void testUtils() throws IllegalAccessException, InvocationTargetException, NoSuchMethodException{
- Person p = new Person("sadf", 54);
-
- //BeanUtils.setProperty(p, "name", "345");
- String str = BeanUtils.getProperty(p, "name");
- System.out.println(str);
-
- }
- }
复制代码 使用BeanUtils操作JavaBean的属性,用Junit测试总是不通过,提示我该JavaBean类中没有对应的Getter和Setter,可是我的 Bean类中明明有啊,而且也是共有的为什么还会报错???
|
|