danibs
danibs
With the case I proposed, using alias I must define N "identical" alias: 1. `{#A1 = d.myojb}` 2. `{#A2 = d.sourse.myobj}` 3. `{#A3 = d.dest.myobj}` 4. case for array and...
Also, right now alias is not so powerfull. I'm building an example where I have an array and in a cell I need to show a concatenation of two fields...
I'm trying to install 2.x on: ``` Spring Tool Suite 4 Version: 4.24.0.RELEASE Build Id: 202407191504 ``` and it is still impossibile to install probably for the reason given by...
> ```java > @Configuration > public class NoOpTracerBean { > @Bean > @ConditionalOnProperty(value = "opentracing.jaeger.enabled", havingValue = "false") > public Tracer getTracer() { > return NoopTracerFactory.create(); > } > }...
I found the solution 🥳 You must set the behaviour of `coercionConfigFor`: ```java XmlMapper mapper = new XmlMapper(); mapper.coercionConfigFor( LogicalType.DateTime ).setCoercion( CoercionInputShape.EmptyString, CoercionAction.AsNull ); ```