Problem
Why Jhipster adds "/api
" in the Request Mapping when I generate Monolithic Application and why it names controller as a resource?
For Example,See below
@RequestMapping("/api")
public class MenuResource {
Is it a standard process because when I was making rest api's without using jhipster and if I add "api" and someone asks why you have added this API.
Solution
I tried finding by googling it but I can only find this URL which I am unable to understand?
https://github.com/jhipster/generator-jhipster/issues/2954
Can anyone guide me about the same.Thanks in advance.