Search⌘ K

Other Communication APIs Supported by Spring

Explore how Spring Boot supports different communication APIs such as JAX RS with Jersey, JMS with ActiveMQ and HornetQ, and AMQP using RabbitMQ. Understand how Spring Boot starters simplify configuration and enable handling of messaging protocols and HTTP requests in a microservice architecture.

We'll cover the following...

Spring Boot also supports the JAX RS API. For JAX RS, Spring Boot uses the library Jersey. JAX RS is standardized as part of the Java Community Process (JCP).

For messaging, Spring Boot supports the Java Messaging Service (JMS). This is a standardized API that can be used to address different messaging solutions from Java.

Spring Boot has starters for the JMS implementations HornetQ, ActiveMQ and ...