几种Bean的复制方法性能比较
由于项目对性能 速度要求很高,表中的字段也很多,存在一个复制方法,耗时相对比较长,经过测试,使用Apache,Spring等提供的方法 耗时较长,使用自己自定义的复制方法时间提升很多,现记录下。
1.pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.xsjt.compare</groupId>
<artifactId>copy-property</artifactId>
<version>0.0.1-SNAPSHOT</version> <dependencies>
<!-- apache -->
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.8.3</version>
</dependency> <!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>4.3.8.RELEASE</version>
</dependency> <!-- cglib -->
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
<version>3.2.3</version>
</dependency> <!-- ezmorph -->
<dependency>
<groupId>net.sf.ezmorph</groupId>
<artifactId>ezmorph</artifactId>
<version>1.0.6</version>
</dependency> </dependencies>
</project>
2.定义一个实体bean
package com.xsjt.bean; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date; /**
* 用户实体类
* @author Administrator
*
*/
@SuppressWarnings("serial")
public class User implements Serializable{ private int id;
private String userName;
private String userPass;
private String phone;
private Date birth;
private BigDecimal totleMoney;
private String remark; public User() {
super();
} public User(int id, String userName, String userPass, String phone, Date birth, BigDecimal totleMoney, String remark) {
super();
this.id = id;
this.userName = userName;
this.userPass = userPass;
this.phone = phone;
this.birth = birth;
this.totleMoney = totleMoney;
this.remark = remark;
} public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getUserPass() {
return userPass;
}
public void setUserPass(String userPass) {
this.userPass = userPass;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public Date getBirth() {
return birth;
}
public void setBirth(Date birth) {
this.birth = birth;
}
public BigDecimal getTotleMoney() {
return totleMoney;
}
public void setTotleMoney(BigDecimal totleMoney) {
this.totleMoney = totleMoney;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
} @Override
public String toString() {
return "User [id=" + id + ", userName=" + userName + ", userPass=" + userPass + ", phone=" + phone + ", birth=" + birth + ", totleMoney=" + totleMoney + ", remark=" + remark + "]";
} }
3.自己定义的bean复制方法
package com.xsjt.util; import java.lang.reflect.Field;
import java.math.BigDecimal;
import java.util.Date;
import com.xsjt.bean.User; /**
* ClassName:CopyBeanProperty
* 在对象之间 进行属性值 复制
* Date: 2017年7月19日 下午5:53:07
* @author Joe
* @version
* @since JDK 1.8
*/
public class CopyBeanProperty { /**
* 将 旧的bean的值 赋值 给 新的bean
* @param oldObj
* @param newObj
*/
public static void copyproperty(Object oldObj ,Object newObj){ Class<?> clz = oldObj.getClass();
Field[] cols = clz.getDeclaredFields(); String name = null;
Object value = null;
try {
for(Field col : cols){
if(!col.isAccessible()){
// 设置可访问
col.setAccessible(true);
}
name = col.getName();
value = col.get(oldObj);
// 赋值给 新的bean
setBeanProperty(name ,value ,newObj);
}
} catch (Exception e) {
e.printStackTrace();
}
} /**
* 将 name 和 value 赋值给 新的bean
* @param name
* @param value
* @param newObj
* @throws SecurityException
* @throws NoSuchFieldException
* @throws IllegalAccessException
* @throws IllegalArgumentException
*/
private static void setBeanProperty(String name, Object value, Object newObj) throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException {
Class<?> clz = newObj.getClass();
Field col = clz.getDeclaredField(name);
if(!col.isAccessible()){
// 设置可访问
col.setAccessible(true);
}
col.set(newObj, value);
} /**
* 循环输入 属性 和 值 ,测试的 时候 使用
* @param newObj
* @throws IllegalAccessException
* @throws IllegalArgumentException
*/
private static void loopBeanProperty(Object newObj) throws IllegalArgumentException, IllegalAccessException{
Class<?> clz = newObj.getClass();
Field[] cols = clz.getDeclaredFields();
for(Field col : cols){
if(!col.isAccessible()){
// 设置可访问
col.setAccessible(true);
}
System.out.println(col.getName() + "-->" + col.get(newObj));
}
} /**
* 测试
* @param args
*/
public static void main(String[] args) {
User user = new User(1, "admin", "12345", "135555555555", new Date(), new BigDecimal(20000.88), "土豪");
try {
loopBeanProperty(user);
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
}
4.各种bean复制方法的比较
package com.xsjt.compare; import java.math.BigDecimal;
import java.util.Date;
import org.apache.commons.beanutils.BeanUtils;
import com.xsjt.bean.User;
import com.xsjt.util.CopyBeanProperty;
import net.sf.cglib.beans.BeanCopier;
import net.sf.ezmorph.MorpherRegistry;
import net.sf.ezmorph.bean.BeanMorpher; /**
* ClassName:CompareTest
* 测试 各种 复制 方法的性能
* Date: 2017年7月19日 下午5:53:07
* @author Joe
* @version
* @since JDK 1.8
*/
public class CompareTest { public static void main(String[] args) throws Exception { // 1.使用 apache 的 复制 方法
User orig = new User(1, "admin", "12345", "135555555555", new Date(), new BigDecimal(20000.88), "土豪");
User dest = new User();
long start = System.currentTimeMillis();
BeanUtils.copyProperties(dest, orig);
System.out.println("1.apache的方法 花费的时间:" + (System.currentTimeMillis() - start) + "ms");
System.out.println("dest==" + dest); System.out.println("--------------------------------我是分割线------------------------------------------------"); // 2.使用 spring 的 复制方法
User source = new User(1, "admin", "12345", "135555555555", new Date(), new BigDecimal(20000.88), "土豪");
User target = new User();
start = System.currentTimeMillis();
org.springframework.beans.BeanUtils.copyProperties(source, target);
System.out.println("2.spring的方法 花费的时间:" + (System.currentTimeMillis() - start) + "ms");
System.out.println("target==" + target); System.out.println("--------------------------------我是分割线------------------------------------------------"); // 3.使用 cglib 的复制方法
User source2 = new User(1, "admin", "12345", "135555555555", new Date(), new BigDecimal(20000.88), "土豪");
User target2 = new User();
start = System.currentTimeMillis();
BeanCopier.create(source2.getClass(), target2.getClass(), false).copy(source2, target2, null);
System.out.println("3.cglib的方法 花费的时间:" + (System.currentTimeMillis() - start) + "ms");
System.out.println("target2==" + target2); System.out.println("--------------------------------我是分割线------------------------------------------------"); // 4.使用 EZMorph 的复制方法
User source3 = new User(1, "admin", "12345", "135555555555", new Date(), new BigDecimal(20000.88), "土豪");
User target3 = new User();
start = System.currentTimeMillis();
MorpherRegistry registry = new MorpherRegistry();
registry.registerMorpher(new BeanMorpher(User.class, registry));
target3 = (User) registry.morph(User.class, source3);
System.out.println("4.EZMorph的方法 花费的时间:" + (System.currentTimeMillis() - start) + "ms");
System.out.println("target3==" + target3); System.out.println("--------------------------------我是分割线------------------------------------------------"); // 5.使用 自定义 的复制方法
User oldUser = new User(1, "admin", "12345", "135555555555", new Date(), new BigDecimal(20000.88), "土豪");
User newUser = new User();
start = System.currentTimeMillis();
CopyBeanProperty.copyproperty(oldUser, newUser);
System.out.println("5.自定义的方法 花费的时间:" + (System.currentTimeMillis() - start) + "ms");
System.out.println("newUser==" + newUser);
}
}
5.运行结果展示
自定义的复制方法,使用了Java的反射机制实现,虽然其他的方法也是通过反射实现。但是自己定义的耗时时间最少,记录下,以备后用。
6.源码下载
https://git.oschina.net/xbq168/copy-property.git
几种Bean的复制方法性能比较的更多相关文章
- JavaBean ,Enterprise Bean(EJB), 三种Bean, 以及POJO
Bean简单的理解,可以理解为组件,一组通用方法的组合: JavaBean就可以称为Java组件,是所有组件的统称,EJB称为企业级 Java组件: 三种Bean: 1). session beans ...
- 几种流行Webservice框架性能对照
转自[http://blog.csdn.net/thunder4393/article/details/5787121],写的非常好,以收藏. 1 摘要 开发webservice应用程序中 ...
- Spring学习(二):Spring支持的5种Bean Scope
序言 Scope是定义Spring如何创建bean的实例的.Spring容器最初提供了两种bean的scope类型:singleton和prototype,但发布2.0以后,又引入了另外三种scope ...
- 框架源码系列九:依赖注入DI、三种Bean配置方式的注册和实例化过程
一.依赖注入DI 学习目标1)搞清楚构造参数依赖注入的过程及类2)搞清楚注解方式的属性依赖注入在哪里完成的.学习思路1)思考我们手写时是如何做的2)读 spring 源码对比看它的实现3)Spring ...
- 固态硬盘和机械硬盘的比较和SQLSERVER在两种硬盘上的性能差异
固态硬盘和机械硬盘的比较和SQLSERVER在两种硬盘上的性能差异 在看这篇文章之前可以先看一下下面的文章: SSD小白用户收货!SSD的误区如何解决 这样配会损失性能?实测6种特殊装机方式 听说固态 ...
- Go_18: Golang 中三种读取文件发放性能对比
Golang 中读取文件大概有三种方法,分别为: 1. 通过原生态 io 包中的 read 方法进行读取 2. 通过 io/ioutil 包提供的 read 方法进行读取 3. 通过 bufio 包提 ...
- Golang 中三种读取文件发放性能对比
Golang 中读取文件大概有三种方法,分别为: 1. 通过原生态 io 包中的 read 方法进行读取 2. 通过 io/ioutil 包提供的 read 方法进行读取 3. 通过 bufio 包提 ...
- 无状态会话Bean、有状态会话Bean、CMP与BMP中,哪一种Bean不需要自己书写连接数据库的代码?
无状态会话Bean.有状态会话Bean.CMP与BMP中,哪一种Bean不需要自己书写连接数据库的代码? A.无状态会话Bean B.有状态会话Bean C.CMP D.BMP 解答:C
- EJB包含哪3种bean
EJB包含哪3种bean 解答:session bean(会话bean), entity bean(实体bean), message bean(消息bean)
随机推荐
- 关于Unity中如何判断一个动画播放结束
方法一(强力推荐): 在动画结束帧或其他帧处加个动画事件,在播放到这一帧的时候会自动调用这个动画函数 如图,找到对应动画的inspector面板,在里面有个Events下拉条,下拉后在想要的帧的位置添 ...
- 关于Unity中Time.deltaTime的使用
例子 void Update () { this.transform.Rotate(Vector3.up, Time.deltaTime * 50, Space.World); //绕世界的y轴旋转, ...
- Selenium常用操作汇总二——如何得到弹出窗口
在selenium 1.X里面得到弹出窗口是一件比较麻烦的事,特别是新开窗口没有id.name的时候.当时还整理了处理了几种方法,详见:http://seleniumcn.cn/read.php?ti ...
- C++复合类型(结构体)
其实c++的结构体可以理解为类似于python的字典,我个人理解, 但有区别 先看结构 #include <iostream> 关键字 标记成为新类型的名称 struct inflatab ...
- android O 蓝牙设备默认名称更改
安卓系统会首先读取BTM_DEF_LOCAL_NAME的值,如果为空,就使用"ro.product.model"作为蓝牙设备名. system/bt/btif/src/btif_d ...
- Java如何格式化24小时格式的时间?
在Java中,如何格式化24小时格式的时间?? 此示例使用SimpleDateFormat类的sdf.format(date)方法将时间格式化为24小时格式(00:00-24:00). package ...
- Response.Redirect与Server.Transfer区别-转
执行过程: 1.浏览器ASP文件请求->服务器执行->遇到response.redirect语句->服务器发送response.redirect后面的地址给客户机端的浏览器-> ...
- 查看CentOS系统运行了多久使用uptime命令
对于一些人来说系统运行了多久是无关紧要的,但是对于服务器管理员来说,这是相当重要的信息. 服务器在运行重要应用的时候,必须尽量保证长时间的稳定运行,有时候甚至要求零宕机. 那么我们怎么才能知道服务器运 ...
- session没保存,登录失败
今天发现做的项目,登录不上 查了下原因,原来是session没保存上 查看php.ini文件,session.save_path="D:\php\tmp\tmp" 查看了下对应的目 ...
- Android开发学习笔记-自定义组合控件的过程
自定义组合控件的过程 1.自定义一个View 一般来说,继承相对布局,或者线性布局 ViewGroup:2.实现父类的构造方法.一般来说,需要在构造方法里初始化自定义的布局文件:3.根据一些需要或者需 ...