guaranadev

Results 5 comments of guaranadev

Anything happening with this issue? I'm getting a lot of these logs when running tests through IntelliJ IDEA: ``` 15:09:25.508 [Test worker] INFO com.openpojo.reflection.java.packageloader.env.JavaClassPathClassLoader - Loading classes from: C:\Program Files\Java\jdk-11.0.2\bin...

Please have a look at this. Currently it is not possible to use MapStruct with Dagger DI framework, when the mapper itself doesn't have dependencies. I would rather not create...

Yes, exactly. Dagger always needs `@Inject` on the constructor for the classes it's supposed to provide instances of, even if the constructor does not have any arguments or is not...

@filiphr In the end I just manually created and instance of MapperImpl in my DI module and used in in a provider. It would be cool if this issue was...

In your `@Module` annotated class ``` @Provides @Singleton DtoMapper provideDtoMapper() { return new DtoMapperImpl(); } ``` Where DtoMapperImpl is a class created by Mapstruct during build, so expect IDE errors...