Creating Client Libraries for Spring Data Services

I am writing spring data service and would like to generate a Java client as a jar file for use by my other project. So there is some kind of automated way to create a client, or I have to write it myself. If in any case, you can help me start with this.

thanks

+4
source share
2 answers

I have not used the Spring Data Web Exporter Client, but it seems like a good way, but if you want to go the other way and write your own client, you can use Spring RestTemplate to use the entire URL on your server side.

0
source

Check it out: Spring Web Data Exporter Client . You can build a build script to create a jar client archive.

0
source

Source: https://habr.com/ru/post/1469457/


All Articles