Proxy Design Pattern with examples

proxy design pattern overview

Introduction to Proxy Pattern Proxy design pattern falls under the structural design pattern category and it is one of the most frequently used pattern in software development. This pattern helps to control the usage and access behaviours of connected resources. A separate object called ‘proxy’ helps to build the connection between the client and the … Read more

RESTFul webservices with Jersey And Spring

reset service test

JAX-RS and Jersey JAX-RS, is the “Java™ API for RESTful Web Services (JAX-RS)”. Documented in JSR 311 & JSR 339 it specifies a bunch of interfaces and annotations that can be used to define RESTful Webservices in java. Jersey is a reference implementation of JAX-RS Spec. In addition to implementing the JSR 331 and 339, … Read more