Christoph Strobl

Results 339 comments of Christoph Strobl

So change 37b072f2 seems to have brought in the code snippet causing trouble now. It's reproducible via: ```java TypeInformation td = ClassTypeInformation.from(WrapperForSomeGeneric.class); TypeInformation field = td.getProperty("field"); field.getProperty("value").getTypeArguments(); class WrapperForSomeGeneric {...

If you'd like us to spend some time investigating, please take the time to provide a complete [minimal sample](https://stackoverflow.com/help/minimal-reproducible-example) (something that we can unzip or git clone, build, and deploy)...

Thanks @fkreis for reporting. Unfortunately there's no easy workaround that would result in what you're seeking. The issue is related to #3435. Let me see what we can do for...

There's an early [branch](https://github.com/spring-projects/spring-data-mongodb/tree/issue/4428) for this. Meanwhile `Aggregation#state` could be an option. ```java Aggregation.stage("{ $project : { 'flat': 1, 'list.element': 1 } }") ```

I'm not inclined to change the behaviour of a method that has been in service this way for 10+ years. What would be the benefit of writing `Aggregation.newAggregation(CustomJsonAggregation("{ "flat" :...

If you'd like us to spend some time investigating, please take the time to provide a complete [minimal sample](https://stackoverflow.com/help/minimal-reproducible-example) (something that we can unzip or git clone, build, and deploy)...

Thank you @anguzo for the reproducer - GraalVM decides to not include `AggregationOperation` in the image. However the core framework tries to inspect all methods when creating a proxy for...

Given the number of projects potentially having both reactive and imperative variants manually adding those hints sounds quite cumbersome and error prone. Before we do that, do we know candidates...

@mmuthukrishnan you can always provide [additional hints](https://docs.spring.io/spring-framework/reference/core/aot.html#aot.hints) yourself if needed, which may help you proceed for now. Meanwhile I had another look at the sample project and once the `org.springframework.cloud`...