浏览代码

Add simple sentence describing link between ws and STOMP

Dave Syer 4 年之前
父节点
当前提交
206e8e60c5
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      README.adoc

+ 2 - 1
README.adoc

@@ -16,7 +16,8 @@ sends messages back and forth between a browser and a server. WebSocket is a thi
 lightweight layer above TCP. This makes it suitable for using "`subprotocols`" to embed
 messages. In this guide, we use
 http://en.wikipedia.org/wiki/Streaming_Text_Oriented_Messaging_Protocol[STOMP] messaging
-with Spring to create an interactive web application.
+with Spring to create an interactive web application. STOMP is a subprotocol operating
+on top of the lower-level WebSocket.
 
 == What You Will build