黑马程序员技术交流社区

标题: BeauUtils的使用异常 [打印本页]

作者: 贾浩田    时间: 2014-10-21 12:54
标题: BeauUtils的使用异常
  1. import java.lang.reflect.InvocationTargetException;

  2. import org.apache.commons.beanutils.BeanUtils;
  3. import org.junit.Test;

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


作者: MeryStyle    时间: 2014-10-21 13:48
我也是同样的错误!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2