Good day!
I have two modules in one application. One server, which is made on Spring Boot, the other client, made on Vaadin.
Question: how to send a rest request to the server application (for example, by pressing a button) using the controller rest interfaces (rest api, in which the rest endpoint is defined)?
I tried to do it via RestTemplate, but the problem is that a URI is needed to reach the rest endpointa (for example, https: // localhost: 8080 / books , and I only need / books).
I will be glad to any answer!