Mark Paluch

Results 497 issues of Mark Paluch

This is a draft for configuring a `QueryEnhancerSelector` that selects a `QueryEnhancerFactory` based on a `DeclaredQuery`: ```java @EnableJpaRepositories(queryEnhancerSelector = MyQueryEnhancerSelector.class) class MyQueryEnhancerSelector extends QueryEnhancerSelector.DefaultQueryEnhancerSelector { public MyQueryEnhancerSelector() { super(QueryEnhancerFactories.fallback(), DefaultQueryEnhancerSelector.jpql());...

type: enhancement
has: breaking-change

We now provide a dedicated API to introspect nullability rules. The new API supports Spring, JSR-305, and [JSpecify](https://jspecify.dev/). ```java Nullability nullability = Nullability.forMethodReturnType(method); nullability.isDeclared(); nullability.isNullable(); nullability.isNonNull(); // introspect multiple elements...

status: on-hold
type: enhancement