I have been given a Java project to work with, which contains a function to which I need to make a POST request, from an Angular frontend.
The function is annotated with: @RequestMapping(value = "/fn", ...)
and will be tested on a local server (Wildfly 8.x).
Where can I find the values that are need to determine the URL that I need to specify in the HTTP.post()
method (from HttpClientModule
), from the frontend, to access this function?