+

Search Tips   |   Advanced Search

Use custom entity formats

Even though the Java API for RESTful Web Services (JAX-RS) runtime environment includes several entity providers for handling serialization from and deserialization to Java types, it does not support all possible media types. We can develop a custom entity provider to handle binding Java types to message bodies.

If the JAX-RS web application requires that additional Java types or media types are supported beyond what the JAX-RS APIs support, we can add a custom entity provider to the application. Any custom-defined entity provider takes precedence over the entity providers that are included in the JAX-RS runtime environment. Unlike resources, providers are always singleton beans.

  1. Configure the development environment.
  2. Define resources in JAX-RS web applications.
  3. Configure the JAX-RS application.
  4. Implement custom entity formats.
  5. Assemble JAX-RS web applications.
  6. Deploy JAX-RS web applications.


Related tasks

Custom entity formats
  • Web services specifications and APIs