Matthias Bechtold
Matthias Bechtold
Hi! I am currently working on a little project, which is (yet another) todo list, that can be maintained in the local filesystem or in a private GitHub gist. Recently,...
removed the unnecessary " ? : ", that could cause single module project builds to fail.
It would be nice to be able to use this library with Java 14 records, for example: ```java public record LineRecord( @FixedField(offset = 1, length = 42) String firstStr, @FixedField(offset...
We were trying to use the [mq-container](https://github.com/ibm-messaging/mq-container) with Spring Boot 3.x Testcontainers with `@ServiceConnection` similar to what you can do with a PostgreSQL container: ```java @TestConfiguration(proxyBeanMethods = false) public class...
Hi we noticed the following log statement when a message is deadlettered: ``` Adding dead letter with message id [ebb06fa9-4627-411e-a0de-31653caecf60] because [{}]. org.axonframework.messaging.deadletter.ThrowableCause: One or more JSR303 constraints were violated:...
I was wondering how to write a polymorphic parser for JSON CloudEvents, where the payload can be one of many types. Normally, with plain Jackson one can do something like...
@CarstenWickner sorry that it took me so long, but here we go. This simply overrides the default behavior and is a breaking change. If you want, I can try to...
Currently, a `LocalDateTime` field in a POJO will generate a schema field with `"format": "date-time"`. Looking at the [JSON Schema spec (section 7.3.1)](https://json-schema.org/draft/2020-12/draft-bhutton-json-schema-validation-00#rfc.section.7.3.1), "date-time" seems to denote a timestamp after...