MrBuddyCasino
MrBuddyCasino
Maybe the scope could be expanded to allow inline files in general? As is, volume mounts make running docker compose on a remote host nearly impossible.
I just encountered the same issue. Enclosed or local classes will give trouble when using fancy names. Moving the class definition up a level as a workaround fixes this,
Yes thats what I meant. Possibly also Data Classes with a single `String` property, though I expect this to be a much rarer use case. Value classes can be used...
After some debugging, Jackson seems to pick up a 3rd `fSRI` property via `findImplicitPropertyName()` called in `_addGetterMethod()`, which then leads to the exception. I'll check if I can disable that...
It seems this is fixed by configuring the mapper with: `.withGetterVisibility(JsonAutoDetect.Visibility.NONE)`. Maybe an upgrade notice could be added?
Moving work to a dedicated thread pool works, as @demboos suggested. However, we have now migrated to the JMS API and not looked back - it supports everything we need,...
Sure: ``` /** * Method return will not automatically mark the message as consumed. This is controlled by the * supplied {@link Acknowledgment} object. */ @SqsListener(value = "${app.aws.sqs.queues.inventory}", deletionPolicy =...
I think I need this feature. Is there already some work done? If not maybe I can implement it, thankful for any input. If `CsvGenerator.Feature.ALWAYS_QUOTE_NUMBERS` is active, I don't think...
Thanks for the reply. If I understand the issue correctly, the problem is that the `CsvSchema` has to know all the possible columns in advance, so that it can write...
I just encountered this difference in a project migrating PHP code to Kotlin. I'm not sure it should be enabled by default, as it makes URLs in Json objects hard...