https://github.com/ghusta/dozer-mapping-test
Test with the Dozer library for Java.
https://github.com/ghusta/dozer-mapping-test
dozer java
Last synced: 3 months ago
JSON representation
Test with the Dozer library for Java.
- Host: GitHub
- URL: https://github.com/ghusta/dozer-mapping-test
- Owner: ghusta
- Created: 2018-11-22T20:19:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-10T16:55:52.000Z (over 6 years ago)
- Last Synced: 2025-01-06T22:36:01.693Z (5 months ago)
- Topics: dozer, java
- Language: Java
- Size: 36.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
= Dozer Mapping Test
image:https://travis-ci.org/ghusta/dozer-mapping-test.svg?branch=master["Build Status", link="https://travis-ci.org/ghusta/dozer-mapping-test"]
Testing the Dozer library for Java.
== References
* https://github.com/DozerMapper/dozer[GitHub project]
* https://dozermapper.github.io/gitbook/[Project documentation]
** Use https://dozermapper.github.io/gitbook/documentation/contextmapping.html[Context Based Mapping], a.k.a. use the _map-id_ attribute
** https://dozermapper.github.io/gitbook/documentation/immutable.html[Mapping of immutable objects], like @Value with Lombok
** https://dozermapper.github.io/gitbook/documentation/advancedproperty.html[Using Assembler Pattern], with successive mappings to the same target instance
* https://stackoverflow.com/questions/tagged/dozer['dozer' tagged questions] on Stack Overflow
* Specific to Hibernate :
** https://stackoverflow.com/questions/5552379/prevent-dozer-from-triggering-hibernate-lazy-loading[Prevent Dozer from triggering Hibernate lazy loading]
** https://github.com/DozerMapper/dozer/issues/190[Infinite mapping with Hibernate Bug] (using HibernateProxyResolver...)== Alternatives
* http://mapstruct.org/[MapStruct]