BeanUtils封装工具类

BeanUtils工具类,简化数据封装:(使用前需要导包)

//BeanUtils装载参数至JavaBean类
Map map = request.getParameterMap();//将请求参数转成map集合

User user = new User(); //创建将要装载的javaBean类的空参对象

try {
BeanUtils.populate(user,map); //使用BeanUtils的populate方法,将map集合中的键值对参数装载至javaBean类User中
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}

你可能感兴趣的:(BeanUtils封装工具类)