-
Stomp (The Simple Text Oriented Messaging Protocol) 번역개발 일지/Back-end 2021. 12. 13. 16:22반응형
STOMP
STOMP is a very simple and easy to implement protocol, coming from the HTTP school of design; the server side may be hard to implement well, but it is very easy to write a client to get yourself connected. For example you can use Telnet to login to any STO
stomp.github.io
What is it?
STOMP는 심플(또는 스트리밍) 텍스트 지향 메시징 프로토콜입니다.
STOMP는 양방향 네트워크 프로토콜 기반으로 STOMP 클라이언트는 모든 STOMP 메시지 브로커와 통신하여 다양한 언어, 플랫폼 및 브로커 간에 쉽고 광범위한 메시징 상호 운용성을 제공할 수 있습니다.
Simple Design
STOMP는 HTTP 디자인 스쿨에서 나온 매우 간단하고 구현하기 쉬운 프로토콜입니다.
서버측은 잘 구현하는데 어려울 수 있지만, 스스로를 연결하기 위해 클라이언트를 구현하는 것은 매우 쉽습니다.
예를 들어 텔넷(Telnet)을 사용하여 STOMP 브로커에 로그인하고 메시지를 주고 받을 수 있습니다.
많은 개발자들이 STOMP 네트워크에 특정 언어, 실행환경 또는 플랫폼으로 STOMP 클라이언트를 짧은 시간 안에 작성할 수 있다고 합니다.
따라서 선호하는 언어/런타임이 STOMP 클라이언트를 충분히 제공하지 않더라도 어려워하지 않아도 됩니다.
Get It
가장 최근 버전의 명세는 아래와 같습니다.
https://stomp.github.io/stomp-specification-1.2.html
https://stomp.github.io/stomp-specification-1.2.html
STOMP Protocol Specification, Version 1.2 Abstract STOMP is a simple interoperable protocol designed for asynchronous message passing between clients via mediating servers. It defines a text based wire-format for messages passed between these clients and s
stomp.github.io
반응형'개발 일지 > Back-end' 카테고리의 다른 글
웹소켓 애플리케이션을 위한 Spring Boot 구성 (3) 2023.05.17 Spring MVC로 이미지/미디어 데이터 변환하기 (0) 2022.01.26 Spring boot 프로젝트 구조 잡기 (2) 2022.01.10 Spring AMQP를 사용한 메시징 (0) 2021.12.02 Pub-Sub vs. Message Queues (0) 2021.12.02