I'm developing a web application, using Spring Framework
. And I need to consume a rest service from another application.
I know how to send requests POST
, using jquery
and ajax
, but I want to know if it is possible to do the same, using server-side, for example in controller
of my web application. / p>
Is it possible to send POST http requests using spring's controller?