Raimund Klein
Raimund Klein
Hi again, OK, so no additional dependencies. @buildscientist As for the helper method: This looks nice, but doesn't solve the scenario why I came up with this in the first...
Yes, I'll try to take this on now. Let's see if I can cheat myself out of writing a completely new class by resorting to a simple LinkedHashMap extension instead...
Hi @marcelmay, I think it's merely the sheer amount of emails. AFAIK we don't send any attachments. We provide an option for sending messages to millions of registered recipients at...
@marcelmay The pull request is already there, please just review and merge. Sorry that I didn't pay attention to this anymore lately - I've been assigned to a completely new...
Spring's `ConversionService` initialization doesn't follow standard procedures. You can try the [generated ConverterScan annotations](https://mapstruct.org/documentation/spring-extensions/reference/html/#generateConverterScan). This feature wasn't designed for your case, but may cover it nonetheless.
The _generated_ `ConverterScan` (as opposed to the one provided in `test-extensions`) is intended for production use. Is there any way for you to share your project so I can help...
Your test project works if you add the _generated_ `ConverterScan`: Add this dependency: ``` javax.annotation jsr250-api 1.0 ``` Add this line to `MapStructConfig`: ``` @SpringMapperConfig(generateConverterScan = true, conversionServiceBeanName = "conversionService")...
You need to include the older dependency `jsr250` as outlined above. `jakarta-annotation` comes with Spring Boot 3 anyway. I'll have to look into how we can add this in a...
Sure, feel free to take it. I see it more as an optional, but go ahead. 🙂
Logically speaking, the second portion (generating the Delegating Converter) would need to happen inside the Processor for the `@Mapper` annotation. This goes a bit against how we're doing things at...