we've an application in which users would be sending an encrypted version of resourceId in the GET REST request.
Example: GET localhost:8080/demo-application/Employee/abcde123xyz
this abcde123xyz is an encrypted value which would be decrypted to a value 1001.
we want to make this translation before reaching controller, so that controller get the decrypted value. Can we do it using interceptor or some advice ?