Disclosure: This post includes affiliate links; I may receive compensation if you purchase products or services from the different links provided i...
For further actions, you may consider blocking this person and/or reporting abuse
You're a beginner if you don't know the difference between JAX-RS, Jersey and RestEasy... if you use Spring for REST you'll ALWAYS be a beginner. Use the platform, no libraries. JavaEE let's you create a REST endpoint with 1 annotation. Microprofile let's you do patterns easily if you need them (90% of projects don't need circuit-breaker, bulkheads, retries and other popular patterns)
Microprofile is good but I still see point using Spring MVC for creating RESTful Web Service in Java because you can literally use all your knowledge without spending time and effort to learn a new technology just for REST. If you can its well and good but if you don't have that much time, Spring MVC is better option.
Hi javinpaul could you please explain How to consume and how to produce using soap and restful web services which can be helpful for attending and the interview
Hello Praveen, noted, I'll write about Spring with SOAP. For REST, I have written a post about How to consume JSON from REStful web services using spring, you may want to check that.
Thanks javin. Consume is easy could you please explain how to produce So that it ll be very helpful for me
yes, it's on my TODO list, stay tuned.
Take a look at Micronaut. Although Spring was good and main reason I liked it was Spring Boot this new guy may be a bit better for some stuff and yes it's easy to switch it looks like Spring but the annotations are a bit different which is maybe a good thing. And you can use Spring stuff in it.
We picked Dropwizard, a simple bit of glue code around the Jetty/Jersey/Jackson libraries and others, and never regretted it.
Hello @Pablo, yes Eclipse Microprofile seems good, I have also heard some good things about it but yet to deep dive into. Thanks for suggestion anyway.