I have a rest controller contains many methods
@RestController
@RequestMapping("v1/test")
public class TestRestController {
...... 100 methods (GET, POST, PATCH, etc)
}
How can I know which method is being accessed without using print
in each method?
Are there any ways to do that?