BeanUtils プロパティコピー

BeanUtils.copyPropertiesとは

同じ名称のプロパティをコピーできる

実装

try {
 BeanUtils.copyProperties(コピー先, コピー元);
} catch (IllegalAccessException | InvocationTargetException e) {
 e.getMessage();
}

pom.xml

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

API

前の記事

SendGrid