Skip to content

Commit 70c9789

Browse files
committed
Exposed the method and repository metadata in the QueryMethod
1 parent e7bc5c3 commit 70c9789

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/springframework/data/repository/query/QueryMethod.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public QueryMethod(Method method, RepositoryMetadata metadata, ProjectionFactory
8686
this.method = method;
8787
this.unwrappedReturnType = potentiallyUnwrapReturnTypeFor(metadata, method);
8888
this.metadata = metadata;
89-
this.parameters = createParameters(method, metadata.getDomainTypeInformation());
89+
this.parameters = createParameters(ParametersSource.of(getMetadata(), method));
9090

9191
this.domainClass = Lazy.of(() -> {
9292

@@ -316,11 +316,11 @@ public ResultProcessor getResultProcessor() {
316316
return resultProcessor;
317317
}
318318

319-
RepositoryMetadata getMetadata() {
319+
public RepositoryMetadata getMetadata() {
320320
return metadata;
321321
}
322322

323-
Method getMethod() {
323+
public Method getMethod() {
324324
return method;
325325
}
326326

@@ -329,7 +329,7 @@ public String toString() {
329329
return method.toString();
330330
}
331331

332-
private static Class<? extends Object> potentiallyUnwrapReturnTypeFor(RepositoryMetadata metadata, Method method) {
332+
private static Class<?> potentiallyUnwrapReturnTypeFor(RepositoryMetadata metadata, Method method) {
333333

334334
TypeInformation<?> returnType = metadata.getReturnType(method);
335335
if (QueryExecutionConverters.supports(returnType.getType())

0 commit comments

Comments
 (0)