Skip to main content

Popular posts from this blog

Spring REST vs Jersey

Every Java developer faces confusion between Spring Rest and Jersey. This is tabular comparison between both. Spring REST Jersey Introduction Spring   MVC stands for Model View Controller. It helps in building flexible and loosely coupled web applications. RESTful functionality is added feature   Spring   MVC itself Jersey RESTful Web Services framework is open source, production quality, and framework for developing RESTful Web Services in Java Support for JAX-RS API Spring MVC does not adhere to the JAX-RS principles Jersey provides support for JAX-RS APIs and serves as a JAX-RS (JSR 311 & JSR 339) Reference Implementation Supported format Spring MVC supports JSON/XML/HTML format Provides Viewable/Template to support MVC, but it is a Jersey-specific feature and not a part of JAX-RS specification Front Controller Front Contro...