BeanUtils - org.springframework.beans.BeanUtils beanUtils사용하기 spring에 있는 BeanUtils로 특정bean를 만들어특정 property를 setting할 수도 있고 특정type의 bean를 특정 type의bean에 property를 copy한다고 할까... 기능들은 많은듯 한데 api를 함 찾아 봐야 할듯 특정 instance를 특정 instance로 변환할경우 유용 하게 쓰이더군요 public static Object objectToTargetInstance(Object source, Class targetClazz){ //source를 가지고 targetClazz형태로 instance를 만들어 properties를 setting target = ..