i have the following dozer mapping:
com.company.xx.xx.model.MyClass com.company.xx.xx.model.MyClassToMap
afield afield
customer customer
I load MyClass with with hibernate. But i have a lazy loading for customer. i dont load everything from customer. But the mapping wants to map all attributes from customer, so that a lazy initilization exception is thrown.
How can i tell dozer only to map customer and not all of the fields from customer?