0Pricing
WebSockets & Real-Time Systems with Spring · Lektion

Einführung in das STOMP-Protokoll

Verstehen Sie die Vorteile von STOMP gegenüber reinen WebSockets für strukturiertes Nachrichtenrouting und Abonnements.

Einführung in das STOMP-Protokoll ist eine kostenlose WebSockets & Real-Time Systems with Spring-Lektion auf CoddyKit. Dies ist Lektion 1 von 4. Du kannst die komplette Lektion unten kostenlos lesen – dann übst du sie direkt im Browser mit einem integrierten Code-Editor und einem KI-Tutor rund um die Uhr. Sie ist Teil des WebSockets & Real-Time Systems with Spring-Lernpfads, und dein Fortschritt wird über Web und CoddyKit-App synchronisiert. Der WebSockets & Real-Time Systems with Spring-Kurs umfasst insgesamt 4 Lektionen.

Teile dieser Lektion wurden noch nicht übersetzt und werden auf Englisch angezeigt.

Meet STOMP: Structured Messaging

Welcome to STOMP! When building real-time apps with WebSockets, you often need more than just raw data transfer. You need structure, routing, and a way to subscribe to specific messages.

STOMP (Simple Text Oriented Messaging Protocol) provides this structure. Think of it as a higher-level protocol that sits on top of WebSockets.

Raw WebSockets: Limitations

With raw WebSockets, clients and servers send arbitrary bytes or strings. If you want to send a "chat message" or a "user joined" event, you have to define your own rules:

  • How do I know what kind of message it is?
  • Who should receive this message?
  • What if I want to send data in a specific format like JSON?

Without a protocol, you'd implement all this manually.

STOMP: A Common Language

STOMP solves these problems by defining a standard way to send and receive messages. It's like agreeing on a common language for your real-time communication.

  • It's text-based, making it easy to debug.
  • It uses a simple frame format for all communication.
  • It supports common messaging patterns like publish-subscribe.

Understanding STOMP Frames

All communication in STOMP happens via "frames." A STOMP frame consists of three main parts:

  • COMMAND: What action is being performed (e.g., SEND, SUBSCRIBE, CONNECT).
  • HEADERS: Key-value pairs providing additional info (e.g., destination, content-type).
  • BODY: The actual message payload.

These parts are separated by newlines.

First Frame: CONNECT

When a client wants to establish a STOMP connection over a WebSocket, it sends a CONNECT frame. This tells the server it wants to speak STOMP. Note the empty line before the null byte (^@) which terminates the frame.

Here's what a simple CONNECT frame looks like:

CONNECT
accept-version:1.2
host:localhost

Server's Reply: CONNECTED

If the server accepts the connection, it responds with a CONNECTED frame. This confirms the STOMP session is ready. It also includes headers like the server's version and session ID. Remember, frames end with a null byte (^@).

CONNECTED
version:1.2
session:session-1234
server:Spring

Sending Messages: The SEND Frame

To send a message, clients use the SEND command. This frame requires a destination header, which tells the STOMP broker where to route the message. The message body contains the actual data, often JSON. Don't forget the null byte (^@) terminator!

SEND
destination:/app/chat
content-type:application/json

{"user":"Alice","message":"Hello, everyone!"}

Receiving Messages: SUBSCRIBE

Clients receive messages by using the SUBSCRIBE command. They specify a destination to listen to and an id for their subscription. The server then sends MESSAGE frames to this client when new data arrives for that destination. Frames are always null-byte (^@) terminated.

SUBSCRIBE
id:sub-0
destination:/topic/public

STOMP Destinations: Routing

STOMP uses destinations to route messages. These are like addresses. The most common types are:

  • Topics (/topic/...): For broadcast messages, where all subscribers receive a copy. Great for chat rooms.
  • Queues (/queue/...): For point-to-point messages, typically handled by one consumer. Useful for private messages or task queues.

This built-in routing is a major advantage over raw WebSockets.

Why Use STOMP?

STOMP provides significant benefits for real-time applications:

  • Structured Messaging: Standardized frame format.
  • Message Routing: Built-in support for topics and queues.
  • Subscription Model: Easy for clients to listen to specific events.
  • Simpler Client-Side: Many client libraries exist that handle STOMP frames, simplifying development.

It adds a robust layer for complex messaging patterns.

Check Your Understanding

Which of the following is a primary benefit of using STOMP over raw WebSockets?

Lesson Recap: Introducing STOMP

In this lesson, you learned about the STOMP protocol and why it's essential for structured real-time communication over WebSockets.

  • Raw WebSockets lack built-in message structure and routing.
  • STOMP provides a simple, text-based frame format (COMMAND, HEADERS, BODY).
  • Key STOMP commands include CONNECT, CONNECTED, SEND, and SUBSCRIBE.
  • It enables powerful features like topic-based broadcasting and queue-based point-to-point messaging.

Next, we'll see how to integrate STOMP with Spring Boot!

Häufig gestellte Fragen

Ist die Lektion „Einführung in das STOMP-Protokoll“ kostenlos?

Ja — der vollständige Text von „Einführung in das STOMP-Protokoll“ ist hier im Web kostenlos zu lesen. Um sie interaktiv zu üben (integrierter Code-Editor und 24/7 KI-Tutor) und den Rest des WebSockets & Real-Time Systems with Spring-Kurses freizuschalten, upgrade auf CoddyKit PRO. Der WebSockets & Real-Time Systems with Spring-Kurs umfasst insgesamt 4 Lektionen.

Was lerne ich in „Einführung in das STOMP-Protokoll“?

Verstehen Sie die Vorteile von STOMP gegenüber reinen WebSockets für strukturiertes Nachrichtenrouting und Abonnements. Du übst WebSockets & Real-Time Systems with Spring mit praktischem Code, den du direkt im Browser ausführst, und ein 24/7 KI-Tutor beantwortet deine Fragen während du die Lektion bearbeitest.

Brauche ich Erfahrung, um WebSockets & Real-Time Systems with Spring zu starten?

Keine Vorkenntnisse erforderlich. WebSockets & Real-Time Systems with Spring auf CoddyKit ist für Anfänger bis fortgeschrittene Lernende strukturiert, sodass du hier starten oder von Anfang an beginnen und in deinem eigenen Tempo voranschreiten kannst. Dies ist Lektion 1 von 4.

Wie lange dauert die Lektion „Einführung in das STOMP-Protokoll“?

Die meisten CoddyKit-Lektionen dauern etwa 5–10 Minuten. Jede ist kompakt und interaktiv, sodass du stetig Fortschritte machst und genau dort weitermachst, wo du aufgehört hast – im Web und in der App.

Kann ich in dieser WebSockets & Real-Time Systems with Spring-Lektion Code schreiben und ausführen?

Ja. Jede WebSockets & Real-Time Systems with Spring-Lektion enthält einen integrierten Code-Editor, sodass du echten Code direkt in deinem Browser schreibst und ausführst und sofort KI-Feedback erhältst — ohne lokale Einrichtung erforderlich.

Alle Lektionen in diesem Kurs

  1. Einführung in das STOMP-Protokoll
  2. STOMP mit Spring konfigurieren
  3. STOMP-Nachrichten senden und empfangen
  4. STOMP-Endpunkte mit Spring Security absichern
← Zurück zu WebSockets & Real-Time Systems with Spring