Sébastien Deleuze
Sébastien Deleuze
Spring typical arrangement is to have both kotlinx.serialization and Jackson in the classpath, with kotlinx.serialization converter used first to evaluate if if should be used, if not, Jackson is used....
@sandwwraith Any thoughts?
Ok I will double check tomorrow that the use case described here works as expected (as you I would expected it does) and if confirmed I will comment asking closing...
@sandwwraith I had a deeper look and I think I am not confortable adding custom logic in Spring to prefer a specific contextual serializer and tend to agree with users...
@sandwwraith Is it available in `1.6.0-RC`?
Those initialization errors could be fixed with recent GraalVM versions (Java 21 and later). @ashraf-revo Could you try with the latest GraalVM version released and let us know if you...
I see [native metadata are included in cache2k-core JAR](https://github.com/cache2k/cache2k/blob/master/cache2k-core/src/main/resources/META-INF/native-image/org.cache2k/cache2k-core/native-image.properties), this is likely the source of this error. I have not read all the detail on https://github.com/cache2k/cache2k/issues/152, but moving forward there...
Hi, I am one of the developer of the Reactive support of Spring Framework. As part of the [spring-reactive](https://github.com/spring-projects/spring-reactive) project, I am working on a [spring-reactive-playground](https://github.com/sdeleuze/spring-reactive-playground) experiment which is about...
@alaisi Awesome, perfect match cf. https://github.com/sdeleuze/spring-reactive-playground/commit/b90efcb363931ba8cc025f81a03be2af65eb00bf Thanks!
I don't think suspending factory method conceptually make sense, they have side effects, and you indeed have the possibility to use `runBlocking { }` if you really need this, so...