Feature/dubbo3.2 rest remove first match break (#12837)
* support reExport * add rest method annotation support judge --------- Co-authored-by: suncr <suncairong@moresec.cn>
This commit is contained in:
parent
1e18b359e2
commit
36b2ec267d
|
|
@ -198,8 +198,9 @@ public abstract class AbstractServiceRestMetadataResolver implements ServiceRest
|
|||
for (Method serviceMethod : serviceMethods) {
|
||||
if (overrides(serviceMethod, declaredServiceMethod)) {
|
||||
serviceMethodsMap.put(serviceMethod, declaredServiceMethod);
|
||||
// once method match ,break for decrease loop times
|
||||
break;
|
||||
// override method count > 1
|
||||
// // once method match ,break for decrease loop times
|
||||
// break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue