Coder Social home page Coder Social logo

Comments (2)

Chessray avatar Chessray commented on June 26, 2024 1

With the project as it stands, you've got two choices:

  1. The most obvious answer is to change the name of one of the Bar classes so it will be unique.
  2. A second option would be to spread the Mappers across different packages and have several mapping configurations. The downside is that you'd have to configure the ConversionService manually.

I specifically chose to make the generator not package-aware as I consider this kind of project layout bad practice. But that's just my opinion.

I can imagine adding an annotation on class level that will alter the generated method name to include the package.

from mapstruct-spring-extensions.

pw-lehre avatar pw-lehre commented on June 26, 2024 1

I specifically chose to make the generator not package-aware as I consider this kind of project layout bad practice.

Understandable. though in some cases, the classes are from external libraries that version by using a different package name like com.v1.Bar and com.v2.Bar.

In the meantime, I did find another workaround: Using a differently named subclass can replace the parent class in most cases. In the example, that would mean defining an additional class:

class FabrikamBar extends com.fabrikam.Bar {
}

// define mapper for the new class
@Mapper(config = SharedConfig.class)
public interface FabrikamBarMapper extends Converter<Foo, FabrikamBar> {
    FabrikamBar convert(Foo source);
}

I support the idea of overriding the method name, since there are cases where the workaround cannot work (e.g. final classes).

from mapstruct-spring-extensions.

Related Issues (20)

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.