What is the best built-in web server with a lightweight / high-performance interface for implementing the REstful API

What is the best built-in web server with an easy / high-performance interface to implement the REstful API. I need to associate it with java code. can anyone suggest me a better solution for this? since i'm new to this area

Yours faithfully,

+4
source share
2 answers

I believe that finding the “best” cotnainer in terms of performance is a very difficult task and it is based on your specific use case, that is - how do you use it? Since this is a RESTful API, I think it will be interesting for you to serve a large number of clients using some simple services. Therefore, if I were you, I would look for a server that is stable for a huge number of requests.

Please check out this interesting article to give you more information on the topic of performance.

Personally, I would go with embedded tomcat or jetty .

+5
source

Perhaps Jetty is what you are looking for, although it would be nice to also check others (like Tomcat , for example) to find out which one is most suitable for your needs.

+2
source

All Articles