Mark Paluch
Mark Paluch
We could introduce a `@Bean Dialect jdbcDialect()` method on the config class and forward the call to `Dialect jdbcDialect(NamedParameterJdbcOperations operations)` but honestly, the `AbstractJdbcConfiguration` class would require a larger revision...
We've introduced with https://github.com/spring-projects/spring-data-relational/issues/2165 a utility for better reuse of configuration functionality. Because of such a late change in Spring Data JDBC, it wasn't possible to integrate the change in...
Apologies for the long radio silence. The past two years have been hefty and I hadn't had the mental nor time bandwidth for this project, now trying to catch up....
The rejection of `Command CLUSTER` is indeed a bug because the command is issued after resubscribing. I think that we can skip this call on activation if the nodeId is...
FWIW, out of sync issues have been observed in OOM scenarios: > The above problem may occur after a period of time after the occurrence of OOM via https://github.com/spring-projects/spring-data-redis/issues/3077#issuecomment-2567231802 I...
For the time being, we support Jackson 2 side by side with Jackson 3 where possible (e.g. by introducing a Jackson 3-based converter/reader variant) favoring Jackson 3 over Jackson 2...
Looking at `MapDocument`, `DefaultStringObjectMap`, and `MappingBuilder` I wonder whether we could remove `ObjectMapper` use from these types at all. `toJson()` seems a convenience method that is only used in a...
The Jackson 3 migration will likely last for a couple of years and probably. I expect that only CVEs and eventually not maintained Jackson 2 will incentivize (or force) the...
> r2dbc is dead? > Please, prove that I am wrong... but given the current state, when most critical bugs were unattended (and a very complex subject), few to no...
We rewrite queries to use constructor expressions when using a DTO projection. Returning `DemoValueObject1` from a repository whose domain type is `DemoEntity` is considered a projection. We however back off...