添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

Description

A mapping framework is useful in a layered architecture where you are creating layers of abstraction by encapsulating changes to particular data objects vs. propagating these objects to other layers (i.e. external service data objects, domain objects, data transfer objects, internal service data objects).

Mapping between data objects has traditionally been addressed by hand coding value object assemblers (or converters) that copy data between the objects. Most programmers will develop some sort of custom mapping framework and spend countless hours and thousands of lines of code mapping to and from their different data object.

This type of code for such conversions is rather boring to write, so why not do it automatically? Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR. Promo coderabbit.ai

Dozer

Project Activity

The project is currently not active and will more than likely be deprecated in the future. If you are looking to use Dozer on a greenfield project, we would discourage that. If you have been using Dozer for a while, we would suggest you start to think about migrating onto another library, such as:

  • mapstruct
  • modelmapper
  • Why Map?

    A mapping framework is useful in a layered architecture where you are creating layers of abstraction by encapsulating changes to particular data objects vs. propagating these objects to other layers (i.e. external service data objects, domain objects, data transfer objects, internal service data objects).

    Mapping between data objects has traditionally been addressed by hand coding value object assemblers (or converters) that copy data between the objects. Most programmers will develop some sort of custom mapping framework and spend countless hours and thousands of lines of code mapping to and from their different data object.

    This type of code for such conversions is rather boring to write, so why not do it automatically?

    What is Dozer?

    Dozer is a Java Bean to Java Bean mapper that recursively copies data from one object to another, it is an open source mapping framework that is robust, generic, flexible, reusable, and configurable.

    Dozer supports simple property mapping, complex type mapping, bi-directional mapping, implicit-explicit mapping, as well as recursive mapping. This includes mapping collection attributes that also need mapping at the element level.

    Dozer not only supports mapping between attribute names, but also automatically converting between types. Most conversion scenarios are supported out of the box, but Dozer also allows you to specify custom conversions via XML or code-based configuration.

    Getting Started

    Check out the Getting Started Guide , Full User Guide or GitBook for advanced information.

    Getting the Distribution

    If you are using Maven, simply copy-paste this dependency to your project.

    <dependency>
        <groupId>com.github.dozermapper</groupId>
        <artifactId>dozer-core</artifactId>
        <version>6.5.2</version>
    </dependency>
    

    Simple Example

    <mapping>
      <class-a>yourpackage.SourceClassName</class-a>
      <class-b>yourpackage.DestinationClassName</class-b>
        <field>
          <a>yourSourceFieldName</a>
          <b>yourDestinationFieldName</b>
        </field>
    </mapping>
    
    SourceClassName sourceObject = new SourceClassName();
    sourceObject.setYourSourceFieldName("Dozer");
    Mapper mapper = DozerBeanMapperBuilder.buildDefault();
    DestinationClassName destObject = mapper.map(sourceObject, DestinationClassName.class);
    assertTrue(destObject.getYourDestinationFieldName().equals(sourceObject.getYourSourceFieldName()));
                *Note that all licence references and agreements mentioned in the Dozer README section above
                are relevant to that project's source code only.
            About
    Your go-to Java Toolbox. Our goal is to help you find the software and libraries you need. Made by developers for developers. The collection of libraries and resources is based on the Awesome Java List and direct contributions here. To add a new library, please, check the contribute section. Site Links: Java Newsletter   Categories   Changelogs   About