Doubt technology for building WebApi Rest in Java [closed]

0

I'm posting this topic to check by your experience what technology you are using to build WebApi Rest in Java.

What libraries? What techniques? What are the advantages and disadvantages of technology?

I am a beginner in this subject and would like to better understand what is being used and where to start.

Thank you.

    
asked by anonymous 30.09.2016 / 03:01

1 answer

-2

A little generic your question, because of the wave of microservices what I see that has been using a lot is SpringBoot, usually with jetty or tomcat shipped, I particularly like it is very productive in a few minutes you already have an endpoint to call .

The advantages is that it is easily scalable, it is configurable via annotation and it has tmb the actuators that I quite like.

In terms of libs has nothing to talk about except the mandatory Spring Boot libs, the rest varies a lot from what you want to use.

I did not quite understand the techniques part that you mentioned.

I think you could start with getting started with Spring Boot but it's important that you have a legal Java level before you go to this step.

    
30.09.2016 / 05:10