Java API for RESTful Web Services 2.1 Released
Written by Alex Armstrong   
Tuesday, 29 August 2017

JAX-RS 2.1 Java API for RESTful Web Services  has been released with support for server-sent events, JSON-B and improved support for JSON-P.

The API will also have a reactive extension to the client API, with built-in support for Java 8 CompletionStage and an extension point for other reactive APIs like RxJava.

 

java

The major feature, server-sent-event (SSE) resources, inject a special type called SseEventSink and produce text/event-stream. SSE clients use a SseEventSource to read events from a connection. Santiago Pericas-Geertsen, a principal member of technical staff at Oracle and the specifications lead for JAX-RS 2.1 explains:

This mechanism uses long-lived connections and broadcasting, which provides improved performance over polling and resource-intensive, short-lived connections.

He noted the following points: 

  • JAX-RS 2.1 is fully backward compatible with previous releases.

  • The new features integrate very well with the existing JAX-RS concepts. For example, simply injecting a method call in a client invocation can switch processing from synchronous to reactive.

  • SSE relies on streaming HTTP-based connections so it is a natural extension to the existing APIs.

The specifications for the release also include annotations for POJOs, flexible API with high-level support for common HTTP usage patterns and applications including WebDAV and the Atom Publishing Protocol and that the API supports various HTTP entity body content types, servlet containers and JAX-WS Providers. The API will support Java EE features and components within a web resource class.

Since the API uses annotations and lambda expressions extensively, it supports applications developed in Java SE 8 or later.

 

java

 

 

More Information

Download JAX-RS 2.1

JAX-RS 2.1 Specification

Related Articles

Java Turns 22

Modular Java Finally Approved

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Facebook or Linkedin.

 

Banner


Android AOSP Goes Biannual
15/01/2026

Google has changed the schedule for its Android Open Source Project (AOSP) from quarterly to half yearly. Until now, the releases have followed those of Google's closed Android operating system. Secur [ ... ]



On This Day In 1956 - SAGE Announced
16/01/2026

On this day 70 years ago, the US government disclosed its plans for SAGE (Semi-Automatic Ground Environment), the most ambitious computing project of the Cold War. In response to the prospect of a Sov [ ... ]


More News

pico book

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Tuesday, 29 August 2017 )