You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-graphql/src/main/java/org/springframework/graphql/data/method/HandlerMethodArgumentResolverComposite.java
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2021 the original author or authors.
2
+
* Copyright 2002-2022 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -32,6 +32,7 @@
32
32
* Previously resolved method parameters are cached for faster lookups.
Copy file name to clipboardExpand all lines: spring-graphql/src/main/java/org/springframework/graphql/data/method/annotation/support/AnnotatedControllerConfigurer.java
+58-15Lines changed: 58 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -18,11 +18,13 @@
18
18
importjava.lang.annotation.Annotation;
19
19
importjava.lang.reflect.Method;
20
20
importjava.lang.reflect.Type;
21
+
importjava.util.ArrayList;
21
22
importjava.util.Arrays;
22
23
importjava.util.Collection;
23
24
importjava.util.Collections;
24
25
importjava.util.HashMap;
25
26
importjava.util.LinkedHashSet;
27
+
importjava.util.List;
26
28
importjava.util.Map;
27
29
importjava.util.Set;
28
30
importjava.util.stream.Collectors;
@@ -74,6 +76,7 @@
74
76
*
75
77
* @author Rossen Stoyanchev
76
78
* @author Brian Clozel
79
+
* @author Genkui Du
77
80
* @since 1.0.0
78
81
*/
79
82
publicclassAnnotatedControllerConfigurer
@@ -108,6 +111,9 @@ public class AnnotatedControllerConfigurer
Copy file name to clipboardExpand all lines: spring-graphql/src/test/java/org/springframework/graphql/data/method/annotation/support/SchemaMappingInvocationTests.java
0 commit comments