BeanUtils组件
简介:程序中对javabean的操作很频繁,所以Apache提供了一套开源的api,方便对javabean的操作.
作用:简化对javabean的操作
使用:
1.引入commons-beanutils-1.8.3.jar核心包
2.引入日志支持包: commons-logging-1.1.3.jar
如果缺少日志jar文件,报错:
java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
基本用法
1.对象属性的拷贝
BeanUtils.copyProperty(student, "name", "chenkefo");
BeanUtils.setProperty(student, "age", 22);
2.对象的拷贝
BeanUtils.copyProperties(newStudent, student);
3.map数据拷贝到javabean中
BeanUtils.populate(mapStudent, map);
public class BeanUtilsDemo {
@Test
public void test() throws Exception {
// a.基本操作
Student student = new Student();
// student.setName("chenkefo");
//student.setAge(22);
// b.使用BeanUtils组件实现对对象属性的拷贝
BeanUtils.copyProperty(student, "name", "chenkefo");
BeanUtils.setProperty(student, "age", 22);
//BeanUtils.setProperty(student, "age", "30");
//对于基本数据类型,会自动进行类型转换
// 测试
//System.out.println(student);
//c.对象拷贝
Student newStudent = new Student();
BeanUtils.copyProperties(newStudent, student);
//测试
//System.out.println(newStudent);
//map数据,拷贝到对象中
Student mapStudent = new Student();
Map<String, Object> map = new HashMap<String, Object>();
map.put("name", "陈柯佛");
map.put("age", 22);
//注意:map中的key要与javabean的属性名称一致
BeanUtils.populate(mapStudent, map);
//测试
System.out.println(mapStudent);
}
}
日期类型的拷贝(需要注册日期类型转换器,2中方式)
方式一:
@Test
public void dateTest() throws Exception {
//模拟表单数据
String name = "陈柯佛";
String age = "20";
String birthday = "1996-06-26";
//创建对象
Student student = new Student();
//注册日期类型转换器:(自定义方式)
ConvertUtils.register(new Converter() {
@Override
public Object convert(Class type, Object value) {
// TODO Auto-generated method stub
//判断是否为日期类型
if(type!=Date.class){
return null;
}
//判断值是否为空和空字符串
if(value==null||"".equals(value.toString().trim())){
return null;
}
try {
//设置日期格式
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
//把字符串解析为日期格式
return format.parse(value.toString());
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
throw new RuntimeException(e);
}
}
}, Date.class);
//把表单提交的数据封装到对象中
BeanUtils.setProperty(student, "name", name);
BeanUtils.setProperty(student, "age", age);
BeanUtils.setProperty(student, "birthday", birthday);
//测试
System.out.println(student);
}
输出结果:Student [name=陈柯佛, age=20, birthday=Wed Jun 26 00:00:00 CST 1996]
方式二:
//使用提供的日期类型转换器工具
@Test
public void dateTest2() throws Exception {
//模拟表单数据
String name = "陈柯佛";
String age = "22";
String birthday = "1996-06-26";
//创建对象
Student student = new Student();
//注册日期类型转换器(使用组件提供的转换器工具类)
ConvertUtils.register(new DateLocaleConverter(), Date.class);
//把表单提交的数据封装到对象中
BeanUtils.setProperty(student, "name", name);
BeanUtils.setProperty(student, "age", age);
BeanUtils.setProperty(student, "birthday", birthday);
//测试
System.out.println(student);
}
输出结果:Student [name=陈柯佛, age=22, birthday=Wed Jun 26 00:00:00 CST 1996]
应用
请求数据的封装:
public class WebUtils {
@Deprecated
public static <T> T copyToBean_old(HttpServletRequest request, Class<T> clazz) {
try {
// 创建对象
T t = clazz.newInstance();
// 获取表单所有元素的名称
Enumeration<String> enums = request.getParameterNames();
// 遍历
while (enums.hasMoreElements()) {
// 获取表单元素的名称
String name = enums.nextElement();
// 根据表单元素名称获取对应的值
String value = request.getParameter(name);
// 把表单数据封装到对象
BeanUtils.copyProperty(t, name, value);
}
return t;
} catch (Exception e) {
// TODO Auto-generated catch block
//e.printStackTrace();
throw new RuntimeException(e);
}
}
/**
* request.getParameterMap():返回的是一个Map类型的值,该值记录着前端(如jsp页面)所提交的请求参数和请求数值的映射关系.
* 这个返回值----只能读.这是因为服务器为了实现一定的安全规范,所做的限制.
*/
public static <T> T copyToBean(HttpServletRequest request,Class<T> clazz){
try {
//如果表单提交的数据有日期类型,添加注册日期类型转换器
//创建对象
T t = clazz.newInstance();
//封装表单数据到对象
BeanUtils.populate(t, request.getParameterMap());
return t;
} catch (Exception e) {
// TODO Auto-generated catch block
//e.printStackTrace();
throw new RuntimeException();
}
}
}