ru.greatbit.utils.beans.CopyBeanUtils Maven / Gradle / Ivy
The newest version!
package ru.greatbit.utils.beans;
import ru.greatbit.utils.serialize.json.JsonUnmarshaller;
import ru.greatbit.utils.serialize.json.JsonMarshaller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* Created by azee on 4/11/14.
*/
@Service
public class CopyBeanUtils {
@Autowired
JsonMarshaller jsonMarshaller;
@Autowired
JsonUnmarshaller jsonUnmarshaller;
/**
* Get a copy of an object
* @param source - a source object
* @param - class of the object
* @return - a copy of the object
* @throws Exception
*/
public T getCopy(Object source) throws Exception {
String sourceString = jsonMarshaller.marshal(source);
Class clazz = source.getClass();
return (T) jsonUnmarshaller.unmarshal(sourceString, clazz);
}
}