-5

I have gone through the jax-rs implementation of restful webservices and spring rest template also. I am feeling like both works fine. Help me to decide which one works better with large amount of data....

Thanks in Advance....

1 Answers1

1

Spring Rest support is based on MVC and its not actual implementation of JAX-RS.If your application is already on spring and you don't have any constraint to use Jersey,Spring Rest will make sense.

JAX-RS is just specification and you can replace jersey with apache cxf or RestEasy.

refer : Spring MVC and JAX-RS compliant frameworks

Spring 4 vs Jersey for REST web services

Community
  • 1
  • 1
KDP
  • 1,481
  • 7
  • 13
  • My application is not on spring, i am building a new application to handle large amount of data... So is jersey works better than spring for me..? i have gone through the document u shared it saying both are almost same...!! – kalyani chowdary Jul 01 '15 at 16:02
  • spring MVC is part of the Spring framework it already integrates with the Spring IoC container and lot of framework features like AOP,ORM support etc It also integrates seamlessly with Spring Data, Spring Data REST, Spring HATEOAS, Spring Security also has support for various view technologies such as JSP, Velocity ,Freemarker which you can take the advantage. Now you decide based on your needs and design. – KDP Jul 01 '15 at 16:04
  • Ok,I will go with Spring. – KDP Jul 01 '15 at 16:10