Posts tagged with "JAX-RS"

Jan 14th, 2013

OSGi JAX-RS Connector 2.2.0 released (JAX-RS 2.0 update)

There’s good news for our OSGi JAX-RS Connector. We’ve added a consumer implementation that gives you the opportunity to reuse your @Path/@Provider interfaces to consume REST services in a generic way. Over the last few weeks I’d used this consumer a lot and decided that it should go into this release of the connector. So, [...]

3 Comments
Nov 28th, 2012

Consuming REST services in OSGi the cool way

consumer

I recently introduced you to the JAX-RS Consumer. If you’ve read that post you might remember that I promised to write about the OSGi integration of the consumer. This is the topic of this short post. As you might know, a while ago I created the OSGI-JAX-RS connector. This connector gives you the opportunity to [...]

4 Comments
Nov 27th, 2012

Consuming REST services in Java the cool way

overall

When creating a REST API with Java you probably go with JAX-RS . It’s a nice and well thought-out standard. Having the services encapsulated as plain Java objects with some annotations feels good to me. But this is all different when it comes to consuming REST services. During the last month I have searched for [...]

3 Comments
Nov 2nd, 2012

Integrating Gson into a JAX-RS based application

Jersey_yellow

Creating modern applications often involves consuming REST based web services. One of the more popular ways to publish a REST service in Java is the JAX-RS (Jersey) specification. It allows you to very easily enhance your REST resources with Java annotations. In many cases REST is used in combination with the JSON document format. In [...]

4 Comments