Bean属性复制 BeanUtils.copyProperties

BeanUtils.copyProperties

<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.1</version>
</dependency>

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

Quote quote = new Quote(“quote1”, “見積1”, “hogehoge”,new BigDecimal(3000));
Order order = new Order();

//見積のプロパティを受注へコピー
BeanUtils.copyProperties(order, quote);
System.out.println(quote);
System.out.println(order);

Add a Comment

您的电子邮箱地址不会被公开。 必填项已用*标注