Implement method injection priority (higher earlier)
This commit is contained in:
parent
c5e9a4270a
commit
e4064fa5e0
@ -128,8 +128,12 @@ public final class GraftSource {
|
|||||||
return fieldAnnotations.get(node);
|
return fieldAnnotations.get(node);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Set<MethodNode> getInjectMethods() {
|
public List<MethodNode> getInjectMethods() {
|
||||||
return methodAnnotations.keySet();
|
return methodAnnotations
|
||||||
|
.keySet()
|
||||||
|
.stream()
|
||||||
|
.sorted(Comparator.comparingInt(a -> getInjectAnnotation(a).getEntry("priority")))
|
||||||
|
.collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
public Set<FieldNode> getInjectFields() {
|
public Set<FieldNode> getInjectFields() {
|
||||||
|
@ -30,4 +30,6 @@ public @interface Inject {
|
|||||||
* @return True if the injection method should receive the return value
|
* @return True if the injection method should receive the return value
|
||||||
*/
|
*/
|
||||||
boolean acceptOriginalReturn() default false;
|
boolean acceptOriginalReturn() default false;
|
||||||
|
|
||||||
|
int priority() default Integer.MIN_VALUE;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user