Ali
Ali

Reputation: 1590

org.springframework.mapping

I got a scenario where i need to map one object to another object (POJOs) based on properties fields.

I googled and came to know i can do that using 1. BeanUtils 2. BeanWrapper 3. Spring 3 Object Mapping

i was looking for option 3 http://static.springsource.org/spring/previews/mapping.html

It uses org.springframework.mapping.support package:

can anyone help me to get jar for the same ?

Thanks, Ali

Upvotes: 4

Views: 1089

Answers (2)

chrismarx
chrismarx

Reputation: 12545

Looks like this never made it into the library, see this JIRA:

https://jira.spring.io/browse/SPR-6137

Upvotes: 0

viniciusjssouza
viniciusjssouza

Reputation: 1275

I suggest you to use Dozer. It's very powerful and simple to use.

Dozer is a Java Bean to Java Bean mapper that recursively copies data from one object to another.

Dozer home

Upvotes: 2

Related Questions