I have a prebuild framework where web services are already implemented using the Jersey framework.
I have a list of web services URLs and access to jar library where there is a complete set of jars(200+) including the web-service jars.
I need to find the extract class and method name which is invoked when a web-service url is invoked.
E.g webserice url: https://myserver/resources/v1/foo/bar How to find which class(along with package name) and method is invoked when above url is hit.
I have tried finding keywords "foo" "foo/bar" "bar" using find in files options of notepad++. But it gives a big list of jars and not able to drill down the exact class and method name.