Christoph Strobl
Christoph Strobl
@stefanbildl this is the way! yes.
@hwan33 done - please make sure to read/follow our [contributions guidelines](https://github.com/spring-projects/spring-data-build/blob/main/CONTRIBUTING.adoc). Thank you!
Thank you @quaff for reporting and adding the test snippet. The current behaviour, though unintuitive, is the expected one. The `findBy` method in this case exposes the `FetchableFluentQuery` outside the...
Unfortunately not, all samples are using one of the terminating (`one`, `first`, `all`,...) methods.
The signatures do not match because the `id` parameter of `CrudRepository` is considered non nullable, thus the Kotlin signature of the override uses `long` instead of `Long`.
We could change the lookup to something like the following which worked for the given example. ```java return Optional.ofNullable(ReflectionUtils.findMethod(type, name, parameterTypes)).or(() -> { return stream(type.getDeclaredMethods()).filter(it -> it.getName().equals(name) && it.getParameterCount() ==...
Thank you for reporting. It would be great if you have the time to help us work on this issue by providing a complete [minimal sample](https://stackoverflow.com/help/minimal-reproducible-example) (something that we can...
thank you for the reproducer, any chance to reduce the amount of json data to reproduce the issue? Something that does not necessarily hold hundreds of points but rather a...
Thanks for reporting and the reproducer!
The issue seems to be limited to the _2.x_ line of `data-commons` and does not exist on _3.0.x_. Need to dig in a bit to see what's going on.