Christophe Bornet
Christophe Bornet
If JsonNullable is in state "undefined", `isPresent()` returns false. Otherwise it returns true. Why did you close ?
In Spring Boot, just add ```java @Bean public JsonNullableModule jsonNullableModule { return new JsonNullableModule(); } ``` Spring boot will load it into its ObjectMapper (so you must not override it)...
And you don't need to explicitly load JacksonConfiguration if it's visible by the component scan.
Can you provide a sample app reproducing the problem ?
Hi, what is the status of this ? If I understand well, there was discussion about a `ReactiveCache` since JSR-107 is a blocking API. Has something evolved since the opening...
I think Spring Boot already supports image banners
The quick fix is to add ```java @Override protected boolean hasPreparedStatementsImplemented() { return false; } ``` to LoadDataChangeMSSQL
Although I think the DeadLetterPolicy crash is solved by https://github.com/apache/pulsar/issues/16487, we still have the issue that `loadConf` resets non-serializable fields to `null`. This PR prevents that. Also it should be...
Should we allow `loadConf` to set non-serializable fields ? It's possible to do it by saving the non-serializable field in a var before calling `ConfigurationDataUtils::loadData` and apply it after. I'll...
@michaeljmarshall We could add `loadConfig` and deprecate `loadConf`. WDYT ?