Implement RESTful views of enterprise beans.
Configure the JAX-RS application.
Step Parent
Implement RESTful views of EJB applications using JAX-RS
We can implement RESTful views of enterprise beans using JAX-RS for a stateless or singleton enterprise bean that uses a no-interface view or a local business interface.
- Implement RESTful views of a no-interface EJB
- Implement RESTful views of an EJB with local interfaces
What to do next
Assemble JAX-RS web applications.
Subtopics
- Implement RESTful views of a no-interface EJB
If we have EJB applications that are exposed using a no-interface view, we can expose a RESTful interface to the enterprise bean using Java API for RESTful Web Services (JAX-RS). By implementing JAX-RS annotated enterprise beans, we keep the EJB functionality including transaction support, injection of Java EE components and resources, and other EJB session bean capabilities.
- Implement RESTful views of an EJB with local interfaces
If we have EJB applications that are exposed using a local interface view, we can expose a RESTful interface to the enterprise bean using Java API for RESTful Web Services (JAX-RS). By implementing JAX-RS annotated enterprise beans, we keep the EJB functionality including transaction support, injection of Java EE components and resources, and other EJB session bean capabilities.
Related tasks
Implement RESTful views of a no-interface EJB Implement RESTful views of an EJB with local interfaces