Bean属性复制 BeanUtils.copyProperties
Posted On 2018年7月6日
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);