I went through so many links like How to show all controllers and mappings in a view and How to configure a default @RestController URI prefix for all controllers? and so on.
I want to get the Request Mapping URL at Filter interceptor
Ex: This URL I configured at REST controller method, and naturally we will pass /employees/employee-names/John
to get the Employee John.
/employees/employee-names/{employee_name}
Now, when somebody hit /employees/employee-names/John
I want to get the value of actual mapping url if REST controller /employees/employee-names/{employee_name}
,
Any pointers how to get that ?