JAX-RSPage edited by Sergey BeryozkinChanges (39)
Full ContentJAX-RS (JSR-311)
IntroductionJAX-RS: Java API for RESTful Web Services is a Java programming language API that provides support in creating web services according to the Representational State Transfer (REST) architectural style. CXF supports the Java API for RESTful Web Services: JAX-RS 2.0 (JSR-339) and JAX-RS 1.1 (JSR-311). CXF 2.7.0 supports most of the new features introduced in JAX-RS 2.0 (excluding the client API for now - but note that CXF client API has been retrofitted to support new filters, interceptors, exception classes and Response API, plus the asynchronous client invoker API). CXF 2.6.x, 2.5.x, 2.4.x and 2.3.x supports JSR-311 API 1.1 and is JAX-RS TCK 1.1 compliant. CXF 2.2.x supports JSR-311 API 1.0 and is JAX-RS TCK 1.0. compliant. CXF 2.1.x supports JSR-311 API 0.8. JAX-RS related demos are located under the samples/jax_rs directory. This documentation will refer to JAX-RS 2.0 (JSR-339) API. Outstanding JAX-RS JIRA issues can be found here. Project setup and configurationMigrationMigrating from JAX-RS 1.1 to 2.0JAX-RS 2.0 is backward compatible with JAX-RS 1.1. Please see JAX-RS Basics for more information. The following CXF specific classes are not available in CXF 2.7.0: org.apache.cxf.jaxrs.client.ResponseReader, org.apache.cxf.jaxrs.client.ServerWebApplicationException, org.apache.cxf.jaxrs.client.ClientWebApplicationException Migrating from JAX-RS 1.0 to 1.1Existing JAX-RS 1.0 applications should run in CXF starting from 2.3.x without any problems.
Maven dependenciesThe cxf-rt-frontend-jaxrs dependency is required: <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-frontend-jaxrs</artifactId> <version>${cxf.version}</version> </dependency>
CXF JAX-RS bundleA standalone JAX-RS bundle is now available which may be of interest to users doing the JAX-RS work only. Please note that this bundle has a transitive Maven dependency on the Jetty server modules. If you are using Maven and working with other servlet containers such as Tomcat then please add the following exclusion: <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-bundle-jaxrs</artifactId> <version>${cxf.version}</version> <exclusions> <exclusion> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> </exclusion> </exclusions> </dependency> What is New
Getting Started with JAX-RSUnderstanding the BasicsYou are encouraged to read JSR-339 specification to find out information not covered by this documentation. The specification introduces many terms such as root resources, resource methods, sub-resources and sub-resource locators, message body readers and writers. JAX-RS 2.0 additionally introduces filters, interceptors, new client API, features, new exception classes, server-side support for asynchronous invocations. Please see the JAX-RS Basics page for more information. Support for Data BindingsJAX-RS MessageBodyReader and MessageBodyWriter can be used to create data bindings for reading and writing data in a number of different formats. Compliant JAX-RS implementations are expected to support JAXB-annotated beans, JAXP Source objects, InputStreams, etc. In addition, CXF JAX-RS lets users reuse existing CXF DataBindings for working with JAXB, XBeans, Aegis and SDO. Please see the JAX-RS Data Bindings page for more information. How Request URI is MatchedLets assume you have a web application called 'rest'. CXFServlet's url-pattern is "/test/*". Finally, jaxrs:server's address is "/bar". Requests like /rest/test/bar or /rest/test/bar/baz will be delivered to one of the resource classes in a given jaxrs:server endpoint. For the former request to be handled, a resource class with @Path("/") should be available, in the latter case - at least @Path("/") or a more specific @Path("/baz"). The same requirement can be expressed by having a CXFServlet with "/*" and jaxrs:server with "/test/bar". When both CXFServlet and jaxrs:server use "/" then it's a root resource class which should provide a @Path with at least "/test/bar" for the above requests to be matched. Generally, it can be a good idea to specify the URI segments which are more likely to change now and then with CXFServlets or jaxrs:server. Client APIJAX-RS 1.1 does not provide for a standard approach toward consuming pure HTTP-based services thus CXF JAX-RS provides a comprehensive support for developing RESTful clients by introducing 3 flavors of the client API: proxy-based, HTTP-centric and XML-centric. Please see the JAX-RS Client API page for more information. Filters, Interceptors and InvokersIt is possible to intercept and modify the inbound and outbound calls with the help of CXF JAX-RS filters and/or CXF interceptors. Additionally, custom invokers offer an option to intercept a call immediately before a service bean is invoked. Please see the JAX-RS Filters page for more information. Service listings and WADL supportCXF JAX-RS supports WADL. CXF JAX-RS service endpoints can be listed in the service listings page and users can check the WADL documents. Please see the JAXRS Services Description page for more information. Configuring JAX-RS servicesJAX-RS services can be configured programmatically, using Blueprint, Spring or CXFNonSpringJAXRSServlet. Please see the JAXRS Services Configuration page for more information. TestingJAX-RS services can be easily tested using the embedded Jetty or CXF Local Transport. DebuggingOne may want to use a browser to test how a given HTTP resource reacts to different HTTP Accept or Accept-Language header values and request methods. For example, if a resource class supports a "/resource" URI then one can test the resource class using one of the following queries : > GET /resource.xml The runtime will replace '.xml' or '.en' with an appropriate header value. For it to know the type or language value associated with a given URI suffix, some configuration needs to be done. Here's an example of how it can be done with Spring: <jaxrs:server id="customerService" address="/"> <jaxrs:serviceBeans> <bean class="org.apache.cxf.jaxrs.systests.CustomerService" /> </jaxrs:serviceBeans> <jaxrs:extensionMappings> <entry key="json" value="application/json"/> <entry key="xml" value="application/xml"/> </jaxrs:extensionMappings> <jaxrs:languageMappings> <entry key="en" value="en-gb"/> </jaxrs:languageMappings> </jaxrs:server> CXF also supports a _type query as an alternative to appending extensions like '.xml' to request URIs: {{ > GET /resource?_type=xml}} Overriding a request method is also easy: > GET /resource?_method=POST Alternatively, one can specify an HTTP header X-HTTP-Method-Override: > POST /books For example, at the moment the http-centric client API does not support arbitrary HTTP verbs except for those supported Finally, a "_ctype" query allows for overriding Content-Type. Please see the Debugging and Logging page for more information on how to debug and log service calls in CXF. LoggingMany of the existing CXF features can be applied either to jaxrs:server or jaxrs:client. For example, to enable logging of requests and responses, simply do: <beans xmlns:cxf="http://cxf.apache.org/core" xsi:schemaLocation="http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd"> <jaxrs:server> <jaxrs:features> <cxf:logging/> </jaxrs:features> <jaxrs:server> </beans> Please make sure the http://cxf.apache.org/core namespace is in scope. Starting from CXF 2.3.0 it is also possible to convert log events into Atom entries and either push them to receivers or make them available for polling. Please see the Debugging and Logging page for more information. Advanced FeaturesMultipartsMultiparts can be handled in a number of ways. The CXF core runtime provides advanced support for handling attachments which CXF JAX-RS builds upon. Please see the JAX-RS Multiparts page for more information. Secure JAX-RS servicesTransport level HTTPS security can be used to protect messages exchanged between CXF JAX-RS endpoints and providers. Authentication and authorization can be enforced in a number of ways. Please see the Secure JAX-RS Services page for more information. Please also check JAX-RS XML Security, JAX-RS SAML and JAX-RS OAuth2 pages for more information about the advanced security topics. Failover and Load Distribution FeaturesStarting from CXF 2.4.1, CXF JAX-RS proxy and WebClient consumers can be backed up by failover and load distribution features. RedirectionStarting from CXF 2.2.5 it is possible to redirect the request or response call to other servlet resources by configuring CXFServlet or using CXF JAX-RS RequestDispatcherProvider. Please see the JAX-RS Redirection page for more information. XSLT and XPathXSLT and XPath are promoted and treated as first-class citizens in CXF JAX-RS. These technologies can be very powerful when generating complex data or retrieving data of interest out of complex XML fragments. Please see the JAX-RS Advanced XML page for more information. Complex Search QueriesUsing query parameter beans provides a way to capture search requirements that can be expressed by enumerating name/value pairs, for example, a query such as '?name=CXF&version=2.3' can be captured by a bean containing setName and setVersion methods. This 'template' bean can be used in the code to compare it against all available local data. Versions 2.3 and later of CXF JAXRS support another option for doing advanced search queries using the Feed Item Query Language(FIQL). Please see the JAX-RS Advanced Features page for more information. Model-View-Controller supportXSLT JSP With the introduction of the RequestDispatcherProvider (see above) it is now possible for JAXRS service responses be redirected to JSP pages for further processing. Please see this beans.xml for an example. In addition to 'resourcePath' and 'dispatcherName' properties, one can set a 'scope' property which has two possible values, 'request' and 'session' with 'request' being the default value. It affects the way the JSP code can retrieve parameters passed to it by the RequestDispatcherProvider. If it is a 'request' scope then all the parameters are set as the attributes on the current HTTP request. If session scope then they're set as the attributes on the current HTTP session. RequestDispatcherProvider sets the following parameters :
Combining JAX-WS and JAX-RSCXF JAX-RS tries to make it easy for SOAP developers to experiment with JAX-RS and combine both JAX-WS and JAX-RS in the same service bean when needed. Please see the JAX-RS and JAX-WS page for more information. Integration with Distributed OSGiDistributed OSGi RI is a CXF subproject. DOSGi mandates how registered Java interfaces can be exposed CXF JAX-RS implementations has been integrated with DOSGi RI 1.1-SNAPSHOT which makes it possible to expose Java interfaces as RESTful services and consume such services using a proxy-based client API. Please see the DOSGI Reference page ('org.apache.cxf.rs' properties) and a greeter_rest sample for more information. Note that this demo can be run exactly as a SOAP-based greeter demo as it registers and consumes a similar (but) JAX-RS annotated GreeterService. In addition, this demo shows how one can register and consume a given interface (GreeterService2) without using explicit JAX-RS annotations but providing an out-of-band user model description. Other Advanced FeaturesCXF JAX-RS provides a number of advanced extensions such as the support for the JMS transport, one-way invocations (HTTP and JMS), suspended invocations (HTTP and JMS), making existing code REST-aware by applying external user models, etc. Please see the JAX-RS Advanced Features page for more information. Maven PluginsPlease see the JAX-RS Maven Plugins page for more information about the Maven plugins and archetypes which can help with creating CXF JAX-RS applications. DeploymentCXF JAX-RS applications packaged as WAR archives can be deployed into standalone Servlet containers such as Tomcat or Jetty. RESTful Resources
How to contributeCXF JAX-RS implementation sits on top of the core CXF runtime and is quite self-contained and isolated from other CXF modules such as jaxws and simple frontends. Please check the issue list and see if you are interested in fixing one of the issues. If you decide to go ahead then the fastest way to start is to
If you are about to submit a patch after building a trunk/rt/frontend/jaxrs, then please also run JAX-RS system tests in trunk/systests/jaxrs : You can also check out the general Getting Involved web page for more information on contributing.
Change Notification Preferences
View Online
|
View Changes
|
Add Comment
|
- [CONF] Apache CXF Documentation > JAX-RS confluence
- [CONF] Apache CXF Documentation > JAX-RS confluence
- [CONF] Apache CXF Documentation > JAX-RS confluence
