Restrict URL access control by id in jhipster
问题 I have a problem that each user can retrieve other users data from URL. For instance, I have a rest api like this: @GetMapping("/getFindByPersonId/{perId}") @Timed public List<ComboVahedAmoozeshi> getFindBySkhsIdCombo(@PathVariable Long perId){ return comboVahedAmoozeshiRepository.getFindBySkhsIdCombo(perId); } After authorization, each user can change id and get other users data like the image below: Is there any suggestion to restrict each user to don`t have access to call the method? Or