Giter Club home page Giter Club logo

simple-mapper's People

Contributors

joanzapata avatar rsertelon avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

simple-mapper's Issues

Strict mode

Should add an option to enable strict mode, in which all destination properties must find an appropriate getter in the source object, or throw a StrictModeException with explicit message : no getter found / types don't match : X Y / etc...

Verbose mode

One should be able to see traces about

  • Setter without any matching getter
  • Incompatible types between getter and setter

Manage "Map" type

Map types should be mapped to HashMap and avoid the getter-setter inspections.

Manage null objects

Return null if the given object is null.
Should be done for exposed API and for the internal calls.

No log message if no strict mode

} catch (Exception e) {
         if (strictMode) {
                    throw new StrictModeException("Unable to map "
                            + setterMethod.getDeclaringClass().getSimpleName()
                            + "." + setterMethod.getName() + "() method in "
                            + source.getClass().getCanonicalName(), e);
       }
 }

line 349 in Mapper

External mapper injection

I need to inject an existing mapper into another mapper to avoid duplication mapping rules.

For example, if want to inject an existing mapper to manage the ConfigProfile class mapping, I expect something like

mapper1 = new Mapper()
                .biMapping(ConfigProfile.class, ConfigProfileDTO.class);
...
mapper = new Mapper()
                .biMapping(Device.class, DeviceDTO.class)
                .injectMapper(mapper1, ConfigProfile.class);

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.