oxsean commented on issue #13377:
URL: https://github.com/apache/dubbo/issues/13377#issuecomment-2257666151

   ```groovy
       def "override mapping test"() {
           given:
               def request = new TestRequest(path: path)
           expect:
               runner.run(request, String.class) == output
           where:
               path                          | output
               '/say?name=sam&count=2'       | '2'
               '/say?name=sam'               | '1'
               '/say~SL'                     | '2'
               '/say~S'                      | '1'
               '/say~S?name=sam&count=2'     | '1'
               '/say~S.yml?name=sam&count=2' | '1'
       }
   
       String say(String name, Long count)
   
       String say(String name)
   ```
   In the latest REST Triple, support method override has been added by passing 
the method signature abbreviation.
   However, in the case of spring, it is recommended that you set up a 
different path to distinguish between overload methods.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to