Cross servlet web servlet

I researched this a lot, but could not find a specific answer. I want to write an application structure that defines server-side interfaces that other people can implement and deploy on their servers as small servlets. I want to be able to do RPC for these methods without having problems with packing and unpacking the parameters in the request and response. I am sure that a decent structure must exist for such a thing, but I just can’t determine the exact one.

I would appreciate it if someone could point me in the right direction.

+3
source share
1 answer

Java REST JAX-RS? : Jersey, RESTeasy, ..

/ . REST , /.

+2

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


All Articles